app.json 725 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "expo": {
  3. "sdkVersion": "35.0.0",
  4. "icon": "./assets/nblogo.png",
  5. "slug": "kitchensinkvuenative",
  6. "loading": {
  7. "hideExponentText": true,
  8. "backgroundImage": "./assets/splashscreen.png"
  9. },
  10. "orientation": "portrait",
  11. "primaryColor": "#cccccc",
  12. "packagerOpts": {
  13. "sourceExts": [
  14. "vue",
  15. "js",
  16. "json",
  17. "ts",
  18. "tsx"
  19. ],
  20. "assetExts": [
  21. "ttf"
  22. ]
  23. },
  24. "androidStatusBarColor": "#334393",
  25. "androidStatusBar": {
  26. "barStyle": "light-content",
  27. "backgroundColor": "#334393"
  28. },
  29. "name": "kitchenSink-vue-native",
  30. "version": "0.1.0",
  31. "platforms": [
  32. "android",
  33. "ios"
  34. ]
  35. }
  36. }