forked from oguzgelal/juken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
42 lines (41 loc) · 838 Bytes
/
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
import ENV from './env.public.json';
export default {
name: "Juken",
slug: "juken",
privacy: "public",
userInterfaceStyle: "automatic",
platforms: [
"ios",
"android",
"web"
],
version: `${ENV.BUILD_VERSION}`,
orientation: "portrait",
icon: "./assets/wk4.png",
splash: {
image: "./assets/wksplash4.png",
resizeMode: "contain",
backgroundColor: "#1ecbe1"
},
updates: {
fallbackToCacheTimeout: 0
},
assetBundlePatterns: [
"**/*"
],
ios: {
icon: "./assets/wk4sq.png",
supportsTablet: true,
bundleIdentifier: ENV.BUNDLE_ID,
buildNumber: `${ENV.BUILD_VERSION}`,
userInterfaceStyle: "automatic",
},
android: {
package: ENV.PACKAGE,
versionCode: ENV.BUILD_VERSION,
permissions: [
"VIBRATE"
],
userInterfaceStyle: "automatic",
}
}