app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "expo": {
  3. "plugins": [
  4. "expo-notifications"
  5. ],
  6. "scheme": "cnp.mobile",
  7. "name": "cnp-mobile",
  8. "slug": "cnp-mobile",
  9. "version": "0.0.16",
  10. "orientation": "portrait",
  11. "icon": "./assets/cnp-app-icon.png",
  12. "splash": {
  13. "image": "./assets/cnp-splash.png",
  14. "resizeMode": "cover",
  15. "backgroundColor": "#ffffff"
  16. },
  17. "updates": {
  18. "fallbackToCacheTimeout": 0
  19. },
  20. "assetBundlePatterns": [
  21. "**/*"
  22. ],
  23. "ios": {
  24. "bundleIdentifier": "com.clicknpush.app",
  25. "googleServicesFile": "./GoogleService-Info.plist",
  26. "buildNumber": "0.0.18"
  27. },
  28. "android": {
  29. "googleServicesFile": "./google-services.json",
  30. "adaptiveIcon": {
  31. "foregroundImage": "./assets/logo-white.png",
  32. "backgroundImage": "./assets/cover.png"
  33. },
  34. "package": "com.clicknpush.mobile",
  35. "versionCode": 20,
  36. "config": {
  37. "googleMaps": {
  38. "apiKey": "AIzaSyDPN1Z8SV7WClUdnoVyTQMoUfMYeC0DZyU"
  39. }
  40. }
  41. },
  42. "web": {
  43. "favicon": "./assets/favicon.png"
  44. }
  45. }
  46. }