File tree Expand file tree Collapse file tree 9 files changed +18
-18
lines changed
Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ allprojects {
2424 maven { url ' https://dl.bintray.com/kotlin/kotlin-eap' }
2525 }
2626
27+ // Disable BuildConfig generation for Android library modules so javac can be skipped altogether.
28+ plugins. whenPluginAdded {
29+ if (it instanceof LibraryPlugin ) {
30+ extensions. getByType(LibraryExtension ). libraryVariants. all {
31+ // TODO replace with https://issuetracker.google.com/issues/72050365 once released.
32+ it. generateBuildConfig. enabled = false
33+ }
34+ }
35+ }
36+
2737 group = " net.xpece.androidx.optical"
2838}
2939
3040task clean (type : Delete ) {
3141 delete rootProject. buildDir
3242}
33-
34- // Disable BuildConfig generation for Android library modules so javac can be skipped altogether.
35- plugins. whenPluginAdded {
36- if (it instanceof LibraryPlugin ) {
37- extensions. getByType(LibraryExtension ). libraryVariants. all {
38- // TODO replace with https://issuetracker.google.com/issues/72050365 once released.
39- it. generateBuildConfig. enabled = false
40- }
41- }
42- }
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ dependencies {
4848
4949apply from : rootProject. file(' android-tasks.gradle' )
5050
51- version = ' 1.0.0 '
51+ version = ' 1.0.1 '
5252
5353publishing {
5454 publications {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies {
1616sourceCompatibility = " 6"
1717targetCompatibility = " 6"
1818
19- version = ' 1.0.0 '
19+ version = ' 1.0.1 '
2020
2121publishing {
2222 publications {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ dependencies {
4343
4444apply from : rootProject. file(' android-tasks.gradle' )
4545
46- version = ' 1.0.0 '
46+ version = ' 1.0.1 '
4747
4848publishing {
4949 publications {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies {
4040 testImplementation " org.jetbrains.kotlin:kotlin-test:$kotlin_version "
4141}
4242
43- version = ' 1.0.0 '
43+ version = ' 1.0.1 '
4444
4545apply from : rootProject. file(' android-tasks.gradle' )
4646
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ dependencies {
3838 testImplementation " org.robolectric:robolectric:3.8"
3939}
4040
41- version = ' 1.0.0 '
41+ version = ' 1.0.1 '
4242
4343apply from : rootProject. file(' android-tasks.gradle' )
4444
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ dependencies {
3838 testImplementation " org.robolectric:robolectric:3.8"
3939}
4040
41- version = ' 1.0.0 '
41+ version = ' 1.0.1 '
4242
4343apply from : rootProject. file(' android-tasks.gradle' )
4444
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies {
4040 testImplementation " org.robolectric:robolectric:3.8"
4141}
4242
43- version = ' 1.0.0 '
43+ version = ' 1.0.1 '
4444
4545apply from : rootProject. file(' android-tasks.gradle' )
4646
You can’t perform that action at this time.
0 commit comments