Files
inji-wallet/app.config.ts
Paolo Miguel de Leon c2dd086ce8 build: add dotenv
2022-09-06 14:33:53 +08:00

32 lines
703 B
TypeScript

export default {
name: 'MOSIP Resident App',
slug: 'mosip-resident-app',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/icon.png',
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
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',
};