From 63f9ae3fe0a4888a060e0dd90f03bf8a62d957da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr> Date: Thu, 17 Oct 2024 11:30:33 +0200 Subject: [PATCH] Re-order ABI builds --- android/app/build.gradle | 10 +++++----- pubspec.yaml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 8a419ab..7a488de 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -55,11 +55,11 @@ android { } ext.abiCodes = [ - 'armeabi': 1, - 'armeabi-v7a': 2, - 'arm64-v8a': 3, - 'x86': 4, - 'x86_64': 5, + 'x86': 1, + 'x86_64': 2, + 'armeabi': 3, + 'armeabi-v7a': 4, + 'arm64-v8a': 5, ] import com.android.build.OutputFile diff --git a/pubspec.yaml b/pubspec.yaml index e106d72..5e3fcb2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A random application, for testing purpose only. publish_to: "none" -version: 1.1.1+66 +version: 1.1.2+67 environment: sdk: "^3.0.0" -- GitLab