-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathapp.json
File metadata and controls
66 lines (66 loc) · 1.81 KB
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
{
"expo": {
"name": "Osiris",
"slug": "osiris-react",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/osiris_logo.png",
"scheme": "osiris",
"userInterfaceStyle": "light",
"jsEngine": "hermes",
"newArchEnabled": false,
"splash": {
"image": "./assets/images/osiris_splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/osiris_icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/osiris_icon.png"
},
"plugins": [
"expo-router",
[
"expo-font",
{
"fonts": [
"node_modules/@expo-google-fonts/nunito/Nunito_400Regular.ttf",
"node_modules/@expo-google-fonts/nunito/Nunito_600SemiBold.ttf",
"node_modules/@expo-google-fonts/nunito/Nunito_700Bold.ttf",
"node_modules/@expo-google-fonts/ubuntu/Ubuntu_400Regular.ttf",
"node_modules/@expo-google-fonts/ubuntu/Ubuntu_700Bold.ttf"
]
}
],
[
"expo-image-picker",
{
"photoPermission": "É necessário permissão para o $(PRODUCT_NAME) acessar a galeria de fotos.",
"cameraPermission": "É necessário permissão para o $(PRODUCT_NAME) acessar a câmera."
}
],
[
"expo-camera",
{
"cameraPermission": "É necessário permissão para o $(PRODUCT_NAME) acessar a câmera.",
"recordAudioAndroid": false
}
],
"expo-localization"
],
"experiments": {
"typedRoutes": true
}
}
}