Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
Dev: transitively export rxandroid as well
Browse files Browse the repository at this point in the history
  • Loading branch information
andriydruk committed Nov 27, 2017
1 parent cbc5822 commit c9a365b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ Embedded version:
My dnssd library:

```groovy
compile 'com.github.andriydruk:dnssd:0.9.4'
compile 'com.github.andriydruk:dnssd:0.9.5'
```

My rxdnssd library:

```groovy
compile 'com.github.andriydruk:rxdnssd:0.9.4'
compile 'com.github.andriydruk:rxdnssd:0.9.5'
```

My rxdnssd2 library:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.novoda:bintray-release:0.7.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
publish {
groupId = 'com.github.andriydruk'
artifactId = 'dnssd'
publishVersion = '0.9.4'
publishVersion = '0.9.5'
desc = 'Android library which is Rx wrapper for Apple DNSSD Java API'
licences = ['Apache-2.0']
website = 'https://github.com/andriydruk/RxDNSSD'
Expand Down
7 changes: 3 additions & 4 deletions rxdnssd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ android {
dependencies {
compile project(':library')

implementation 'io.reactivex:rxandroid:1.2.1'

// Transitively export that dependencies to other modules
//api 'com.github.andriydruk:dnssd:0.9.4'
//api 'com.github.andriydruk:dnssd:0.9.5'
api 'io.reactivex:rxandroid:1.2.1'
api 'io.reactivex:rxjava:1.3.4'
api 'com.android.support:support-annotations:27.0.1'

Expand All @@ -50,7 +49,7 @@ dependencies {
publish {
groupId = 'com.github.andriydruk'
artifactId = 'rxdnssd'
publishVersion = '0.9.4'
publishVersion = '0.9.5'
desc = 'Android library which is Rx wrapper for Apple DNSSD Java API'
licences = ['Apache-2.0']
website = 'https://github.com/andriydruk/RxDNSSD'
Expand Down

0 comments on commit c9a365b

Please sign in to comment.