-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
41 lines (41 loc) · 914 Bytes
/
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
{
"expo": {
"name": "UniDesenhos",
"slug": "uni-desenhos",
"version": "1.0.0",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.unicasamoveis.uni_desenhos",
"buildNumber": "1.0.0",
"infoPlist": {
"NSCameraUsageDescription": "$(PRODUCT_NAME) needs access to your Camera."
}
},
"android": {
"package": "com.unicasamoveis.uni_desenhos",
"versionCode": 1,
"permissions": [
"android.permission.CAMERA"
]
},
"plugins": [
[
"react-native-vision-camera",
{
"cameraPermissionText": "$(PRODUCT_NAME) needs access to your Camera."
}
]
],
"extra": {
"eas": {
"projectId": "4f0b8e93-d61d-415a-bbc7-4401ca8c2c26"
}
},
"splash": {
"image": "./assets/splash.png",
"backgroundColor": "#1C1917"
}
}
}