app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "expo": {
  3. "name": "crazycharge",
  4. "slug": "template",
  5. "version": "1.1.1",
  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. "ios": {
  17. "supportsTablet": true,
  18. "bundleIdentifier": "hk.com.crazycharge"
  19. },
  20. "android": {
  21. "adaptiveIcon": {
  22. "foregroundImage": "./assets/adaptive-icon.png",
  23. "backgroundColor": "#ffffff"
  24. },
  25. "permissions": ["android.permission.CAMERA", "android.permission.RECORD_AUDIO"],
  26. "package": "hk.com.crazycharge"
  27. },
  28. "web": {
  29. "favicon": "./assets/favicon.png"
  30. },
  31. "plugins": [
  32. "expo-router",
  33. "expo-secure-store",
  34. [
  35. "expo-camera",
  36. {
  37. "cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
  38. "microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
  39. "recordAudioAndroid": true
  40. }
  41. ]
  42. ],
  43. "extra": {
  44. "router": {
  45. "origin": false
  46. },
  47. "eas": {
  48. "projectId": "536e7cff-9f65-4894-ad9f-e4ef8de57e4e"
  49. }
  50. }
  51. }
  52. }