forked from ScoutTrek/mobile-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (67 loc) · 1.67 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
{
"name": "ScoutTrek",
"expo": {
"owner": "sandboxnu",
"entryPoint": "node_modules/expo/AppEntry.js",
"name": "ScoutTrek",
"slug": "scout-trek-native",
"privacy": "unlisted",
"platforms": ["ios", "android"],
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos allow you to choose a profile photo."
}
]
],
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/images/ScoutTrekIcon.png",
"updates": {
"enabled": true
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.scouttrek.kalebdavenport",
"buildNumber": "1.0.65"
},
"android": {
"useNextNotificationsApi": true,
"versionCode": 20,
"permissions": [
"NOTIFICATIONS",
"ACCESS_FINE_LOCATION",
"CAMERA",
"READ_EXTERNAL_STORAGE",
"READ_PHONE_STATE",
"VIBRATE",
"WAKE_LOCK",
"WRITE_EXTERNAL_STORAGE",
"android.permission.RECORD_AUDIO"
],
"config": {
"googleMaps": {
"apiKey": "AIzaSyCy38WoJFJEn3gr7EEc1OAWcO-Xsslilbs"
}
},
"package": "com.wowyourclient.scouttrek",
"googleServicesFile": "./google-services.json"
},
"splash": {
"backgroundColor": "#34A86C"
},
"description": "Testing the publishing feature of Expo",
"notification": {
"icon": "./assets/images/Icon.png",
"color": "#F29959",
"iosDisplayInForeground": true
},
"extra": {
"eas": {
"projectId": "053431a1-924d-475e-baec-77fa89064c5a"
}
}
}
}