-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
58 lines (58 loc) · 1.3 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"expo": {
"name": "Church App",
"slug": "church-App",
"version": "2.0.9",
"scheme": "church-app",
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/iconVideira.png"
},
"plugins": [
"expo-router"
],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"orientation": "portrait",
"icon": "./assets/iconVideira.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash-Videira.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"buildNumber": "9",
"supportsTablet": true,
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Permissão para acessar a biblioteca de fotos"
}
},
"android": {
"versionCode": 9,
"adaptiveIcon": {
"foregroundImage": "./assets/iconVideira.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
],
"package": "com.phillipe17macedo.churchApp"
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "b99c9c55-931a-4417-aadf-7258716dcd9a"
}
}
}
}