-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
61 lines (61 loc) · 1.31 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
{
"expo": {
"name": "BloodLine",
"slug": "bloodline",
"scheme": "comgeeekgodbloodline",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"intentFilters": [
{
"action": "VIEW",
"category": [
"BROWSABLE",
"DEFAULT"
],
"data": {
"scheme": "com.geeekgod.bloodline.auth"
}
}
],
"package": "com.geeekgod.bloodline",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"FOREGROUND_SERVICE"
],
"versionCode": 12
},
"web": {
"favicon": "./assets/favicon.png"
},
"packagerOpts": {
"config": "metro.config.js"
},
"extra": {
"eas": {
"projectId": "16737426-4732-4dd1-9c55-09af26ab4b45"
}
}
}
}