[안드로이드]The application's minSdkVersion is newer than the device API level.

코딩생활

[안드로이드]The application's minSdkVersion is newer than the device API level.

열렙생활 2021. 1. 14. 03:41
반응형

 

문제:

새로운 안드로이드 프로젝트를 생성하고 후 빌드할때 다음과 같은 에러가 발생했다. 

 

Installation did not succeed.
The application could not be installed: INSTALL_FAILED_OLDER_SDK

 

List of apks:

The application's minSdkVersion is newer than the device API level.

 

 

원인:

프로젝트의 요구 Sdk 버전이 가상머신의 버전보다 높다.

 

 

 

해결:

Gradle Scripts > build.gradle (Module: app)  수정한다.

변경 전:

변경 후:

반응형