app.json 1.4 KB

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