정보를 보호하는 대학생

<안드로이드 오류 01> 안드로이드 스튜디오 SDK 오류 해결 본문

개발/안드로이드 오류 리포트

<안드로이드 오류 01> 안드로이드 스튜디오 SDK 오류 해결

정보를 보호하는 대학생 2022. 1. 6. 22:09

처음 깔고 실행하려는데 SDK 오류가 났다.

읽어보니까 버전 관련한 오류같다.

구글링 해서 나온 방법을 도합해서 이것저것 테스트 해 본 결과,

두번째 build.gradle의 내용을 모두 지우고 이 내용으로 대체하면 정상적으로 실행이 된다.

상단의 sync now를 눌러줘야 완료된다.

 

plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig {
        configurations.all {
            resolutionStrategy { force 'androidx.core:core-ktx:1.6.0' }
        }
        applicationId "com.android.myapplication"
        minSdkVersion 24
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation "androidx.core:core-ktx:1.6.0"
    implementation 'androidx.appcompat:appcompat:1.3.0'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}