반응형
1. 구글 Material
implementation 'com.google.android.material:material:1.2.0-alpha02'
2. lombok
https://projectlombok.org/setup/gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
}
3. 원형 이미지
implementation 'de.hdodenhof:circleimageview:3.1.0'
4. eval() 함수
github.com/APISENSE/rhino-android
implementation 'io.apisense:rhino-android:1.1.1'
5. Retrofit2
https://square.github.io/retrofit/
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
6. Gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
7. Picasso
https://square.github.io/picasso/#download
implementation 'com.squareup.picasso:picasso:2.71828'
8. 깎인 사각형
implementation 'com.makeramen:roundedimageview:2.3.0'
반응형
'Android' 카테고리의 다른 글
Android / 액션바 삭제하기 (0) | 2020.07.21 |
---|---|
Android / 원형 이미지 구현하기 (0) | 2020.07.21 |
Android / 레이아웃의 종류 (0) | 2020.07.14 |
Android / 뷰(View) (0) | 2020.07.14 |
Android / 안드로이드 스튜디오 개발환경셋팅 (0) | 2020.07.08 |