-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.11 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
{
"expo": {
"name": "Pugdom",
"slug": "pugdom",
"scheme": "pugdom",
"splash": {
"backgroundColor": "#F8F9F9",
"dark": {
"backgroundColor": "#2A2E34"
}
},
"platforms": ["ios", "android", "web"],
"ios": {
"bundleIdentifier": "com.cajuuh.pugdom",
"supportsTablet": true,
"infoPlist": {
"NSPhotoLibraryUsageDescription": "This app requires access to your photo library to allow you to upload images.",
"CFBundleURLTypes": [
{
"CFBundleURLSchemes": ["pugdom"]
}
]
}
},
"android": {
"package": "com.cajuuh.pugdom",
"googleServicesFile": "./google-services.json",
"intentFilters": [
{
"action": "VIEW",
"data": {
"scheme": "pugdom",
"host": "oauthredirect"
},
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"extra": {
"eas": {
"projectId": "1ad346a0-237e-46f2-8717-bcab015012f5"
}
},
"owner": "cajuuh1337",
"plugins": ["expo-font", "expo-image-picker"]
}
}