我正在使用-
dependencies:
qrcode_reader: ^0.4.4
那是可用的最新版本。当我在手机上颤动时,它的工作原理非常好。但是,当我在Android Studio上进行Gradle Sync项目同步时,这给了我一个错误。我找不到针对该问题的任何解决方案。
这是错误-
Suggestion: use a compatible library with a minSdk of at most 1,
or increase this project's minSdk version to at least 16,
or use tools:overrideLibrary="com.matheusvillela.flutter.plugins.qrcodereader" to force usage (may lead to runtime failures)'''
答案 0 :(得分:0)
更新您的 app 的 build.gradle 文件,使其具有minSdkVersion 16
:
android {
compileSdkVersion 21
defaultConfig {
minSdkVersion 16
targetSdkVersion 16
}
...
}