-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
47 lines (46 loc) · 1.09 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": "Jesus Collective",
"slug": "JesusCollective",
"privacy": "public",
"platforms": ["ios", "android", "web"],
"owner": "georgevicbell",
"scheme": "jc",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"facebookScheme": "fb579712102531269",
"facebookAppId": "579712102531269",
"facebookDisplayName": "Jesus Collective",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#231F20"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.jesuscollective.iosapp",
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"package": "com.jesuscollective.androidapp"
},
"web": {
"babel": {
"include": ["aws-amplify-react-native"]
}
},
"plugins": ["sentry-expo"],
"extra": {
"eas": {
"projectId": "9459ffe0-4aab-11e9-b3f2-d7b1e0ef046b"
}
}
}
}