app.json 709 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "expo": {
  3. "name": "KirinCode",
  4. "slug": "kirincode-mobile",
  5. "version": "0.4.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/icon.png",
  8. "userInterfaceStyle": "dark",
  9. "backgroundColor": "#0f172a",
  10. "splash": {
  11. "backgroundColor": "#1a1a2e"
  12. },
  13. "ios": {
  14. "supportsTablet": true,
  15. "bundleIdentifier": "ai.kirincode.mobile",
  16. "infoPlist": {
  17. "NSAppTransportSecurity": {
  18. "NSAllowsArbitraryLoads": true
  19. }
  20. }
  21. },
  22. "android": {
  23. "adaptiveIcon": {
  24. "backgroundColor": "#1a1a2e"
  25. },
  26. "package": "ai.kirincode.mobile"
  27. },
  28. "plugins": [
  29. "expo-secure-store",
  30. "expo-sqlite"
  31. ]
  32. }
  33. }