-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
100 lines (100 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"expo": {
"name": "1001km",
"slug": "1001km",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "com.gplr.tausendundeinskilometer",
"userInterfaceStyle": "automatic",
"androidStatusBar": {
"translucent": true
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.gplr.tausendundeinskilometer",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"image": "./assets/images/splash-dark.png",
"backgroundColor": "#000000",
"resizeMode": "contain"
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"image": "./assets/images/splash-dark.png",
"backgroundColor": "#000000",
"resizeMode": "contain"
}
},
"permissions": [
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.FOREGROUND_SERVICE"
],
"package": "com.gplr.tausendundeinskilometer",
"versionCode": 1
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png",
"build": { "babel": { "include": [ "@ui-kitten/components" ]}}
},
"plugins": [
"expo-router",
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 34,
"targetSdkVersion": 34,
"buildToolsVersion": "34.0.0",
"kotlinVersion": "1.6.10",
"packagingOptions": {
"pickFirst": [
"**/libc++_shared.so"
]
}
},
"ios": {
"deploymentTarget": "13.4"
}
}
],
[
"@rnmapbox/maps",
{
"RNMapboxMapsImpl": "mapbox"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "cc39d6cf-ea90-45a3-aea8-14cdbc9093bb"
}
},
"owner": "marcocoreduo",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/cc39d6cf-ea90-45a3-aea8-14cdbc9093bb"
}
}
}