I am creating an Android application in which I want to use ActiveAndroid ORM . In the readme, I read instructions on how to enable it in Maven or ADT, but I am using / trying to learn Android Studio using Gradle. Therefore, I think I need to insert ActiveAndroid into the dependency. in my build.gradle file in these lines:
dependencies {
compile 'com.android.support:appcompat-v7:+'
}
I really don't know which line / url I should use so that Gradle can automatically find ActiveAndroid and compile it in my project.
Syknee, I'm lost; can someone give me advice here how should i deal with this?
[EDIT] I now built a jar and compiled it using the suggested one compile files('libs/ActiveAndroid.jar')(I don't have the version name in my jar file). Now it works successfully, but I still cannot import classes from it. See image below:

source
share