flutter_qrcode_reader icon indicating copy to clipboard operation
flutter_qrcode_reader copied to clipboard

Uses unchecked or unsafe operations

Open Katekko opened this issue 6 years ago • 2 comments

image

This happens when I build for release!

Just a note, didnt crash my apk

Katekko avatar Jan 24 '19 12:01 Katekko

This error crashed my emulator. It works fine when I build the APK though

IrosTheBeggar avatar Feb 16 '19 08:02 IrosTheBeggar

Adding this line to my build.gradle file fixed the problem:

gradle.projectsEvaluated {
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:unchecked"
    }
}

IrosTheBeggar avatar Feb 16 '19 23:02 IrosTheBeggar