SDL_helloworld: Bump SDL3 android dependency to 3.2.0 🎆

From 4d248142388b04466e55589ad4f3ff1edf991d8a Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Tue, 21 Jan 2025 20:52:16 +0100
Subject: [PATCH] =?UTF-8?q?Bump=20SDL3=20android=20dependency=20to=203.2.0?=
 =?UTF-8?q?=20=F0=9F=8E=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .github/workflows/main.yml       | 4 ++--
 android-project/README.md        | 2 +-
 android-project/app/build.gradle | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 712fd83..5891431 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -48,8 +48,8 @@ jobs:
         env:
           GH_TOKEN: ${{ github.token }}
         run: |
-          gh -R libsdl-org/SDL release download prerelease-3.1.10 -p 'SDL3-devel-*-android.zip'
-          unzip "SDL3-devel-3.1.10-android.zip" -d android-project/app/libs SDL3-3.1.10.aar
+          gh -R libsdl-org/SDL release download release-3.2.0 -p 'SDL3-devel-*-android.zip'
+          unzip "SDL3-devel-3.2.0-android.zip" -d android-project/app/libs SDL3-3.2.0.aar
       - name: Setup required Java version
         uses: actions/setup-java@v4
         with:
diff --git a/android-project/README.md b/android-project/README.md
index 67a89d6..4fba7eb 100644
--- a/android-project/README.md
+++ b/android-project/README.md
@@ -32,6 +32,6 @@ Only 2 changes are required:
    ```gradle
    dependencies {
      /* ... */      
-     implementation files('libs/SDL3-3.1.10.aar')
+     implementation files('libs/SDL3-3.2.0.aar')
    }
    ```
diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle
index 7f4eb50..e1465f8 100644
--- a/android-project/app/build.gradle
+++ b/android-project/app/build.gradle
@@ -44,5 +44,5 @@ android {
 }
 
 dependencies {
-    implementation files('libs/SDL3-3.1.10.aar')
+    implementation files('libs/SDL3-3.2.0.aar')
 }