bcko / flutter_qrcode_reader

Flutter qrcode reader
MIT License
233 stars 92 forks source link

Uses unchecked or unsafe operations #34

Open Katekko opened 5 years ago

Katekko commented 5 years ago

image

This happens when I build for release!

Just a note, didnt crash my apk

IrosTheBeggar commented 5 years ago

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

IrosTheBeggar commented 5 years ago

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

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