-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
64 lines (64 loc) · 1.42 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
{
"expo": {
"newArchEnabled": true,
"scheme": "bueboka",
"web": {
"bundler": "metro"
},
"name": "Bueboka",
"slug": "bueboka",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF"
},
"extra": {
"eas": {
"projectId": "a740b024-fdf9-420d-9998-a6ae076ebc43"
}
},
"android": {
"package": "com.aaronshade.bueboka",
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#FFFFFF"
}
},
"ios": {
"bundleIdentifier": "com.aaronshade.bueboka",
"infoPlist": {
"CFBundleIconName": "./assets/images/ipad.png"
}
},
"runtimeVersion": "1.0.0",
"updates": {
"url": "https://u.expo.dev/a740b024-fdf9-420d-9998-a6ae076ebc43"
},
"plugins": [
"expo-font",
"expo-router",
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"buildToolsVersion": "34.0.0"
},
"ios": {
"deploymentTarget": "15.1"
}
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "bueboka",
"organization": "haakon-rusas"
}
]
]
}
}