app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "expo": {
  3. "name": "asios",
  4. "slug": "asios",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/images/icon.png",
  8. "scheme": ["asios", "alipay2021004126636720"],
  9. "userInterfaceStyle": "automatic",
  10. "newArchEnabled": true,
  11. "ios": {
  12. "supportsTablet": true,
  13. "bundleIdentifier": "com.anonymous.asios"
  14. },
  15. "android": {
  16. "adaptiveIcon": {
  17. "backgroundColor": "#E6F4FE",
  18. "foregroundImage": "./assets/images/android-icon-foreground.png",
  19. "backgroundImage": "./assets/images/android-icon-background.png",
  20. "monochromeImage": "./assets/images/android-icon-monochrome.png"
  21. },
  22. "edgeToEdgeEnabled": true,
  23. "predictiveBackGestureEnabled": false,
  24. "package": "com.anonymous.asios"
  25. },
  26. "web": {
  27. "output": "static",
  28. "favicon": "./assets/images/favicon.png"
  29. },
  30. "plugins": [
  31. "expo-router",
  32. [
  33. "expo-splash-screen",
  34. {
  35. "image": "./assets/images/splash-icon.png",
  36. "imageWidth": 200,
  37. "resizeMode": "contain",
  38. "backgroundColor": "#ffffff",
  39. "dark": {
  40. "backgroundColor": "#000000"
  41. }
  42. }
  43. ],
  44. "expo-native-alipay"
  45. ],
  46. "experiments": {
  47. "typedRoutes": true,
  48. "reactCompiler": true
  49. }
  50. }
  51. }