mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
* [INJIMOB-2381] update package.json and resolve dependencies for react 0.73.0 Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] setup for 0.73.6 Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] fix font & image not loading issue changes include - move common image assets to android & iOS folders - update gradle version to 8.2 - add expo-font asset for Inter regular - replace useFont with expo-font - remove flipper (reason: 0.74 react native decoupled flipper) - npm package updates - close icon changed to close text in QRScanner.tsx Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-2381] update android:mosip script as per updated react native version Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix android build failure issue Changes include: - rename android assets folder as per convention - remove unused biometrics dependency - use env from react-native-dotenv as per module registered in babel config - revert conversion of close icon to image in QRScanner component Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix iOS build issue Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] rm unused local images linking in adnroid Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix splash screen not rendering issue in android Issue: Local assets were not loaded via React Native Image component in android, to fix this @react-native/assets-registry has been added Reference: https://github.com/expo/expo/issues/31240#issuecomment-2459049911 Other changes: - remove usage of expo-image as we dont have any explicit usecase for expo-image and its unused Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] rm unused intro slider image assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] revert back using local font assets in android Reason: Previously expo-font was used for fonts, to bring back the same compatiblity it is bought back Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use GestureHandlerRootView in root level to handle gestures ref - https://docs.swmansion.com/react-native-gesture-handler/docs/1.x/#js Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove custom assets and linking for images in iOS Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use default parameters instead of defaultProps Reason: React 18 has marked defaultProps as deprecated and it is removed in React 19 version. To avoid the issue of deprated usage, its modified. Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove unused terminal option in android build script Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove font assets in android Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] optimize import Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix failing test Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] set package.resolved version to 2 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix setting of camera view in face scanner Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix setting of camera view in face compare Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove flipper config file Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove unused debug logs Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor use component instead of type Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor use GestureHandlerRootView only on root level Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor remove unused config linking of font assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] refactor remove unused image assets Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] fix camera persmission issue in QRScanner use expo-camera to request and getstatus of camera permission instead of expo-barcode-scanner to avoid multiple re-renders of scan screen in flow of camera permission denial Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove package expo-barcode-scanner expo-barcode-scanner is deprecated and its suggested to use expo-camera to handle the scanning flows. The existing bar-code-scanner implementations have been replaced with expo-camera. Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] use extracted enums instead of legacy expo-camera Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove patch for react-native-0.71.8 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] revert date-fs version to 2.28.0 date-fns is not supporting filipino langauge, so we are maintaining patch for that. The patch created is for version 2.28.0 and updating the version of date-fns is causing conflicts in patch application if updated as well. To avoid this issue, version is kept as 2.28.0 Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] update readme Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] remove usage of legacy expo-camera in getting image type Other changes - remove resolutions block from package.json - sync pbxproj Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> * [INJIMOB-2381] add active prop to expo-camera as per suggestions expo-camera suggests "Only one Camera preview can be active at any given time. If you have multiple screens in your app, you should unmount Camera components whenever a screen is unfocused.". To handle this active prop is used which is set to false on unMount of the component whenever rendering Camera from expo-camera Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> --------- Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> Signed-off-by: KiruthikaJeyashankar <kiruthikavjshankar@gmail.com> Signed-off-by: adityankannan-tw <109274996+adityankannan-tw@users.noreply.github.com> Co-authored-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> Co-authored-by: adityankannan-tw <109274996+adityankannan-tw@users.noreply.github.com>
341 lines
13 KiB
Groovy
341 lines
13 KiB
Groovy
plugins {
|
|
id 'com.gladed.androidgitversion' version '0.4.14'
|
|
}
|
|
|
|
apply plugin: "com.android.application"
|
|
apply plugin: "com.facebook.react"
|
|
apply plugin: "org.sonarqube"
|
|
|
|
configurations.all {
|
|
resolutionStrategy.force 'androidx.activity:activity-ktx:1.7.1','androidx.activity:activity:1.7.0', 'com.fasterxml.jackson.core:jackson-core:2.14.0'
|
|
all*.exclude module: 'bcprov-jdk15to18'
|
|
all*.exclude module: 'bcutil-jdk18on'
|
|
all*.exclude module: 'bcprov-jdk15on'
|
|
all*.exclude module: 'bcutil-jdk15on'
|
|
all*.exclude module: 'titanium-json-ld'
|
|
}
|
|
|
|
react {
|
|
/* Folders */
|
|
// The root of your project, i.e. where "package.json" lives. Default is '..'
|
|
// root = file("../")
|
|
// The folder where the react-native NPM package is. Default is ../node_modules/react-native
|
|
// reactNativeDir = file("../node_modules/react-native")
|
|
// The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
|
|
// codegenDir = file("../node_modules/@react-native/codegen")
|
|
// The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
|
|
// cliFile = file("../node_modules/react-native/cli.js")
|
|
/* Variants */
|
|
// The list of variants to that are debuggable. For those we're going to
|
|
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
|
|
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
|
|
// debuggableVariants = ["liteDebug", "prodDebug"]
|
|
/* Bundling */
|
|
// A list containing the node command and its flags. Default is just 'node'.
|
|
// nodeExecutableAndArgs = ["node"]
|
|
//
|
|
// The command to run when bundling. By default is 'bundle'
|
|
// bundleCommand = "ram-bundle"
|
|
//
|
|
// The path to the CLI configuration file. Default is empty.
|
|
// bundleConfig = file(../rn-cli.config.js)
|
|
//
|
|
// The name of the generated asset file containing your JS bundle
|
|
// bundleAssetName = "MyApplication.android.bundle"
|
|
//
|
|
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
|
|
// entryFile = file("../js/MyApplication.android.js")
|
|
entryFile = file("../../index.js")
|
|
//
|
|
// A list of extra flags to pass to the 'bundle' commands.
|
|
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
|
|
// extraPackagerArgs = []
|
|
/* Hermes Commands */
|
|
// The hermes compiler command to run. By default it is 'hermesc'
|
|
// hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
|
|
//
|
|
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
|
|
// hermesFlags = ["-O", "-output-source-map"]
|
|
}
|
|
|
|
/**
|
|
* Set this to true to create four separate APKs instead of one,
|
|
* one for each native architecture. This is useful if you don't
|
|
* use App Bundles (https://developer.android.com/guide/app-bundle/)
|
|
* and want to have separate APKs to upload to the Play Store.
|
|
*/
|
|
def enableSeparateBuildPerCPUArchitecture = true
|
|
|
|
/**
|
|
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
|
|
*/
|
|
def enableProguardInReleaseBuilds = false
|
|
|
|
/**
|
|
* The preferred build flavor of JavaScriptCore (JSC)
|
|
*
|
|
* For example, to use the international variant, you can use:
|
|
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
|
|
*
|
|
* The international variant includes ICU i18n library and necessary data
|
|
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
|
|
* give correct results when using with locales other than en-US. Note that
|
|
* this variant is about 6MiB larger per architecture than default.
|
|
*/
|
|
def jscFlavor = 'org.webkit:android-jsc:+'
|
|
|
|
/**
|
|
* Private function to get the list of Native Architectures you want to build.
|
|
* This reads the value from reactNativeArchitectures in your gradle.properties
|
|
* file and works together with the --active-arch-only flag of react-native run-android.
|
|
*/
|
|
def reactNativeArchitectures() {
|
|
def value = project.getProperties().get("reactNativeArchitectures")
|
|
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
|
}
|
|
|
|
androidGitVersion {
|
|
baseCode 0
|
|
codeFormat 'MXXNXXPXX'
|
|
format '%tag_%%commit_%%branch%'
|
|
}
|
|
|
|
android {
|
|
ndkVersion rootProject.ext.ndkVersion
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
ext {
|
|
APP_NAME = "@string/app_name"
|
|
}
|
|
|
|
namespace 'io.mosip.residentapp'
|
|
|
|
defaultConfig {
|
|
applicationId 'io.mosip.residentapp'
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
versionName "0.17.0"
|
|
versionCode 1
|
|
manifestPlaceholders = [
|
|
APP_NAME : APP_NAME,
|
|
appAuthRedirectScheme: 'io.mosip.residentapp.inji'
|
|
]
|
|
}
|
|
|
|
splits {
|
|
abi {
|
|
reset()
|
|
enable enableSeparateBuildPerCPUArchitecture
|
|
universalApk true // If true, also generate a universal APK
|
|
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
// for sonarqube job we will generate dummy release keystore to sign the app as we are not doing it in workflow
|
|
def hasSonarqube = System.properties.containsKey("sonarqube")
|
|
def keystore = file('release.keystore').exists() ? file('release.keystore') : file('dummyrelease.keystore')
|
|
storeFile file("$keystore")
|
|
if (hasSonarqube && !keystore.exists()) {
|
|
exec {
|
|
commandLine 'keytool',
|
|
'-genkey',
|
|
'-v',
|
|
'-storetype', 'PKCS12',
|
|
'-keyalg', 'RSA',
|
|
'-keysize', '2048',
|
|
'-validity', '10000',
|
|
'-storepass', 'password',
|
|
'-keypass', 'password',
|
|
'-alias', 'androidreleasekey',
|
|
'-keystore', 'dummyrelease.keystore',
|
|
'-dname', 'CN=,OU=,O=,L=,S=,C=US'
|
|
}
|
|
storePassword "password"
|
|
keyAlias "androidreleasekey"
|
|
keyPassword "password"
|
|
} else {
|
|
def keystoreAlias = System.getenv("RELEASE_KEYSTORE_ALIAS")
|
|
def keystorePass = System.getenv("RELEASE_KEYSTORE_PASSWORD")
|
|
storePassword "$keystorePass"
|
|
keyAlias "$keystoreAlias"
|
|
keyPassword "$keystorePass"
|
|
}
|
|
v2SigningEnabled true
|
|
v1SigningEnabled false
|
|
}
|
|
debug {
|
|
def keystore = file('debug.keystore')
|
|
if (keystore.exists()) {
|
|
def keystoreAlias = System.getenv("DEBUG_KEYSTORE_ALIAS")
|
|
def keystorePass = System.getenv("DEBUG_KEYSTORE_PASSWORD")
|
|
storeFile file("$keystore")
|
|
storePassword "$keystorePass"
|
|
keyAlias "$keystoreAlias"
|
|
keyPassword "$keystorePass"
|
|
v2SigningEnabled true
|
|
v1SigningEnabled false
|
|
} else {
|
|
android.buildTypes.debug.signingConfig = null
|
|
}
|
|
}
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
release {
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
// Caution! In production, you need to generate your own keystore file.
|
|
// see https://reactnative.dev/docs/signed-apk-android.
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled enableProguardInReleaseBuilds
|
|
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
|
}
|
|
}
|
|
|
|
flavorDimensions "inji"
|
|
|
|
productFlavors {
|
|
residentapp {
|
|
versionName defaultConfig.versionName
|
|
dimension "inji"
|
|
resValue "string", "app_name", "Inji"
|
|
}
|
|
inji {
|
|
applicationId "io.mosip.inji.wallet"
|
|
versionName defaultConfig.versionName
|
|
dimension "inji"
|
|
resValue "string", "app_name", "Inji Wallet"
|
|
}
|
|
collab {
|
|
applicationId "io.mosip.inji.collab"
|
|
versionName defaultConfig.versionName
|
|
dimension "inji"
|
|
resValue "string", "app_name", "Inji Wallet Collab"
|
|
}
|
|
synergy {
|
|
applicationId "io.mosip.inji.synergy"
|
|
versionName defaultConfig.versionName
|
|
dimension "inji"
|
|
resValue "string", "app_name", "Inji Wallet Synergy"
|
|
}
|
|
mec {
|
|
applicationId "io.mosip.inji.mec"
|
|
versionName defaultConfig.versionName
|
|
dimension "inji"
|
|
resValue "string", "app_name", "Inji Wallet Mec"
|
|
}
|
|
}
|
|
|
|
android.applicationVariants.all { variant ->
|
|
variant.outputs.all { output ->
|
|
def datetime = new Date().format('yyyyMMdd_HHmm')
|
|
def architecture = output.getFilter(com.android.build.OutputFile.ABI) ?: "universal"
|
|
outputFileName = "Inji_${architecture}.apk"
|
|
}
|
|
}
|
|
|
|
android.applicationVariants.all { variant ->
|
|
variant.outputs.all { output ->
|
|
if (variant.flavorName == "collab") {
|
|
sonarqube {
|
|
androidVariant variant.name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
pickFirst 'lib/arm64-v8a/liblog.so'
|
|
pickFirst 'lib/armeabi-v7a/liblog.so'
|
|
pickFirst 'lib/x86/liblog.so'
|
|
pickFirst 'lib/x86_64/liblog.so'
|
|
resources {
|
|
excludes += "META-INF/*"
|
|
excludes += "META-INF/spring/aot.factories"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("io.mosip:inji-openid4vp:0.3.0-SNAPSHOT"){
|
|
exclude group: 'org.bouncycastle', module: 'bcpkix-jdk15on'
|
|
exclude group: 'io.mosip', module: 'vcverifier-jar'
|
|
exclude group: 'com.google.crypto.tink', module: 'tink'
|
|
}
|
|
implementation("com.facebook.react:react-android")
|
|
implementation 'com.facebook.soloader:soloader:0.10.1+'
|
|
implementation("io.mosip:pixelpass-aar:0.7.0-SNAPSHOT")
|
|
implementation("io.mosip:secure-keystore:0.3.0")
|
|
implementation("io.mosip:tuvali:0.5.2-SNAPSHOT")
|
|
implementation("io.mosip:inji-vci-client:0.3.0-SNAPSHOT")
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
implementation("io.mosip:vcverifier-aar:1.2.0-SNAPSHOT"){
|
|
exclude group: 'org.bouncycastle', module: 'bcpkix-jdk15on'
|
|
}
|
|
|
|
|
|
def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true";
|
|
def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true";
|
|
def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true";
|
|
|
|
// If your app supports Android versions before Ice Cream Sandwich (API level 14)
|
|
// All fresco packages should use the same version
|
|
if (isGifEnabled || isWebpEnabled) {
|
|
implementation 'com.facebook.fresco:fresco:2.0.0'
|
|
implementation 'com.facebook.fresco:imagepipeline-okhttp3:2.0.0'
|
|
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.4.1'
|
|
}
|
|
|
|
if (isGifEnabled) {
|
|
// For animated gif support
|
|
implementation 'com.facebook.fresco:animated-gif:2.0.0'
|
|
}
|
|
|
|
if (isWebpEnabled) {
|
|
// For webp support
|
|
implementation 'com.facebook.fresco:webpsupport:2.0.0'
|
|
if (isWebpAnimatedEnabled) {
|
|
// Animated webp support
|
|
implementation 'com.facebook.fresco:animated-webp:2.0.0'
|
|
}
|
|
}
|
|
compileOnly project(':react-native-android-location-services-dialog-box')
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
|
|
|
|
if (hermesEnabled.toBoolean()) {
|
|
implementation("com.facebook.react:hermes-android")
|
|
} else {
|
|
implementation jscFlavor
|
|
}
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
}
|
|
|
|
task copyFaceSdkModel(type: Copy) {
|
|
from '../../assets/models/'
|
|
include 'faceModel.tflite'
|
|
into 'src/main/assets/'
|
|
}
|
|
|
|
preBuild.dependsOn copyFaceSdkModel
|
|
|
|
task CaptureLibraryVersion {
|
|
def libDef = project.configurations.getByName('implementation').allDependencies.matching {
|
|
it.group.equals("io.mosip") && it.name.equals("tuvali")
|
|
}
|
|
if (libDef.size() > 0) {
|
|
android.buildTypes.each {
|
|
it.buildConfigField 'String', 'TUVALI_LIB_VERSION', "\"${libDef[0].version}\""
|
|
}
|
|
}
|
|
}
|
|
|
|
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
|
|
|
|
// https://github.com/oblador/react-native-vector-icons?tab=readme-ov-file#android-setup
|
|
apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")
|
|
apply from: "./eas-build.gradle" |