1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//dexOptions 추가 : OutOfMemoryError
dexOptions {
jumboMode true
javaMaxHeapSize "4g"
}
 
dataBinding {
enabled = true
}
 
//이미지 캐싱 로드
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'jp.wasabeef:glide-transformations:2.0.0'
 
//스와이프 새로고침
implementation 'com.github.orangegangsters:swipy:1.2.2@aar'
 
//퍼미션체크
implementation 'com.github.ParkSangGwon:TedPermission:v1.0.11'
 
//이미지슬라이더
implementation 'com.daimajia.slider:library:1.1.5@aar'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.nineoldandroids:library:2.4.0'
 
//사진
implementation 'com.github.bumptech.glide:glide:3.7.0'
 
//아바타
implementation 'jp.wasabeef:glide-transformations:2.0.0'
 
//파일 업로드
implementation 'com.commonsware.cwac:provider:0.5.0'
 
//이미지 크롭
implementation 'com.yalantis:ucrop:2.2.0'
cs

+ Recent posts