Skip to content

Instantly share code, notes, and snippets.

@patrickhammond
Created July 6, 2015 14:11
Show Gist options
  • Save patrickhammond/555ef83c938893872238 to your computer and use it in GitHub Desktop.
Save patrickhammond/555ef83c938893872238 to your computer and use it in GitHub Desktop.
Including AARs in your project. Works with build tools com.android.tools.build:gradle:1.2.3 and gradle-2.4.
repositories {
...
flatDir {
dirs 'aars'
}
...
}
dependencies {
...
compile 'com.urbanairship:urbanairship-lib:5.1.5@aar'
...
}
/
app/
aars/
urbanairship-lib-5.1.5.aar
build.gradle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment