Skip to content

Commit 6516ca4

Browse files
committed
Fix broken install task due to module renaming
We renamed the core library module to ‘library’, but since this becomes the artifact name, this broke everything horribly. I renamed the parent project to `rxandroid-project` and the library module back to `rxandroid`
1 parent 7e4b433 commit 6516ca4

File tree

49 files changed

+4
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4
-3
lines changed
File renamed without changes.

samples-build-wrapper/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
apply plugin: 'java'
2+
apply plugin: 'maven'
23

3-
tasks.assemble.doLast {
4+
tasks.install.doLast {
45
def androidHome = System.getenv("ANDROID_HOME")
56
if (androidHome) {
67
println "Found ANDROID_HOME at $androidHome"

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
rootProject.name='rxandroid'
2-
include 'library', 'samples-build-wrapper'
1+
rootProject.name='rxandroid-project'
2+
include 'rxandroid', 'samples-build-wrapper'

0 commit comments

Comments
 (0)