Reputation: 7105
flutter_blue: ^0.7.2
flutter_blue works fine in debug mode and detects and scans for available Bluetooth devices but does not detect Bluetooth device after building the release APK
says Bluetooth device not found
Upvotes: 1
Views: 1859
Reputation: 1643
It maybe catches an error in the release mode, please use this command for getting apk:
flutter clean
And then
flutter build apk --no-shrink
And also you can use this command flutter run release
for debugging in the release mode
Upvotes: 1