카테고리 없음

안드로이드 빌드 API 버젼 변경 방법

바람사탕 2024. 4. 27. 23:45
반응형

minSdkVersion 변경하라는데, 안보임...

android {
    compileSdk 21

    defaultConfig {
        applicationId "com.example.wd3"
        minSdk 22
        targetSdk 22
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

 

File -> Project Structure...
Ctrl+Alt+Shift+S

 

Modules -> app

 

 

반응형