説明なし

app.json 1.9KB

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