Android Studio fail add libs Universal Image Loader
Asked Answered
C

4

11

Android-Universal-Image-Loader(https://github.com/nostra13/Android-Universal-Image-Loader) is my favorite library.

But it can't add libs when i use Android Studio(use 0.1.5 version).

i know how to add libs in Android Studio (https://mcmap.net/q/48695/-android-studio-add-jar-as-library)

when i add Android-Universal-Image-Loader libs to Android Studio. Editor error about "can't reslove R". i try this Max OSX(i try too Windows but fail. Windows error message => "Gradle: error: package com.nostra13.universalimageloader.core does not exist". but Editor no error message. only show when i run application)

other libs like Gson no problem. but only Android-Universal-Image-Loader have this problem.

Your Android Studio success add Android-Universal-Image-Loader? if success tell me how to.

Cofer answered 19/6, 2013 at 5:29 Comment(2)
are you adding jar file?Varga
I will suggest then add those source code. java files and packages.Varga
N
23

I just added the universal-image-loader like this:

Firstly download the universal-image-loader-1.8.5-with-sources.jar.

(For 5/2014. universal-image-loader-1.9.2.jar works great. Don't need the "with-sources" file.)

Then put it on my MyAppProject/MyApp/libs.

Right clicking on universal-image-loader-1.8.5-with-sources.jar i add it as a library with the default configuration.

Finally on MyAppProject/MyApp/build.gradle add the following:

dependencies {
compile files('libs/universal-image-loader-1.8.5-with-sources.jar')
}
Nipissing answered 8/7, 2013 at 7:39 Comment(0)
A
8

From the error "package com.nostra13.universalimageloader.core does not exist", it seems like you have not added the source as the library. Right click the "universal-image-loader-1.8.4.jar" file under the libs folder and from the context menu, click "Add as a library" option.

If after this you are getting the "ClassDefNotFoundException", please follow the following steps:

  1. Add the library to the project.
  2. Edit your Gradle build file and add the dependency for the UIL in it Add dependency in build.gradle
  3. Close Android Studio
  4. Open command prompt and go to the project's root folder (you will find 'gradlew' file there) and clean your build by issuing the clean command C:\CarApplicationProject> gradlew clean
  5. Restart Android Studio.
Aceae answered 20/6, 2013 at 21:38 Comment(1)
No need to do gradlew clean, you can just go to build->rebuild project and it will clean etc for you without the need to restart android studio at allShade
D
3

1.Put the jar (in my case, gson-2.2.4.jar) into the libs folder.

2.Ensure that compile files ('libs/gson-2.2.4.jar') is in your build.gradle file.

3.Now Click on the "Sync Project with Gradle files"(Left to AVD manager Button on the topbar).

After I did the above three, it started working fine.

Diviner answered 7/4, 2014 at 10:2 Comment(0)
B
2

There are two ways to use Universal Image Loader

  1. By downloading Jar and add it to lib folder and

    compile files('libs/universal-image-loader-1.9.5-with-sources.jar')

  2. Simply add gradle dependency

    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

And here is a quick tutorial link

Bendigo answered 2/7, 2016 at 9:47 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.