Skip to content

Commit

Permalink
Updated library version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
aminography committed Oct 23, 2022
1 parent 5320956 commit 80d25fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,15 @@ Sometimes the images you want to show with `Glide` have indirect link and you sh

Download
--------
Add the following lines to your `build.gradle` file:
`RedirectGlide` is available on MavenCentral to download using build tools systems. Add the following lines to your build.gradle file:

```gradle
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
repositories {
jcenter()
}
dependencies {
implementation 'com.aminography:redirectglide:2.0.1'
implementation 'com.aminography:redirectglide:2.1.0'
// Glide dependencies
implementation 'com.github.bumptech.glide:glide:4.11.0'
Expand All @@ -36,7 +32,7 @@ dependencies {
* If you write code in Java, you should also add kotlin dependency too:
```gradle
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.70'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:latest_version'
}
```

Expand Down
4 changes: 2 additions & 2 deletions scripts/versions.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// semantic versioning
def semantic = [
'major': 2,
'minor': 0,
'patch': 1,
'minor': 1,
'patch': 0,
]
ext.libVersion = [
'code': semantic.major * 1000000 + semantic.minor * 1000 + semantic.patch,
Expand Down

0 comments on commit 80d25fb

Please sign in to comment.