From ecfbcd1c022e15a2a4b2b63f7976cd2806c2f903 Mon Sep 17 00:00:00 2001 From: Kavish Devar Date: Fri, 21 Nov 2025 02:55:51 +0530 Subject: [PATCH] android: set min version to 13 I haven't been able to figure out a workaround for pre-A13 --- README.md | 2 +- android/app/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b7efa7..98b63ac 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ https://github.com/user-attachments/assets/43911243-0576-4093-8c55-89c1db5ea533 If you are using ColorOS/OxygenOS 16, you don't need root except for customizing transparency mode, setting up hearing aid, and use Bluetooth Multipoint. Changing ANC, conversational awareness, ear detection, and other customizations will work without root. For everyone else: > [!CAUTION] -> **You must have a rooted device with Xposed to use LibrePods on Android.** This is due to a [bug in the Android Bluetooth stack](https://issuetracker.google.com/issues/371713238). Please upvote the issue by clicking the '+1' icon on the IssueTracker page. +> **You must have a rooted device with Xposed to use LibrePods on Android.** This is due to a [bug in the Android Bluetooth stack](https://issuetracker.google.com/issues/371713238). Please upvote the issue by clicking the '+1' icon on the IssueTracker page. I don't know a fix for Android versions <13 either. So, this needs a phone running A13+. > > There are **no exceptions** to the root requirement until Google/your OEM figures out a fix. diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index cab99bd..e111da4 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -12,9 +12,9 @@ android { defaultConfig { applicationId = "me.kavishdevar.librepods" - minSdk = 28 + minSdk = 33 targetSdk = 36 - versionCode = 8 + versionCode = 9 versionName = "0.2.0" }