forked from TERITORI/teritori-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
79 lines (78 loc) · 1.91 KB
/
app.config.js
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
const config = {
expo: {
name: "Teritori",
slug: "teritori",
version: "1.0.3",
orientation: "portrait",
icon: "./assets/app-icon.png",
owner: "teritori",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#000000",
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
bundleIdentifier: "com.teritori",
buildNumber: "5",
infoPlist: {
NSBluetoothAlwaysUsageDescription: "Used for Bluetooth communications",
NSBluetoothPeripheralUsageDescription:
"Used for Bluetooth communications",
NSPhotoLibraryUsageDescription:
"Access to your photo library is required for image upload functionality.",
ITSAppUsesNonExemptEncryption: false,
UIBackgroundModes: ["audio"],
},
},
android: {
package: "com.teritori",
versionCode: "6",
permissions: [
"WAKE_LOCK",
"BLUETOOTH",
"BLUETOOTH_ADMIN",
"BLUETOOTH_ADVERTISE",
"BLUETOOTH_SCAN",
"BLUETOOTH_CONNECT",
"ACCESS_NETWORK_STATE",
"CHANGE_NETWORK_STATE",
"CHANGE_WIFI_STATE",
"ACCESS_WIFI_STATE",
"CHANGE_WIFI_MULTICAST_STATE",
"NFC",
],
},
web: {
bundler: "metro",
favicon: "./assets/favicon.png",
},
extra: {
eas: {
projectId: "9ce165de-0199-478c-b3bd-8688e5ce03eb",
},
},
plugins: [
"expo-font",
[
"expo-document-picker",
{
iCloudContainerEnvironment: "Production",
},
],
[
"react-native-vision-camera",
{
cameraPermissionText: "$(PRODUCT_NAME) needs access to your Camera.",
enableCodeScanner: true,
},
],
],
},
};
export default config;