투케이2K

682. (Android/안드로이드) [간단 소스] Android X 마이그레이션 시 (SDK 30) 필요한 build.gradle implementation 모음 본문

Android

682. (Android/안드로이드) [간단 소스] Android X 마이그레이션 시 (SDK 30) 필요한 build.gradle implementation 모음

투케이2K 2023. 11. 8. 21:04

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

 

    // -------------------------------------------------
    // TODO [Android X 마이그레이션]
    // -------------------------------------------------
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.annotation:annotation:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

 

반응형
Comments