app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "expo": {
  3. "name": "EmocoesApp",
  4. "slug": "EmocoesApp",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/icon.png",
  8. "userInterfaceStyle": "light",
  9. "newArchEnabled": true,
  10. "splash": {
  11. "image": "./assets/splash-icon.png",
  12. "resizeMode": "contain",
  13. "backgroundColor": "#ffffff"
  14. },
  15. "ios": {
  16. "supportsTablet": true
  17. },
  18. "android": {
  19. "adaptiveIcon": {
  20. "foregroundImage": "./assets/adaptive-icon.png",
  21. "backgroundColor": "#ffffff"
  22. },
  23. "edgeToEdgeEnabled": true
  24. },
  25. "web": {
  26. "favicon": "./assets/favicon.png"
  27. },
  28. "plugins": [
  29. "expo-router",
  30. [
  31. "expo-camera",
  32. {
  33. "cameraPermission": "$(PRODUCT_NAME) precisa de acesso á camera para capturar seu humor."
  34. }
  35. ],
  36. [
  37. "expo-media-library",
  38. {
  39. "photosPermission": "O aplicativo salva as imagens de humor na sua galeria",
  40. "savePhotosPermission": "O aplicativo salva as imagens de humor na sua galeria",
  41. "isAccessMediaLocationEnabled": true
  42. }
  43. ]
  44. ]
  45. }
  46. }