-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
71 lines (71 loc) · 2.3 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
{
"expo": {
"name": "Etlas",
"slug": "Etlas",
"version": "1.0.0",
"scheme": ["com.etlas", "fb473951754912606"],
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": ["js", "jsx", "json", "wasm", "svg", "jpeg", "obj"]
},
"orientation": "portrait",
"icon": "./assets/Images/Etlas-logo.png",
"userInterfaceStyle": "light",
"githubUrl": "https://github.com/Etlas-SCU/Etlas-Android",
"splash": {
"image": "./assets/Images/Splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*", "assets/**"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.etlas"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/Images/Etlas-logo.png",
"backgroundColor": "#ffffff"
},
"permissions": ["android.permission.CAMERA"],
"package": "com.etlas"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone"
}
],
[
"expo-image-picker",
{
"photosPermission": "custom photos permission",
"cameraPermission": "Allow $(PRODUCT_NAME) to open the camera",
"//": "Disables the microphone permission",
"microphonePermission": false
}
],
"expo-localization"
],
"extra": {
"eas": {
"projectId": "2f0df44e-e5b0-4e95-9134-512e63e63018"
},
"expoConfig": {
"currentFullName": "@7oskaa/Etlas",
"originalFullName": "@7oskaa/Etlas"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/2f0df44e-e5b0-4e95-9134-512e63e63018"
}
}
}