我试图用一个使用蓝牙进行通信的App开始一个颤动的项目.为此,我使用的是
flutter blue.
不幸的是,当我尝试运行(在Android设备上)我创建的第一个示例时遇到了以下错误:
FAILURE: Build Failed with an exception. * What went wrong: Execution Failed for task ':app:processDebugManifest'. > Manifest merger Failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:flutter_blue] /home/maldus/Projects/flutter/polmac/build/flutter_blue/intermediates/manifests/full/debug/AndroidManifest.xml as the library might be using APIs not available in 16 Suggestion: use a compatible library with a minSdk of at most 16,or increase this project's minSdk version to at least 19,or use tools:overrideLibrary="com.pauldemarco.flutterblue" to force usage (may lead to runtime failures)
如果我在Android Studio上,我知道如何提高Android minSdkVersion,但是在一个颤动的项目上(使用VSCode)我有点迷失.
是否可以通过颤振增加minSdkVersion,以及如何?