Created
November 5, 2014 08:08
-
-
Save bjoernQ/2fe58fc28345cfc5db0a to your computer and use it in GitHub Desktop.
Android/Gradle: Have debug and release variants for a library
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
... | |
dependencies { | |
debugCompile project(path: ':library', configuration: 'debug') | |
releaseCompile project(path: ':library', configuration: 'release') | |
} | |
... |
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
apply plugin: 'com.android.library' | |
android { | |
... | |
publishNonDefault true | |
... | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment