본문 바로가기
Android

Android / AndroidX gradle 모음

by LWM 2020. 7. 15.
반응형

1. 구글 Material

https://github.com/material-components/material-components-android/blob/master/docs/getting-started.md

 

material-components/material-components-android

Modular and customizable Material Design UI components for Android - material-components/material-components-android

github.com

implementation 'com.google.android.material:material:1.2.0-alpha02'

 

 

 

2. lombok

https://projectlombok.org/setup/gradle

 

Gradle

 

projectlombok.org

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

 

APISENSE/rhino-android

Give access to RhinoScriptEngine from the JSR223 interfaces on Android JRE. - APISENSE/rhino-android

github.com

implementation 'io.apisense:rhino-android:1.1.1'

 

 

 

5. Retrofit2

https://square.github.io/retrofit/

 

Retrofit

A type-safe HTTP client for Android and Java

square.github.io

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

 

Picasso

Introduction Images add much-needed context and visual flair to Android applications. Picasso allows for hassle-free image loading in your application—often in one line of code! Picasso.get().load("http://i.imgur.com/DvpvklR.png").into(imageView); Many c

square.github.io

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