-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
85 lines (85 loc) · 2.09 KB
/
Copy pathapp.json
File metadata and controls
85 lines (85 loc) · 2.09 KB
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
{
"expo": {
"name": "Kodō",
"slug": "kodo",
"version": "0.0.1",
"platforms": ["android"],
"orientation": "portrait",
"scheme": "kodo",
"owner": "kidneyweakx",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0A0A0B"
},
"android": {
"package": "com.kidneyweakx.kodo",
"versionCode": 1,
"permissions": [
"android.permission.BLUETOOTH",
"android.permission.BLUETOOTH_ADMIN",
"android.permission.BLUETOOTH_CONNECT",
"android.permission.BLUETOOTH_SCAN",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.POST_NOTIFICATIONS",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.READ_PHONE_STATE",
"android.permission.VIBRATE"
],
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0A0A0B"
}
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26,
"compileSdkVersion": 36,
"targetSdkVersion": 35,
"kotlinVersion": "2.1.20"
}
}
],
"./plugins/with-project-build-gradle.js",
"./plugins/with-android-port.js",
"./plugins/with-manifest.js",
"expo-router",
[
"expo-localization",
{
"supportedLocales": ["en", "zh-Hant"]
}
],
[
"expo-font",
{
"fonts": []
}
],
[
"expo-notifications",
{
"icon": "./assets/notification-icon.png",
"color": "#7CF5C4"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
}
}
}
}