Development Artist

[Flutter, Android, Issue] FAILURE: Build failed with an exception. Execution failed for task ':app:processDebugMainManifest'. Suggestion: use a compatible library with a minSdk of at most 16, or increase this project's minSdk version to at least 19. 본문

TroubleShooting/Flutter Issue

[Flutter, Android, Issue] FAILURE: Build failed with an exception. Execution failed for task ':app:processDebugMainManifest'. Suggestion: use a compatible library with a minSdk of at most 16, or increase this project's minSdk version to at least 19.

JMcunst 2022. 1. 14. 10:14
728x90
반응형

이슈

1. 플러터를 안드로이드 기기에서 빌드시 다음과 같은 이슈 발생.

 


해결

1. android > app > build.gradle 파일에 defaultConfig 안의 minSdkVersion을 기존의 flutter.minSdkVersion 에서 19 이상으로, targetSdkVersion을 기존의 flutter.targetSdkVersion에서 19 이상으로, (혹자는 27), 설정해준다. 


원인

1. 사용하는 라이브러리(Firebase)가 SDK 버전 19 이상에서 동작? 호환이 되는데, 사용했던 flutter.minSdkVersion은 16이였던 것이 이유 였다. 따라서, 최소 SDK 버전을 19이상으로 설정을 해주던지, 라이브러리를 SDK 버전 16이상에서 호환이 되게 끔 수정을 해야하는데, 최소 SDK 버전을 수정하였다. 

2. 최소 SDK 버전을 올리게 되면, 오래된 안드로이드 기종의 경우에는 지원이 안되는 점을 알아두면 좋다. 

728x90
반응형
Comments