From f5566d3f0fbd630ee6e3f9168301f36ec89c4640 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Thu, 17 Oct 2024 08:41:00 +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 ad4bb90..dc960d6 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 c2d5242..27cfef3 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -3,7 +3,7 @@ description: Hangman game, have fun with words and letters!
 
 publish_to: "none"
 
-version: 1.3.1+31
+version: 1.3.2+32
 
 environment:
   sdk: "^3.0.0"
-- 
GitLab