-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
75 lines (75 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"expo": {
"name": "ALC",
"description": "Animal Liberation Conference",
"owner": "dxetech",
"slug": "alc-mobile-app",
"version": "6.0.3",
"orientation": "portrait",
"backgroundColor": "#000000",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["assets/*"],
"ios": {
"bundleIdentifier": "com.dxe.mobile",
"buildNumber": "16",
"supportsTablet": false,
"googleServicesFile": "./GoogleService-Info.plist",
"config": {
"googleMapsApiKey": "AIzaSyA2cv39gh8OwETbbwSCDTd2tHr4HbMltk0"
}
},
"android": {
"package": "com.dxe.mobile",
"versionCode": 16,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"googleServicesFile": "./google-services.json",
"config": {
"googleMaps": {
"apiKey": "AIzaSyAdCHnX9uQ8U8pH2CwgKeMeyYj-Riq7lYc"
}
}
},
"notification": {
"icon": "./assets/notification-icon.png",
"color": "#3738AE",
"iosDisplayInForeground": true
},
"web": {
"favicon": "./assets/favicon.png",
"config": {
"firebase": {
"apiKey": "AIzaSyD67EKeync3GaoFdAsrXGwettX-iAqMKg8",
"measurementId": "G-6QB38JPSRK"
}
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
"@react-native-firebase/app",
"./react-native-maps-plugin"
],
"extra": {
"eas": {
"projectId": "a114cde5-7d72-4393-accd-9932cb79cffd"
}
}
}
}