Skip to content

Commit eb553da

Browse files
authored
Merge pull request #25 from NickM-27/develop
Upgraded to glide 4
2 parents 174f107 + 8de986f commit eb553da

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ On your module's `build.gradle` file add this statement to the `dependencies` se
1818

1919
```groovy
2020
dependencies {
21-
implementation 'com.nick.mowen.linkpreview:linkpreview:2.1'
21+
implementation 'com.nick.mowen.linkpreview:linkpreview:2.3'
2222
}
2323
```
2424

linkpreview/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
defaultConfig {
1010
minSdkVersion 19
1111
targetSdkVersion 28
12-
versionCode 17
13-
versionName "2.2"
12+
versionCode 18
13+
versionName "2.3"
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
1616
buildTypes {
@@ -32,15 +32,16 @@ dependencies {
3232

3333
//Other
3434
implementation 'org.jsoup:jsoup:1.11.3'
35-
//noinspection GradleDependency
36-
implementation 'com.github.bumptech.glide:glide:3.8.0'
35+
implementation 'com.github.bumptech.glide:glide:4.8.0'
3736

3837
//Kotlin
3938
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
4039
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.0'
4140
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0'
4241
implementation 'androidx.core:core-ktx:1.0.1'
4342

43+
kapt 'com.github.bumptech.glide:compiler:4.8.0'
44+
4445
//Testing libraries
4546
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.2.31'
4647
androidTestImplementation 'androidx.test:runner:1.1.1'
@@ -54,7 +55,7 @@ ext {
5455

5556
publishedGroupId = 'com.nick.mowen.linkpreview'
5657
artifact = 'linkpreview'
57-
libraryVersion = '2.2'
58+
libraryVersion = '2.3'
5859
libraryDescription = 'A convenient view that shows a clickable preview of a link'
5960
siteUrl = 'https://github.com/NickM-27/LinkPreview'
6061
gitUrl = 'https://github.com/NickM-27/LinkPreview.git'

0 commit comments

Comments
 (0)