mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
* refactor(INJI-569): changing png to svg images from setup to home screen Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * Refactor(INJI-569): changing png to svg images settings screen Signed-off-by: anil_majji <majjianilkumar050@gmail.com> * [INJI-569] changing png to svg image Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569]: Adjusted all the alignment in settings screen Signed-off-by: anil_majji <majjianilkumar050@gmail.com> * [INJI-569] fix SuccessLogo size and and alignment Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569] refactor theme files and removing unused QrLoginWarning component Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569] changing the naming convention of svg images Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569] fix Typo mistake and remove unused imports Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569] fix Typo mistake, misssing imports and remove unused elements Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> * [INJI-569]: Adjusted all the alignment of icons with tag name in settings screen Signed-off-by: anil_majji <majjianilkumar050@gmail.com> * [INJI-569] renaming the files Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> --------- Signed-off-by: Sri Kanth Kola <srikanthsri7447@gmail.com> Signed-off-by: anil_majji <majjianilkumar050@gmail.com> Co-authored-by: anil_majji <majjianilkumar050@gmail.com>
33 lines
709 B
TypeScript
33 lines
709 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.inji.mobileid',
|
|
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',
|
|
plugins: ['expo-localization'],
|
|
};
|