mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
32 lines
673 B
TypeScript
32 lines
673 B
TypeScript
export default {
|
|
name: 'Inji',
|
|
slug: 'inji',
|
|
version: '1.0.0',
|
|
orientation: 'portrait',
|
|
icon: './assets/icon.png',
|
|
splash: {
|
|
image: './assets/splash.png',
|
|
resizeMode: 'cover',
|
|
backgroundColor: '#ffffff',
|
|
},
|
|
updates: {
|
|
fallbackToCacheTimeout: 0,
|
|
},
|
|
assetBundlePatterns: ['**/*'],
|
|
ios: {
|
|
bundleIdentifier: 'io.mosip.residentapp',
|
|
buildNumber: '1.0.0',
|
|
supportsTablet: true,
|
|
},
|
|
android: {
|
|
package: 'io.mosip.residentapp',
|
|
versionCode: 1,
|
|
adaptiveIcon: {
|
|
foregroundImage: './assets/adaptive-icon.png',
|
|
backgroundColor: '#FFFFFF',
|
|
},
|
|
},
|
|
platforms: ['android', 'ios'],
|
|
privacy: 'hidden',
|
|
};
|