-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
39 lines (38 loc) · 1006 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
const IS_DEV = process.env.APP_VARIANT === 'development';
export default {
name: IS_DEV ? 'How Much In (Dev)' : 'How Much In',
slug: 'howmuchin',
version: '1.0.4',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/splashscreen.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: false,
bundleIdentifier: IS_DEV
? 'com.egorshar.howmuchin.dev'
: 'com.egorshar.howmuchin',
buildNumber: '13',
},
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#ffffff',
},
versionCode: 3,
jsEngine: 'hermes',
package: IS_DEV ? 'com.egorshar.howmuchin.dev' : 'com.egorshar.howmuchin',
softwareKeyboardLayoutMode: 'pan',
},
extra: {
eas: {
projectId: 'b81bfa50-6a4b-47af-a5ca-ef20db0873be',
},
},
plugins: ['expo-font', 'expo-localization'],
};