app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "expo": {
  3. "name": "I-FMS",
  4. "slug": "I-FMS",
  5. "privacy": "public",
  6. "platforms": [
  7. "ios",
  8. "android",
  9. "web"
  10. ],
  11. "version": "1.0.3",
  12. "orientation": "portrait",
  13. "icon": "./assets/icon.png",
  14. "splash": {
  15. "image": "./assets/splash.png",
  16. "resizeMode": "cover",
  17. "backgroundColor": "#ffffff"
  18. },
  19. "packagerOpts": {
  20. "config": "metro.config.js",
  21. "sourceExts": [
  22. "ttf",
  23. "js",
  24. "jsx",
  25. "ts",
  26. "tsx",
  27. "svgx",
  28. "svg"
  29. ],
  30. "transformer": "node_modules/react-native-svg-transformer/index.js"
  31. },
  32. "updates": {
  33. "fallbackToCacheTimeout": 0,
  34. "enabled": true,
  35. "checkAutomatically": "ON_ERROR_RECOVERY"
  36. },
  37. "assetBundlePatterns": [
  38. "**/*"
  39. ],
  40. "ios": {
  41. "supportsTablet": true,
  42. "bundleIdentifier": "net.ifms.fms",
  43. "buildNumber": "1.0.3",
  44. "icon": "./assets/icon.png"
  45. },
  46. "android": {
  47. "package": "net.ifms.fms",
  48. "googleServicesFile": "./google-services.json",
  49. "versionCode": 3,
  50. "icon": "./assets/icon.android.png",
  51. "useNextNotificationsApi": true
  52. }
  53. }
  54. }