1. 구글
implementation 'com.google.android.material:material:1.2.0-alpha05'
2. lombok
https://projectlombok.org/setup/gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
}
3. Retrofit2
https://square.github.io/retrofit/
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
주의 : Retrofit은 다음의 컨버터를 필요로 한다.
ex) Gson의 gradle code
https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
4. Picasso
https://square.github.io/picasso/
https://github.com/square/picasso
implementation 'com.squareup.picasso:picasso:2.71828'
5. Room
def room_version = "2.2.5"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version" // For Kotlin use kapt instead of annotationProcessor
6. Glide
https://github.com/bumptech/glide
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
반응형
'기타' 카테고리의 다른 글
안드로이드 개발자]경력 기술면접 질문들 정리 (0) | 2024.06.21 |
---|---|
슬럼프? (0) | 2022.09.19 |
test (0) | 2021.02.25 |
안드로이드 개발에 유용한 사이트 (0) | 2020.07.08 |