Skip to content

Instantly share code, notes, and snippets.

@chowaikong
Created September 25, 2019 15:55
Show Gist options
  • Save chowaikong/4b28c6a7df8a51bafd7d5cbfad683fe1 to your computer and use it in GitHub Desktop.
Save chowaikong/4b28c6a7df8a51bafd7d5cbfad683fe1 to your computer and use it in GitHub Desktop.
allprojects { project ->
project.plugins.withType(com.android.build.gradle.LibraryPlugin) { plugin ->
project.android.libraryVariants.all { variant ->
// TODO replace with https://issuetracker.google.com/issues/72050365 once released.
variant.generateBuildConfigProvider.configure { task ->
task.enabled = false
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment