블루투스를 사용하여 통신하는 앱에 대한 flutter 프로젝트를 시작하려고했습니다. 이를 위해 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을 높이는 방법을 알고 있었지만 flutter 프로젝트 (VSCode 사용)에서는 약간 길을 잃었습니다.
flutter로 minSdkVersion을 늘릴 수 있습니까?