app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 à câmera 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. "expo-notifications",
  46. {
  47. "icon": "./assets/icon.png",
  48. "color": "#ffffff"
  49. }
  50. ]
  51. ]
  52. }
  53. }