Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy-budiyev committed Feb 28, 2018
1 parent d000bc8 commit b773eb1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Image loader library for Android.
### Usage
```gradle
dependencies {
implementation 'com.budiyev.android:image-loader:2.4.1'
implementation 'com.budiyev.android:image-loader:2.5.0'
}
```
### Basic usage sample
Expand All @@ -34,7 +34,7 @@ public class MainActivity extends AppCompatActivity {
// Advanced usage
ImageLoader.with(this)
/*Create new load request for specified data.
Data types supported by default: Android URIs (remote and local),
Data types supported by default: URIs (remote and local),
files, file descriptors, resources and byte arrays.*/
.from("https://some.url/image")
/*Required image size (to load sampled bitmaps)*/
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'com.jfrog.bintray'
ext {
libraryName = 'ImageLoader'
libraryDescription = 'Image loader tool for Android'
libraryVersion = '2.4.1'
libraryVersion = '2.5.0'
artifact = 'image-loader'
developerId = 'yuriy-budiyev'
developerName = 'Yuriy Budiyev'
Expand All @@ -46,7 +46,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 81
versionCode 82
versionName libraryVersion
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public final class ImageLoader {
* <br><br>
* <b>Data types, supported by default:</b>
* <ul>
* <li>{@link Uri}, {@link String} - Android URI</li>
* <li>{@link Uri}, {@link String} - URI (remote and local)</li>
* <li>{@link File} - File</li>
* <li>{@link Integer} - Android resource</li>
* <li>{@link FileDescriptor} - File descriptor</li>
Expand Down

0 comments on commit b773eb1

Please sign in to comment.