-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
51 lines (51 loc) · 1.72 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
{
"expo": {
"name": "EQUiSat",
"platforms": [
"ios",
"android"
],
"icon": "./assets/icon.png",
"version": "1.3.1",
"slug": "equisat",
"ios": {
"bundleIdentifier": "org.brownspace.equisat.ios",
"config": {
"googleMapsApiKey": "AIzaSyAjQqz5naL2CkUZF5EzLHOa8BzhIPAFl6k"
},
"icon": "./assets/icon_ios.png",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "We need to know your current location to determine EQUiSat's next pass over you. Do you allow us to use location service on this device?"
},
"publishBundlePath": "ios/equisat/Supporting/shell-app.bundle",
"publishManifestPath": "ios/equisat/Supporting/shell-app-manifest.json"
},
"android": {
"package": "org.brownspace.equisat",
"config": {
"googleMaps": {
"apiKey": "AIzaSyD8uo6zoHAD9qhDDKVf38zdg76c4KsC-Vg"
}
},
"versionCode": 8,
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
],
"publishBundlePath": "android/app/src/main/assets/shell-app.bundle",
"publishManifestPath": "android/app/src/main/assets/shell-app-manifest.json"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"sdkVersion": "28.0.0",
"isDetached": true,
"detach": {
"iosExpoViewUrl": "https://s3.amazonaws.com/exp-exponent-view-code/ios-v2.6.8-sdk28.0.0-d3178d29-6e12-458b-bfeb-8b7538943b48.tar.gz",
"androidExpoViewUrl": "https://s3.amazonaws.com/exp-exponent-view-code/android-v2.6.4-sdk28.0.0-9ba3198a-7d95-4769-9e16-178a37a70cae.tar.gz"
},
"scheme": "exp96b020443bd04bd29acaec8d0a8f23ab"
}
}