From ca559ad11201b0f097a6c3ac574416a6573c6cd2 Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Fri, 1 Nov 2019 13:07:32 +0100 Subject: [PATCH] Release 3.2.3 * Updated to latest npm dependencies * Fixed Android bug where a browser window was opened if an article was clicked in the list * Improved checking internet connection --- android/app/build.gradle | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7f1439c..38614f6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -130,9 +130,9 @@ android { defaultConfig { applicationId "de.rebelgamer.RebelGamerRSS" minSdkVersion rootProject.ext.minSdkVersion - targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 42 - versionName "3.2.2" + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 43 + versionName "3.2.3" } splits { abi { @@ -178,15 +178,6 @@ android { } } - - packagingOptions { - pickFirst '**/armeabi-v7a/libc++_shared.so' - pickFirst '**/x86/libc++_shared.so' - pickFirst '**/arm64-v8a/libc++_shared.so' - pickFirst '**/x86_64/libc++_shared.so' - pickFirst '**/x86/libjsc.so' - pickFirst '**/armeabi-v7a/libjsc.so' - } } dependencies { @@ -194,20 +185,19 @@ dependencies { implementation "com.facebook.react:react-native:+" // From node_modules if (enableHermes) { - def hermesPath = "../../node_modules/hermesvm/android/"; - debugImplementation files(hermesPath + "hermes-debug.aar") - releaseImplementation files(hermesPath + "hermes-release.aar") + def hermesPath = "../../node_modules/hermes-engine/android/"; + debugImplementation files(hermesPath + "hermes-debug.aar") + releaseImplementation files(hermesPath + "hermes-release.aar") } else { - implementation jscFlavor + implementation jscFlavor } implementation project(':react-native-webview') implementation project(':react-native-snackbar') - implementation project(':@react-native-community_async-storage') implementation project(':@react-native-community_netinfo') implementation project(':react-native-gesture-handler') implementation project(':react-native-vector-icons') - implementation fileTree(dir: "libs", include: ["*.jar"]) + implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" implementation 'androidx.appcompat:appcompat:1.1.0-rc01' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'