Skip to content

Commit

Permalink
update glide version
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfusheng committed Sep 23, 2018
1 parent 9052e70 commit 4fb7891
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
8 changes: 4 additions & 4 deletions GlideImageView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ android {

dependencies {
api "com.android.support:support-v4:$rootProject.supportLibraryVersion"
api 'com.github.bumptech.glide:glide:4.7.1'
api 'com.github.bumptech.glide:annotations:4.7.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
api "com.github.bumptech.glide:okhttp3-integration:4.7.1"
api 'com.github.bumptech.glide:glide:4.8.0'
api 'com.github.bumptech.glide:annotations:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
api "com.github.bumptech.glide:okhttp3-integration:4.8.0"
}

publish {
Expand Down
5 changes: 2 additions & 3 deletions Sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def generateApk(variant) {
if (variant.buildType.name == "release") {
variant.getPackageApplication().outputDirectory = new File(project.rootDir.absolutePath + "/Sample/outputs")
variant.getPackageApplication().outputScope.apkDatas.forEach { apkData ->
apkData.outputFileName = "GlideImageView_V${apkData.versionName}.apk"
apkData.outputFileName = "GlideImageView.apk"
}
}
}
Expand All @@ -68,7 +68,6 @@ dependencies {
api 'com.android.support.constraint:constraint-layout:1.1.2'
api 'com.github.chrisbanes:PhotoView:2.1.3'

api 'com.sunfusheng:FirUpdater:1.0.8'
// api 'com.sunfusheng:GlideImageView:2.0.0'
api 'com.sunfusheng:FirUpdater:1.1.0'
api project(':GlideImageView')
}
10 changes: 5 additions & 5 deletions Sample/src/main/assets/about.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#### GlideImageView
该库是基于[Glide](https://github.com/bumptech/glide) V4.0设计的,实现如下特性:<br/>
1、通过提供的属性可以设置图片的圆角、边框。<br/>
2、可以设置点击触摸图片时的颜色、透明度。<br/>
3、一行代码加载来自网络、res、SDCard中的图片,可加载成圆形。<br/>
4、可以监听加载图片时的进度。<br/>
#### 该库是基于[Glide](https://github.com/bumptech/glide) V4.7.1设计的,实现如下特性:<br/>
1、监听加载网络图片的进度<br/>
2、动态加载成有弧度的图片、圆形图片、高斯模糊图片更方便<br/>
3、链式设置触摸图片的透明度和非使能的透明度<br/>
4、增加九宫格控件,具体使用参考[NineImageViewActivity](https://github.com/sfsheng0322/GlideImageView/blob/master/Sample/src/main/java/com/sunfusheng/glideimageview/sample/NineImageViewActivity.java)<br/>

#### GitHub地址

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.novoda:bintray-release:0.8.0'
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.novoda:bintray-release:0.8.1'
}
}

Expand All @@ -36,6 +36,6 @@ ext {

minSdkVersion = 14
targetSdkVersion = 27
versionCode = 5
versionName = "2.0.0"
versionCode = 6
versionName = "2.0.1"
}

0 comments on commit 4fb7891

Please sign in to comment.