Ei kuvausta

app.json 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "expo": {
  3. "name": "SmartFarmLite",
  4. "slug": "sf-lite",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/images/icon.png",
  8. "scheme": "sflite",
  9. "userInterfaceStyle": "automatic",
  10. "newArchEnabled": true,
  11. "ios": {
  12. "supportsTablet": true,
  13. "bundleIdentifier": "net.simplico.sflite26",
  14. "infoPlist": {
  15. "NSCameraUsageDescription": "Allow SmartFarming Lite to use the camera for task photos.",
  16. "NSPhotoLibraryUsageDescription": "Allow SmartFarming Lite to access your photos."
  17. }
  18. },
  19. "android": {
  20. "adaptiveIcon": {
  21. "foregroundImage": "./assets/images/adaptive-icon.png"
  22. },
  23. "edgeToEdgeEnabled": true,
  24. "predictiveBackGestureEnabled": false,
  25. "package": "net.simplico.sflite26",
  26. "permissions": [
  27. "android.permission.RECORD_AUDIO"
  28. ]
  29. },
  30. "web": {
  31. "output": "static",
  32. "favicon": "./assets/images/favicon.png"
  33. },
  34. "plugins": [
  35. "expo-router",
  36. [
  37. "expo-image-picker",
  38. {
  39. "photosPermission": "Allow SmartFarming Lite to access your photos.",
  40. "cameraPermission": "Allow SmartFarming Lite to use your camera."
  41. }
  42. ],
  43. [
  44. "expo-splash-screen",
  45. {
  46. "image": "./assets/images/splash-icon.png",
  47. "imageWidth": 200,
  48. "resizeMode": "contain",
  49. "backgroundColor": "#ffffff",
  50. "dark": {
  51. "backgroundColor": "#000000"
  52. }
  53. }
  54. ],
  55. "expo-sqlite",
  56. "@react-native-community/datetimepicker"
  57. ],
  58. "experiments": {
  59. "typedRoutes": true,
  60. "reactCompiler": true
  61. },
  62. "extra": {
  63. "router": {},
  64. "eas": {
  65. "projectId": "340ba800-49be-404c-a820-d22e7933e8d4"
  66. }
  67. }
  68. }
  69. }