Skip to content
This repository has been archived by the owner on Aug 17, 2020. It is now read-only.

Commit

Permalink
Disable BuildConfig generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 12, 2018
1 parent dae3476 commit eff60d2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sqlbrite-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ android {
textOutput 'stdout'
textReport true
}

// TODO replace with https://issuetracker.google.com/issues/72050365 once released.
libraryVariants.all {
it.generateBuildConfig.enabled = false
}
}

apply from: rootProject.file('gradle/gradle-mvn-push.gradle')
5 changes: 5 additions & 0 deletions sqlbrite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ android {
textOutput 'stdout'
textReport true
}

// TODO replace with https://issuetracker.google.com/issues/72050365 once released.
libraryVariants.all {
it.generateBuildConfig.enabled = false
}
}

apply from: rootProject.file('gradle/gradle-mvn-push.gradle')

0 comments on commit eff60d2

Please sign in to comment.