-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
48 lines (48 loc) · 1.12 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
{
"expo": {
"name": "Unlimited Power",
"slug": "unlimited-power",
"version": "1.4.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.rdonnelly.unlimitedpower",
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#faf5ff"
},
"package": "com.rdonnelly.unlimitedpower"
},
"plugins": [
[
"expo-splash-screen",
{
"backgroundColor": "#fafaf9",
"image": "./assets/splash.png",
"dark": {
"image": "./assets/splash.png",
"backgroundColor": "#0c0a09"
},
"imageWidth": 200
}
]
],
"extra": {
"eas": {
"projectId": "74b83394-1cd7-4ce4-a38a-fb908aedfab6"
},
"bugsnag": {
"apiKey": "4fcfa114f0ed4f08c3360f4eb32adb05"
}
}
}
}