├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ ├── Apache.xml │ └── profiles_settings.xml ├── gradle.xml ├── kotlinc.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── _config.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── phoenixlib │ │ └── io │ │ └── rxfirebase │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ ├── SampleActivity.java │ │ └── phoenixlib │ │ │ └── io │ │ │ └── rxfirebase │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── phoenixlib │ └── io │ └── rxfirebase │ └── ExampleUnitTest.java ├── docs ├── _config.yml └── javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── phoenixlib │ └── io │ │ └── rxfirebase │ │ ├── auth │ │ ├── RxAuth.html │ │ ├── RxUser.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ └── database │ │ ├── EventType.html │ │ ├── RxDatabase.html │ │ ├── ValueEvent.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── script.js │ └── stylesheet.css ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── rxfirebase ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── phoenixlib │ │ └── io │ │ └── rxfirebase │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── phoenixlib │ │ │ └── io │ │ │ └── rxfirebase │ │ │ ├── auth │ │ │ ├── AuthStateObservable.java │ │ │ ├── RxAuth.java │ │ │ ├── RxUser.java │ │ │ ├── TaskCompletable.java │ │ │ └── TaskObservable.java │ │ │ └── database │ │ │ ├── ChildEventObservable.java │ │ │ ├── DataSnapshotMapper.java │ │ │ ├── EventType.java │ │ │ ├── RxDatabase.java │ │ │ ├── SingleEventObservable.java │ │ │ ├── ValueEvent.java │ │ │ └── ValueEventObservable.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── phoenixlib │ └── io │ └── rxfirebase │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/Apache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/copyright/Apache.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/_config.yml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/phoenixlib/io/rxfirebase/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/androidTest/java/phoenixlib/io/rxfirebase/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/SampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/java/SampleActivity.java -------------------------------------------------------------------------------- /app/src/main/java/phoenixlib/io/rxfirebase/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/java/phoenixlib/io/rxfirebase/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/phoenixlib/io/rxfirebase/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/app/src/test/java/phoenixlib/io/rxfirebase/ExampleUnitTest.java -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /docs/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/constant-values.html -------------------------------------------------------------------------------- /docs/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /docs/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/help-doc.html -------------------------------------------------------------------------------- /docs/javadoc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/index-all.html -------------------------------------------------------------------------------- /docs/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/index.html -------------------------------------------------------------------------------- /docs/javadoc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/overview-frame.html -------------------------------------------------------------------------------- /docs/javadoc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/overview-summary.html -------------------------------------------------------------------------------- /docs/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/overview-tree.html -------------------------------------------------------------------------------- /docs/javadoc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/package-list -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/auth/RxAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/auth/RxAuth.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/auth/RxUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/auth/RxUser.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/auth/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/auth/package-frame.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/auth/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/auth/package-summary.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/auth/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/auth/package-tree.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/EventType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/EventType.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/RxDatabase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/RxDatabase.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/ValueEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/ValueEvent.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/package-frame.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/package-summary.html -------------------------------------------------------------------------------- /docs/javadoc/phoenixlib/io/rxfirebase/database/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/phoenixlib/io/rxfirebase/database/package-tree.html -------------------------------------------------------------------------------- /docs/javadoc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/script.js -------------------------------------------------------------------------------- /docs/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/docs/javadoc/stylesheet.css -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/gradlew.bat -------------------------------------------------------------------------------- /rxfirebase/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /rxfirebase/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/build.gradle -------------------------------------------------------------------------------- /rxfirebase/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/proguard-rules.pro -------------------------------------------------------------------------------- /rxfirebase/src/androidTest/java/phoenixlib/io/rxfirebase/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/androidTest/java/phoenixlib/io/rxfirebase/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /rxfirebase/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/AuthStateObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/AuthStateObservable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/RxAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/RxAuth.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/RxUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/RxUser.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/TaskCompletable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/TaskCompletable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/TaskObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/auth/TaskObservable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ChildEventObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ChildEventObservable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/DataSnapshotMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/DataSnapshotMapper.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/EventType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/EventType.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/RxDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/RxDatabase.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/SingleEventObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/SingleEventObservable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ValueEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ValueEvent.java -------------------------------------------------------------------------------- /rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ValueEventObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/java/phoenixlib/io/rxfirebase/database/ValueEventObservable.java -------------------------------------------------------------------------------- /rxfirebase/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /rxfirebase/src/test/java/phoenixlib/io/rxfirebase/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinarytree/RxFirebase/HEAD/rxfirebase/src/test/java/phoenixlib/io/rxfirebase/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':rxfirebase' --------------------------------------------------------------------------------