-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
46 lines (46 loc) · 1.07 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
{
"expo": {
"name": "countdown-mobile-app",
"slug": "countdown-mobile-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/timer.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/timer.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.konjo.countdownmobileapp",
"buildNumber": "9",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"versionCode": 9,
"adaptiveIcon": {
"foregroundImage": "./assets/images/timer.png",
"backgroundColor": "#ffffff"
},
"package": "com.konjo.countdownmobileapp"
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"extra": {
"eas": {
"projectId": "691d12e4-d1d0-4991-9f90-392b1bb33698"
}
}
}
}