-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
42 lines (42 loc) · 1.02 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
{
"expo": {
"name": "BrainExercise",
"slug": "BrainExercise",
"platforms": ["ios", "android"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"runtimeVersion": "1.0.0",
"splash": {
"image": "./src/assets/bei.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/ca2c4db8-1c32-43e8-98b4-c6a3ad5f5daf"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "com.BrainExerciseInitiative.BrainExercise",
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "com.BrainExerciseInitiative.BrainExercise",
"versionCode": 1
},
"description": "Daily exercises for your brain.",
"scheme": "brain-exercise",
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
]
}
}