forked from mosip/inji-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
39 lines (37 loc) · 895 Bytes
/
app.config.ts
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
import {APPLICATION_THEME} from 'react-native-dotenv';
const adaptiveImage =
APPLICATION_THEME?.toLowerCase() === 'purple'
? '../assets/purpleSplashScreen.png'
: './assets/orangeSplashScreen.png';
export default {
name: 'Inji',
slug: 'inji',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/icon.png',
splash: {
image: adaptiveImage,
resizeMode: 'cover',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
bundleIdentifier: 'io.mosip.inji.mobileid',
buildNumber: '1.0.0',
supportsTablet: true,
},
android: {
package: 'io.mosip.residentapp',
versionCode: 1,
adaptiveIcon: {
foregroundImage: adaptiveImage,
backgroundColor: '#FFFFFF',
},
},
platforms: ['android', 'ios'],
privacy: 'hidden',
plugins: ['expo-localization'],
};