728x90
반응형
SMALL
* 이전 Android Studio repositories path :
buildscript {
ext.kotlin_version = "1.4.10"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
...
* 최근 Android Studio repositories path :
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "My Application"
include ':app'
'Android Study' 카테고리의 다른 글
현재 메소드 이름 가져오기(커스텀 주석) (0) | 2022.07.06 |
---|---|
AndroidStudio 다중 모듈 코드 볼때 팁! (0) | 2022.06.17 |
Firebase App Distribution Test build 자동배포 방법 (0) | 2022.05.13 |
Android App 개발시 알아두면 좋을듯함 (0) | 2022.05.03 |
Firebase build, Token 설정할때 export 에러 (0) | 2022.05.02 |