-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
75 lines (75 loc) · 1.97 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
{
"expo": {
"name": "TidGi",
"scheme": "tidgi",
"slug": "tidgi-mobile",
"version": "0.8.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*",
"assets/*"
],
"newArchEnabled": true,
"ios": {
"buildNumber": "1",
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "Allow $(PRODUCT_NAME) to access camera to Scan QR code.",
"NSMicrophoneUsageDescription": "Allow $(PRODUCT_NAME) to access your microphone",
"UIBackgroundModes": [
"fetch"
]
},
"bundleIdentifier": "ren.onetwo.tidgi.mobile"
},
"android": {
"versionCode": 7,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.CAMERA"
],
"package": "ren.onetwo.tidgi.mobile"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access camera to Scan QR code."
}
],
"./expo-plugins/trustHTTPRequests/trust-local-certs.js",
[
"expo-share-intent",
{
"androidIntentFilters": ["*/*"],
"androidMultiIntentFilters": ["*/*"],
"iosActivationRules": {
"NSExtensionActivationSupportsWebURLWithMaxCount": 1,
"NSExtensionActivationSupportsWebPageWithMaxCount": 1,
"NSExtensionActivationSupportsImageWithMaxCount": 1,
"NSExtensionActivationSupportsMovieWithMaxCount": 1
}
}
]
],
"extra": {
"eas": {
"projectId": "ef1a8f8a-e416-4d4b-97c1-75aec7e5ffe4"
}
},
"owner": "tiddly-gittly"
}
}