app.json 721 B

12345678910111213141516171819202122232425262728
  1. {
  2. "expo": {
  3. "name": "ReduxExample",
  4. "description": "Try out react-navigation with this awesome Redux example",
  5. "version": "1.0.0",
  6. "slug": "ReduxExample",
  7. "privacy": "public",
  8. "orientation": "portrait",
  9. "primaryColor": "#cccccc",
  10. "icon": "./assets/icon.png",
  11. "loading": {
  12. "icon": "./assets/loading.png",
  13. "hideExponentText": false
  14. },
  15. "sdkVersion": "27.0.0",
  16. "entryPoint": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  17. "packagerOpts": {
  18. "assetExts": ["ttf", "mp4"]
  19. },
  20. "ios": {
  21. "bundleIdentifier": "com.skylinuav.oms",
  22. "supportsTablet": true
  23. },
  24. "android": {
  25. "package": "com.skylinuav.oms"
  26. }
  27. }
  28. }