Reputation: 415
I am trying an example from https://github.com/koush/ion to use Ion for downloading files.
But unfortunately I do not know how should I add Ion to my project. Should I download it to the android studio folder? If so how should I do it? I really appreciate explanation in details.
I am using Android Studio 2.3.3
Build #AI-162.4069837, built on June 6, 2017
JRE: 1.8.0_112-release-b06 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
on windows 10 and I can not change it to any newer version.
Please excuse me if my question is trivial, I am very new to Android and Android studio and I would appreciate any help.
Upvotes: 0
Views: 1020
Reputation: 415
The instruction below, solved my issue
In build.gradle(module:app) in dependencies
add:
compile 'com.koushikdutta.ion:ion:2.1.6
and in build.gradle(project:XXX) where XXX is the name of the project in dependencies
add:
classpath 'com.koushikdutta.ion:ion:2.1.6'
Of course I am using a specific version of Android studio with a custom SDK. So my solution might not work for every one!
Upvotes: 1
Reputation: 118
You need to add the library in your build.gradle
Gradle
dependencies {
compile 'com.koushikdutta.ion:ion:(insert latest version)'
}
Upvotes: 1