-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
executable file
·81 lines (81 loc) · 2.35 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
{
"expo": {
"name": "Log4Fit",
"slug": "log4fit",
"version": "1.0.43",
"orientation": "portrait",
"icon": "./assets/images/1024.png",
"scheme": "log4fit",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"assets/images/*",
"src/assets/images/*"
],
"ios": {
"bundleIdentifier": "red.paragraph.log4fit",
"supportsTablet": false,
"requireFullScreen": true,
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": [
"CA92.1"
]
}
]
},
"infoPlist": {
"CFBundleAllowMixedLocalizations": true
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"versionCode": 43,
"package": "red.paragraph.log4fit",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive_icon.png",
"backgroundColor": "#F6F6F6"
}
},
"androidStatusBar": {
"backgroundColor": "#000000",
"barStyle": "light-content"
},
"locales": {
"ru": "./locales/russian.json",
"en": "./locales/english.json"
},
"extra": {
"eas": {
"projectId": "213ef32b-98a5-47e3-91da-79de2e23283b"
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
"expo-localization",
"./wass.js",
"expo-asset"
],
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/213ef32b-98a5-47e3-91da-79de2e23283b"
}
}
}