-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
104 lines (104 loc) · 3.2 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
101
102
103
104
{
"expo": {
"name": "Smart Village App",
"slug": "smart-village-app",
"owner": "ikusei",
"privacy": "unlisted",
"description": "An open source React Native app for smart villages merging regional offers and services in one place - in your pocket.",
"githubUrl": "https://github.com/ikuseiGmbH/smart-village-app-app",
"platforms": ["ios", "android"],
"version": "4.0.2",
"runtimeVersion": { "policy": "nativeVersion" },
"extra": { "eas": { "projectId": "20540f3a-6e82-4038-8987-adb6d97f0e75" } },
"icon": "./assets/icon.png",
"scheme": "smart-village-app",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "de.dev.smartvillage.app",
"supportsTablet": true,
"requireFullScreen": true,
"infoPlist": {
"NSAppTransportSecurity": { "NSAllowsArbitraryLoads": true },
"NSCameraUsageDescription": "Diese App nutzt die Kamera um QR-Codes zu scannen.",
"NSPhotoLibraryUsageDescription": "Diese App nutzt die Medienbibliothek für die Auswahl eines Profilbildes.",
"NSLocationWhenInUseUsageDescription": "Diese App kann die Standortbestimmung nutzen, um Ihre aktuelle Position auf der Karte darzustellen und Inhalte nach Entfernung zu sortieren.",
"NSMicrophoneUsageDescription": "Diese App benötigt Zugriff auf das Mikrofon, um die Kamera zu benutzen",
"CFBundleLocalizations": ["de"],
"CFBundleDevelopmentRegion": "de_DE",
"LSApplicationQueriesSchemes": ["whatsapp"],
"LSMinimumSystemVersion": "12.0"
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0F243F"
},
"package": "de.dev.smartvillage.app",
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
],
"config": {
"googleMaps": {
"apiKey": "abcdef"
}
},
"softwareKeyboardLayoutMode": "pan",
"allowBackup": false
},
"androidStatusBar": {
"barStyle": "dark-content",
"translucent": true,
"backgroundColor": "#00000000"
},
"plugins": [
[
"expo-camera",
{
"recordAudioAndroid": false
}
],
[
"expo-screen-orientation",
{
"initialOrientation": "PORTRAIT"
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"expo-media-library",
{
"savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos."
}
],
"@config-plugins/react-native-blob-util",
"@config-plugins/react-native-pdf",
"@reactvision/react-viro",
"expo-asset",
"expo-font",
"expo-image-picker",
"expo-localization",
"expo-secure-store",
"./config-plugins/withAndroidMailQueriesAndWhatsappPackage"
]
}
}