app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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", "alipay2021005175632205"],
  9. "userInterfaceStyle": "automatic",
  10. "newArchEnabled": true,
  11. "ios": {
  12. "supportsTablet": true,
  13. "bundleIdentifier": "com.anonymous.asios",
  14. "appleTeamId": "Y9ZVX3FRX6"
  15. },
  16. "android": {
  17. "adaptiveIcon": {
  18. "backgroundColor": "#E6F4FE",
  19. "foregroundImage": "./assets/images/android-icon-foreground.png",
  20. "backgroundImage": "./assets/images/android-icon-background.png",
  21. "monochromeImage": "./assets/images/android-icon-monochrome.png"
  22. },
  23. "edgeToEdgeEnabled": true,
  24. "predictiveBackGestureEnabled": false,
  25. "package": "com.anonymous.asios"
  26. },
  27. "web": {
  28. "output": "static",
  29. "favicon": "./assets/images/favicon.png"
  30. },
  31. "plugins": [
  32. "expo-router",
  33. [
  34. "expo-splash-screen",
  35. {
  36. "image": "./assets/images/splash-icon.png",
  37. "imageWidth": 200,
  38. "resizeMode": "contain",
  39. "backgroundColor": "#ffffff",
  40. "dark": {
  41. "backgroundColor": "#000000"
  42. }
  43. }
  44. ],
  45. "expo-native-alipay"
  46. ],
  47. "experiments": {
  48. "typedRoutes": true,
  49. "reactCompiler": true
  50. }
  51. }
  52. }