From 6c47cfcdcaaa38a498f2ea8c6e6c803fb1000836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20W=C3=BCrl?= Date: Tue, 24 Jan 2023 17:22:13 +0100 Subject: [PATCH] fix abi filter configuration #224 (#225) --- android/app/build.gradle | 1 + android/gradle.properties | 2 +- pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 3dc29a7f..cf3a648f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -78,6 +78,7 @@ android { // Recommended by Google Play Store for testing // https://developer.android.com/reference/tools/gradle-api/6.7/com/android/build/api/dsl/Ndk debugSymbolLevel 'SYMBOL_TABLE' + abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64' } } } diff --git a/android/gradle.properties b/android/gradle.properties index b0647fc1..70dc8e7e 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -AndroidProject.signing=/Users/donataspuidokas/key.properties +AndroidProject.signing=./key.properties diff --git a/pubspec.yaml b/pubspec.yaml index 98951c71..0261c7d8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.0.3+31 +version: 1.0.3+34 environment: sdk: ">=2.12.0 <3.4.0"