This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change Log
22==========
33
4- Version 0.2.0 * (In Development )*
5- --------------------------------
4+ Version 0.2.0 * (2015-08-23 )*
5+ ----------------------------
66
77 * New modules!
88 * ` rxbinding-appcompat-v7 ` (and ` rxbinding-appcompat-v7-kotlin ` ) for the 'AppCompat Support Library':
@@ -43,6 +43,9 @@ Version 0.2.0 *(In Development)*
4343 * ` attaches ` - Attach indication.
4444 * ` attachEvents ` - Attach and detach events.
4545 * ` detaches ` - Detach indication.
46+ * Added ` @CheckResult ` to methods which will generate lint warnings if the return value is ignored.
47+ * Added ` @NonNull ` to methods to indicate to lint that they will never return null and added to parameters
48+ to indicate to lint for which arguments is null not allowed. Explicit null checks have been removed.
4649 * Update Kotlin modules to Kotlin v0.12.1230.
4750 * Update support library dependencies to v23.0.0.
4851 * Minimum SDK version is now 14 because reasons.
Original file line number Diff line number Diff line change @@ -8,10 +8,35 @@ RxJava binding APIs for Android UI widgets from the platform and support librari
88Download
99--------
1010
11+ Platform bindings:
1112``` groovy
12- compile 'com.jakewharton.rxbinding:rxbinding:0.1 .0'
13+ compile 'com.jakewharton.rxbinding:rxbinding:0.2 .0'
1314```
1415
16+ 'support-v4' library bindings:
17+ ``` groovy
18+ compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.2.0'
19+ ```
20+
21+ 'appcompat-v7' library bindings:
22+ ``` groovy
23+ compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.2.0'
24+ ```
25+
26+ 'design' library bindings:
27+ ``` groovy
28+ compile 'com.jakewharton.rxbinding:rxbinding-design:0.2.0'
29+ ```
30+
31+ 'recyclerview-v7' library bindings:
32+ ``` groovy
33+ compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.2.0'
34+ ```
35+
36+ Kotlin extension methods for all of the above libraries are available by appending ` -kotlin ` to the
37+ 'artifactId' of the dependency. For example, ` rxbinding-support-v4 ` becomes
38+ ` rxbinding-support-v4-kotlin ` .
39+
1540Snapshots of the development version are available in [ Sonatype's ` snapshots ` repository] [ snap ] .
1641
1742
Original file line number Diff line number Diff line change 11GROUP =com.jakewharton.rxbinding
2- VERSION_NAME =0.1.1-SNAPSHOT
2+ VERSION_NAME =0.2.0
33
44POM_DESCRIPTION =RxJava binding APIs for Android' s UI widgets.
55
You can’t perform that action at this time.
0 commit comments