Skip to content

Commit

Permalink
Merge pull request #25 from NickM-27/develop
Browse files Browse the repository at this point in the history
Upgraded to glide 4
  • Loading branch information
NickM-27 authored Feb 1, 2019
2 parents 174f107 + 8de986f commit eb553da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ On your module's `build.gradle` file add this statement to the `dependencies` se

```groovy
dependencies {
implementation 'com.nick.mowen.linkpreview:linkpreview:2.1'
implementation 'com.nick.mowen.linkpreview:linkpreview:2.3'
}
```

Expand Down
11 changes: 6 additions & 5 deletions linkpreview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
versionCode 17
versionName "2.2"
versionCode 18
versionName "2.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -32,15 +32,16 @@ dependencies {

//Other
implementation 'org.jsoup:jsoup:1.11.3'
//noinspection GradleDependency
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'com.github.bumptech.glide:glide:4.8.0'

//Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0'
implementation 'androidx.core:core-ktx:1.0.1'

kapt 'com.github.bumptech.glide:compiler:4.8.0'

//Testing libraries
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.2.31'
androidTestImplementation 'androidx.test:runner:1.1.1'
Expand All @@ -54,7 +55,7 @@ ext {

publishedGroupId = 'com.nick.mowen.linkpreview'
artifact = 'linkpreview'
libraryVersion = '2.2'
libraryVersion = '2.3'
libraryDescription = 'A convenient view that shows a clickable preview of a link'
siteUrl = 'https://github.com/NickM-27/LinkPreview'
gitUrl = 'https://github.com/NickM-27/LinkPreview.git'
Expand Down

0 comments on commit eb553da

Please sign in to comment.