@@ -5,7 +5,7 @@ This project aims to provide a reusable instrument for asynchronous image loadin
5
5
![ Screenshot] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/UniversalImageLoader.png )
6
6
7
7
## Project News
8
- ** Upcoming changes in new UIL version (1.9.3 +)**
8
+ ** Upcoming changes in new UIL version (1.9.4 +)**
9
9
* Memory Cache redesign
10
10
* ** New API:** ` DisplayImageOptions.targetSize(ImageSize) `
11
11
* HTTP cache support
@@ -23,11 +23,11 @@ This project aims to provide a reusable instrument for asynchronous image loadin
23
23
Android 2.0+ support
24
24
25
25
## Downloads
26
- * ** [ universal-image-loader-1.9.2 .jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2 .jar ) ** (library; contains * .class files)
27
- * ** [ universal-image-loader-1.9.2 -sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2 -sources.jar ) ** (sources; contains * .java files)
28
- * ** [ universal-image-loader-1.9.2 -javadoc.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2 -javadoc.jar ) ** (Java docs; contains * .html files)
29
- * ** [ universal-image-loader-1.9.2 -with-sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2 -with-sources.jar ) ** (library with sources inside; contains * .class and * .java files)<br />_ Use this JAR if you use Eclipse. So you can see Java docs in tooltips._
30
- * ** [ universal-image-loader-sample-1.9.2 .apk] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.2 .apk ) ** (sample application)
26
+ * ** [ universal-image-loader-1.9.3 .jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 .jar ) ** (library; contains * .class files)
27
+ * ** [ universal-image-loader-1.9.3 -sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 -sources.jar ) ** (sources; contains * .java files)
28
+ * ** [ universal-image-loader-1.9.3 -javadoc.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 -javadoc.jar ) ** (Java docs; contains * .html files)
29
+ * ** [ universal-image-loader-1.9.3 -with-sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 -with-sources.jar ) ** (library with sources inside; contains * .class and * .java files)<br />_ Use this JAR if you use Eclipse. So you can see Java docs in tooltips._
30
+ * ** [ universal-image-loader-sample-1.9.3 .apk] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.3 .apk ) ** (sample application)
31
31
32
32
Latest snapshot of the library - ** [ here] ( https://github.com/nostra13/Android-Universal-Image-Loader/tree/master/sample/libs ) **
33
33
@@ -42,7 +42,7 @@ Latest snapshot of the library - **[here](https://github.com/nostra13/Android-Un
42
42
2 . Search problem solution on ** [ StackOverFlow] ( http://stackoverflow.com/questions/tagged/universal-image-loader ) **
43
43
3 . Ask your own question on ** [ StackOverFlow] ( http://stackoverflow.com/questions/tagged/universal-image-loader ) ** .<br />
44
44
** Be sure to mention following information** in your question (otherwise a question may be ignored):
45
- - UIL version (e.g. 1.9.2 )
45
+ - UIL version (e.g. 1.9.3 )
46
46
- Android version tested on (e.g. 2.1)
47
47
- your configuration (` ImageLoaderConfiguration ` )
48
48
- display options (` DisplayImageOptions ` )
@@ -57,7 +57,7 @@ If you have some **issues on migration** to newer library version - be sure to a
57
57
#### 1. Include library
58
58
59
59
** Manual:**
60
- * [ Download JAR] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2 .jar )
60
+ * [ Download JAR] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 .jar )
61
61
* Put the JAR in the ** libs** subfolder of your Android project
62
62
63
63
or
67
67
<dependency >
68
68
<groupId >com.nostra13.universalimageloader</groupId >
69
69
<artifactId >universal-image-loader</artifactId >
70
- <version >1.9.2 </version >
70
+ <version >1.9.3 </version >
71
71
</dependency >
72
72
```
73
73
74
74
or
75
75
76
76
** Gradle dependency:**
77
77
``` groovy
78
- compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.2 '
78
+ compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3 '
79
79
```
80
80
81
81
#### 2. Android Manifest
0 commit comments