-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
48 lines (47 loc) · 1.32 KB
/
app.config.js
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
const IS_DEV = process.env.APP_VARIANT === 'development';
export default {
name: IS_DEV ? "AudioScape (Dev)" : "AudioScape",
slug: "AudioScape",
version: "1.3.0",
platforms: ["android"],
orientation: "portrait",
icon: "./assets/images/icon.png",
scheme: IS_DEV ? "audioscape-dev" : "audioscape",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#1A1A1A"
},
android: {
softwareKeyboardLayoutMode: "pan",
permissions: [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.MANAGE_EXTERNAL_STORAGE",
"android.permission.FOREGROUND_SERVICE"
],
icon: "./assets/images/icon.png",
package: IS_DEV ? "com.ankushsarkar.audioscape.dev" : "com.ankushsarkar.audioscape",
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon-foreground.png",
backgroundImage: "./assets/images/adaptive-icon-background.png"
},
backgroundColor: "#1A1A1A"
},
androidNavigationBar: {
backgroundColor: "#1A1A1A"
},
plugins: ["expo-router", "expo-font"],
experiments: {
typedRoutes: true
},
extra: {
router: {
origin: false
},
eas: {
projectId: "5b2ff856-818a-42fc-b589-5287fa676098"
}
}
}