While debugging the app Bluetooth is scanning and identifying near by devices. In release mode, it's not working.
While debugging the app Bluetooth is scanning and identifying near by devices. In release mode, it's not working.
Add the following code in [Project-Name]/android/app/build.gradle
buildTypes {
release {
signingConfig signingConfigs.release
shrinkResources false // this line
minifyEnabled false // this line
}
}