From 141a8e645963d03490bc53fed52f54ee022a9a20 Mon Sep 17 00:00:00 2001 From: Eduardo Date: Thu, 3 Oct 2024 11:36:54 +0200 Subject: [PATCH 1/2] disabling Jetifier --- android/app/build.gradle | 6 +++--- android/gradle.properties | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 64b903fdbe24..ec17f2fab156 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -229,11 +229,11 @@ dependencies { implementation 'com.facebook.fresco:fresco:2.5.0' implementation 'com.facebook.fresco:animated-gif:2.5.0' - // Android support library - implementation 'com.android.support:support-core-utils:28.0.0' + // AndroidX support library + implementation 'androidx.legacy:legacy-support-core-utils:1.0.0' // Multi Dex Support: https://developer.android.com/studio/build/multidex#mdex-gradle - implementation 'com.android.support:multidex:1.0.3' + implementation 'androidx.multidex:multidex:2.0.1' // Plaid SDK implementation project(':react-native-plaid-link-sdk') diff --git a/android/gradle.properties b/android/gradle.properties index 46cd98554d29..4fad4632765f 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -22,7 +22,7 @@ org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=512m # https://developer.android.com/topic/libraries/support-library/androidx-rn android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX -android.enableJetifier=true +android.enableJetifier=false # Increase storage capacity (the default is 6 MB) AsyncStorage_db_size_in_MB=10 From 6100a629b6712cc41e0243eaff9c71a71bea3ce9 Mon Sep 17 00:00:00 2001 From: Eduardo Date: Thu, 3 Oct 2024 12:05:15 +0200 Subject: [PATCH 2/2] updated comment --- android/gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/gradle.properties b/android/gradle.properties index 4fad4632765f..038fb5c392e8 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -21,7 +21,7 @@ org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=512m # Android operating system, and which are packaged with your app's APK # https://developer.android.com/topic/libraries/support-library/androidx-rn android.useAndroidX=true -# Automatically convert third-party libraries to use AndroidX +# Disabled Jetifier to improve build performance as we're not using libraries that require Jetifier for AndroidX compatibility. android.enableJetifier=false # Increase storage capacity (the default is 6 MB)