version 0.2.0

This commit is contained in:
Paolo Miguel de Leon
2022-02-15 11:17:17 +08:00
committed by Ken Lewerentz
parent 5115af1ae7
commit b5be632225
166 changed files with 58836 additions and 70 deletions

36
app.json Normal file
View File

@@ -0,0 +1,36 @@
{
"expo": {
"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"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}