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:
John Mizerek 2026-01-27 08:33:21 -08:00
parent 982152383a
commit 13b7004fa4
2 changed files with 0 additions and 6 deletions

View file

@ -59,11 +59,6 @@ android {
}
}
dependencies {
// AltBeacon library for native beacon scanning
implementation("org.altbeacon:android-beacon-library:2.20.6")
}
flutter {
source = "../.."
}

View file

@ -1,6 +1,5 @@
# Keep beacon library classes
-keep class com.flutterbeacon.** { *; }
-keep class org.altbeacon.** { *; }
# Keep Bluetooth classes
-keep class android.bluetooth.** { *; }