Created
July 6, 2015 14:11
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories { | |
... | |
flatDir { | |
dirs 'aars' | |
} | |
... | |
} | |
dependencies { | |
... | |
compile 'com.urbanairship:urbanairship-lib:5.1.5@aar' | |
... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ | |
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