Compare commits

...

1 Commits

Author SHA1 Message Date
Eric Kuck 6dfc5839cc Fixed maven central artifacts 2016-05-12 10:36:54 -05:00
5 changed files with 11 additions and 11 deletions
+7 -7
View File
@@ -20,21 +20,21 @@ Conductor is architecture-agnostic and does not try to force any design decision
## Installation
```gradle
compile 'com.bluelinelabs:conductor:1.1.5'
compile 'com.bluelinelabs:conductor:1.1.6'
// If you want the components that go along with
// Android's support libraries (currently just a PagerAdapter):
compile 'com.bluelinelabs:conductor-support:1.1.5'
compile 'com.bluelinelabs:conductor-support:1.1.6'
// If you want RxJava/RxAndroid lifecycle support:
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.5'
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.6'
```
SNAPSHOT:
```gradle
compile 'com.bluelinelabs:conductor:1.1.6-SNAPSHOT'
compile 'com.bluelinelabs:conductor-support:1.1.6-SNAPSHOT'
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.6-SNAPSHOT'
compile 'com.bluelinelabs:conductor:1.1.7-SNAPSHOT'
compile 'com.bluelinelabs:conductor-support:1.1.7-SNAPSHOT'
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.7-SNAPSHOT'
```
## Components to Know
@@ -116,7 +116,7 @@ The lifecycle of a Controller is significantly simpler to understand than that o
`addChildController` can be called on a `Controller` in order to add nested `Controller`s. Child `Controller`s will receive all lifecycle callbacks that parents get.
### RxJava Lifecycle
If the RxLifecycle dependency has been added, there is an `RxController` available that can be used along with the standard [RxLifecycle library](https://github.com/trello/RxLifecycle). There is also a `ControllerLifecycleProvider` available if you do not wish to use this subclass.
If the RxLifecycle dependency has been added, there is an `RxController` available that can be used along with the standard [RxLifecycle library](https://github.com/trello/RxLifecycle). There is also a `ControllerLifecycleProvider` available if you do not wish to use this subclass.
## License
```
+1 -1
View File
@@ -1,3 +1,3 @@
POM_NAME=Conductor RxLifecycle Extensions
POM_ARTIFACT_ID=conductor-rxlifecycle
POM_PACKAGING=jar
POM_PACKAGING=aar
+1 -1
View File
@@ -1,3 +1,3 @@
POM_NAME=Conductor Support Extensions
POM_ARTIFACT_ID=conductor-support
POM_PACKAGING=jar
POM_PACKAGING=aar
+1 -1
View File
@@ -1,3 +1,3 @@
POM_NAME=Conductor
POM_ARTIFACT_ID=conductor
POM_PACKAGING=jar
POM_PACKAGING=aar
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=1.1.6-SNAPSHOT
VERSION_NAME=1.1.7-SNAPSHOT
VERSION_CODE=2
GROUP=com.bluelinelabs