-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
82 lines (82 loc) · 1.89 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
76
77
78
79
80
81
82
{
"expo": {
"experiments": {
"tsconfigPaths": true,
"typedRoutes": false
},
"name": "Relisten",
"slug": "relisten",
"version": "6.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"scheme": "relisten",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#004251"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"googleServicesFile": "./firebase/GoogleService-Info.plist",
"supportsTablet": true,
"bundleIdentifier": "com.alecgorge.ios.Listen-to-the-Dead",
"infoPlist": {
"UIBackgroundModes": [
"audio"
]
},
"buildNumber": "6005"
},
"android": {
"googleServicesFile": "./firebase/google-services.json",
"adaptiveIcon": {
"foregroundImage": "./assets/ic_foreground.png",
"backgroundImage": "./assets/ic_background.png",
"backgroundColor": "#ffffff"
},
"icon": "./assets/ic_playstore.png",
"package": "net.relisten.android",
"versionCode": 6005
},
"jsEngine": "hermes",
"web": {
"favicon": "./assets/favicon.png"
},
"platforms": [
"ios",
"android"
],
"plugins": [
"expo-router",
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 34,
"minSdkVersion": 30,
"newArchEnabled": true
},
"ios": {
"newArchEnabled": true,
"useFrameworks": "static"
}
}
],
"expo-asset",
"@react-native-firebase/app",
"@react-native-firebase/crashlytics"
],
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "3b18b7db-fdf8-4a2c-8c24-19e24a8fd3a8"
}
},
"owner": "relisten"
}
}