728x90
안드로이드 스튜디오 범블비(2021.1.1) 버전이 나오면서 build.gradle과 settings.gradle에 변화가 생겼습니다.
build.gradle에 있던 이런 부분이 settings.gradle 로 이동했습니다.
repositories {
google()
mavenCentral()
}
build.gradle의 classpath를 설정하던 이런 부분은
classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
이렇게 변경됐습니다.(app/build.gradle 아님)
plugins {
id 'com.android.application' version '7.1.1' apply false
id 'com.android.library' version '7.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
근데 build.gradle에는 콜론(:) 같은게 들어가면 컴파일 오류가 났습니다. 그래서 hilt를 넣으려면 setting.gradle에 이런 식으로 넣었어야 했는데
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'dagger.hilt.android.plugin') {
useModule("com.google.dagger:hilt-android-gradle-plugin:2.40.1")
}
}
}
hilt 2.41 버전이 나오면서부터는 build.gradle 에 이렇게 넣어주기만 하면 됩니다.
plugins {
...
id 'com.google.dagger.hilt.android' version '2.41' apply false
}
등등이 있습니다.
(광고1)
이젠 여기저기 있는 중고거래앱들을 번거롭게 일일이 찾아드릴 필요가 없이 '중고검색'앱 이거 하나만으로
중고장터거래 앱들의 원하는 아이템을 검색해 볼 수 있습니다.
https://play.google.com/store/apps/details?id=com.opensupport.UsedSearch
그럼,
공유합니다.
728x90
'개발 이야기' 카테고리의 다른 글
클론코딩 유튜브 사이트 따라 만들기(HTML+CSS 연습편) (0) | 2022.03.30 |
---|---|
갤럭시스토어에 '중고검색'앱 출시 경험 후기 (0) | 2022.03.13 |
AngularJS의 지원이 중단되었군요. (0) | 2022.01.17 |
BlueNRG-LP를 이용한 Bluetooth® Low Energy 5.0개발 (0) | 2021.12.25 |
비쥬얼스튜디오 코드 한글깨짐 환경설정 해결 (euc-kr 설정) (0) | 2021.12.23 |