Skip to content

Instantly share code, notes, and snippets.

@bjoernQ
Created November 5, 2014 08:08
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoernQ/2fe58fc28345cfc5db0a to your computer and use it in GitHub Desktop.
Save bjoernQ/2fe58fc28345cfc5db0a to your computer and use it in GitHub Desktop.
Android/Gradle: Have debug and release variants for a library
...
dependencies {
debugCompile project(path: ':library', configuration: 'debug')
releaseCompile project(path: ':library', configuration: 'release')
}
...
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