From 7c31db6363d376ba355ac247fa5e5356acd4e9cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr> Date: Wed, 16 Oct 2024 21:49:43 +0000 Subject: [PATCH] Sort 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 0a46b49..2622330 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 346c1ea..425b307 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Fill the board, a colorfull game! publish_to: "none" -version: 0.2.0+43 +version: 0.2.1+44 environment: sdk: "^3.0.0" -- GitLab