From 48693c7c8c1beb7db8cb66578311ec7bc561b2ed Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 29 Dec 2020 22:00:39 +0100 Subject: [PATCH] android/build.gradle: Update compile SDK and ABI - Updates to compile SDK to increase compatibility and throw latest warnings. No runtime changes to apk. - Updates the ABI filters to targer modern 64-bit ARMv8 CPUs instead of ARMv7. --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index f47921d..68a9cad 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdkVersion 28 + compileSdkVersion 30 defaultConfig { minSdkVersion 23 @@ -10,7 +10,7 @@ android { versionCode 1 versionName "1.0" ndk { - abiFilters "armeabi-v7a", "x86" + abiFilters "arm64-v8a", "x86" } } lintOptions {