app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "expo": {
  3. "name": "template",
  4. "slug": "template",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/icon.png",
  8. "userInterfaceStyle": "light",
  9. "scheme": "template",
  10. "splash": {
  11. "image": "./assets/splash.png",
  12. "resizeMode": "contain",
  13. "backgroundColor": "#ffffff"
  14. },
  15. "assetBundlePatterns": ["**/*"],
  16. "ios": {
  17. "supportsTablet": true
  18. },
  19. "android": {
  20. "adaptiveIcon": {
  21. "foregroundImage": "./assets/adaptive-icon.png",
  22. "backgroundColor": "#ffffff"
  23. }
  24. },
  25. "web": {
  26. "favicon": "./assets/favicon.png"
  27. },
  28. "plugins": [
  29. "expo-router",
  30. "expo-secure-store",
  31. [
  32. "expo-camera",
  33. {
  34. "cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
  35. "microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
  36. "recordAudioAndroid": true
  37. }
  38. ]
  39. ]
  40. }
  41. }