From 0e2579112a109057f71657cb4df75f7d06e0ea61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=87=A8=F0=9F=87=B3=E9=92=9F=E6=99=BA=E5=BC=BA=20?= =?UTF-8?q?=E3=80=8E=E6=B1=9F=E8=A5=BF=E9=9D=92=E5=9E=A3=E7=A7=91=E6=8A=80?= =?UTF-8?q?=E3=80=8F?= Date: Sat, 25 Oct 2025 22:25:00 +0800 Subject: [PATCH] (hotfix) fixed the namespace issue for latest version and set minimumSdkVersion #235 --- android/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 082a0fea..9ef68d87 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -18,13 +18,15 @@ rootProject.allprojects { } apply plugin: 'com.android.library' android { - compileSdkVersion 30 + namespace 'io.github.edufolly.flutterbluetoothserial' + + compileSdkVersion 36 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } defaultConfig { - minSdkVersion 19 + minSdkVersion 22 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions {