app.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. {
  2. "expo": {
  3. "name": "Crazy Charge",
  4. "slug": "template",
  5. "version": "1.3.15",
  6. "orientation": "portrait",
  7. "icon": "./assets/CC_Logo.png",
  8. "userInterfaceStyle": "light",
  9. "scheme": "ccscheme",
  10. "splash": {
  11. "image": "./assets/splash.png",
  12. "resizeMode": "contain",
  13. "backgroundColor": "#02677D"
  14. },
  15. "assetBundlePatterns": [
  16. "**/*"
  17. ],
  18. "ios": {
  19. "supportsTablet": false,
  20. "bundleIdentifier": "hk.ayf.crazycharge",
  21. "infoPlist": {
  22. "LSApplicationQueriesSchemes": [
  23. "whatsapp"
  24. ],
  25. "UIBackgroundModes": [
  26. "remote-notification"
  27. ],
  28. "CFBundleAllowMixedLocalizations": true,
  29. "CFBundleDevelopmentRegion": "en",
  30. "NSAppTransportSecurity": {
  31. "NSExceptionDomains": {
  32. "exp.direct": {
  33. "NSIncludesSubdomains": true,
  34. "NSExceptionAllowsInsecureHTTPLoads": true
  35. }
  36. }
  37. },
  38. "ITSAppUsesNonExemptEncryption": false
  39. },
  40. "config": {
  41. "googleMapsApiKey": "process.env.GOOGLE_MAPS_API_KEY"
  42. }
  43. },
  44. "android": {
  45. "adaptiveIcon": {
  46. "foregroundImage": "./assets/cc_android_ccLogo.png",
  47. "backgroundColor": "#000000"
  48. },
  49. "icon": "./assets/cc_android_ccLogo.png",
  50. "permissions": [
  51. "android.permission.INTERNET",
  52. "android.permission.CAMERA",
  53. "android.permission.RECORD_AUDIO",
  54. "android.permission.ACCESS_COARSE_LOCATION",
  55. "android.permission.ACCESS_FINE_LOCATION"
  56. ],
  57. "package": "hk.ayf.crazycharge",
  58. "versionCode": 30,
  59. "googleServicesFile": "./google-services.json",
  60. "config": {
  61. "googleMaps": {
  62. "apiKey": "process.env.GOOGLE_MAPS_API_KEY"
  63. }
  64. }
  65. },
  66. "web": {
  67. "bundler": "metro",
  68. "favicon": "./assets/favicon.png"
  69. },
  70. "plugins": [
  71. [
  72. "expo-notifications",
  73. {
  74. "icon": "./assets/cc_android_notification_icon.png",
  75. "color": "#02677D"
  76. }
  77. ],
  78. "expo-router",
  79. "expo-secure-store",
  80. [
  81. "expo-camera",
  82. {
  83. "cameraPermission": "我們需要相機權限來掃描機器上的二維碼,以便識別並啟動充電機器。我們不會儲存或共享任何掃描到的資訊。",
  84. "microphonePermission": "我們需要麥克風權限來允許語音輸入,以便提供更好的充電體驗。我們不會儲存或共享任何錄製到的資訊。",
  85. "recordAudioAndroid": true
  86. }
  87. ],
  88. [
  89. "expo-location",
  90. {
  91. "locationAlwaysAndWhenInUsePermission": "我們需要您的位置資訊來尋找附近的充電站。您的位置資訊只會被用於尋找充電站。我們不會儲存或共享任何資訊",
  92. "locationAlwaysPermission": "我們需要您的位置資訊來尋找附近的充電站。您的位置資訊只會被用於尋找充電站。我們不會儲存或共享任何資訊",
  93. "locationWhenInUsePermission": "我們需要您的位置資訊來尋找附近的充電站。您的位置資訊只會被用於尋找充電站。我們不會儲存或共享任何資訊"
  94. }
  95. ],
  96. [
  97. "expo-font",
  98. {
  99. "android": {
  100. "fonts": [
  101. {
  102. "fontFamily": "Roboto-Bold",
  103. "fontDefinitions": [
  104. {
  105. "path": "./assets/fonts/Roboto-Bold.ttf",
  106. "weight": 800
  107. }
  108. ]
  109. },
  110. {
  111. "fontFamily": "Roboto-Regular",
  112. "fontDefinitions": [
  113. {
  114. "path": "./assets/fonts/Roboto-Regular.ttf",
  115. "weight": 400
  116. }
  117. ]
  118. }
  119. ]
  120. }
  121. }
  122. ],
  123. "expo-localization"
  124. ],
  125. "extra": {
  126. "router": {
  127. "origin": false
  128. },
  129. "eas": {
  130. "projectId": "dc6b7a3f-cf92-441a-8962-0f25e8d06902"
  131. }
  132. },
  133. "runtimeVersion": "1.3.15",
  134. "updates": {
  135. "url": "https://u.expo.dev/dc6b7a3f-cf92-441a-8962-0f25e8d06902"
  136. },
  137. "owner": "kanff"
  138. }
  139. }