Remove unused AltBeacon dependency
Native Kotlin scanner uses BluetoothLeScanner directly, making the AltBeacon library dead code. Removes dependency and proguard rule. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
982152383a
commit
13b7004fa4
2 changed files with 0 additions and 6 deletions
|
|
@ -59,11 +59,6 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// AltBeacon library for native beacon scanning
|
||||
implementation("org.altbeacon:android-beacon-library:2.20.6")
|
||||
}
|
||||
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
||||
|
|
|
|||
1
android/app/proguard-rules.pro
vendored
1
android/app/proguard-rules.pro
vendored
|
|
@ -1,6 +1,5 @@
|
|||
# Keep beacon library classes
|
||||
-keep class com.flutterbeacon.** { *; }
|
||||
-keep class org.altbeacon.** { *; }
|
||||
|
||||
# Keep Bluetooth classes
|
||||
-keep class android.bluetooth.** { *; }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue