├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── issue-feature-request.md └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml └── runConfigurations.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shreyaspatil │ │ └── livestream │ │ └── example │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── shreyaspatil │ │ │ └── livestream │ │ │ └── example │ │ │ ├── java │ │ │ ├── AsyncProcessor.java │ │ │ └── MainActivity.java │ │ │ └── kotlin │ │ │ ├── AsyncProcessor.kt │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.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 │ └── com │ └── shreyaspatil │ └── livestream │ └── example │ └── ExampleUnitTest.kt ├── assets ├── LiveStream-Anim.gif └── LiveStream-Kt.png ├── docs ├── livestream-kt │ ├── alltypes │ │ └── index.html │ ├── dev.shreyaspatil.livestream.data │ │ ├── -data-item │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── on-change-listener.html │ │ │ └── value.html │ │ ├── -data-store │ │ │ ├── get-instance.html │ │ │ ├── get-value.html │ │ │ ├── index.html │ │ │ ├── remove-listener.html │ │ │ ├── set-listener.html │ │ │ └── set-value.html │ │ └── index.html │ ├── dev.shreyaspatil.livestream.extension │ │ ├── index.html │ │ └── subscribe.html │ ├── dev.shreyaspatil.livestream │ │ ├── -live-stream │ │ │ ├── -init-.html │ │ │ ├── -on-change-listener │ │ │ │ ├── index.html │ │ │ │ └── on-change.html │ │ │ ├── get-value.html │ │ │ ├── index.html │ │ │ ├── post.html │ │ │ ├── set.html │ │ │ ├── subscribe.html │ │ │ └── unsubscribe.html │ │ ├── -stream-observer │ │ │ ├── index.html │ │ │ └── stream.html │ │ └── index.html │ ├── index-outline.html │ ├── index.html │ └── package-list └── style.css ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── livestream-kt ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shreyaspatil │ │ └── livestream │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── dev │ │ └── shreyaspatil │ │ └── livestream │ │ ├── ILiveStream.kt │ │ ├── LiveStream.kt │ │ ├── StreamObserver.kt │ │ ├── data │ │ ├── DataItem.kt │ │ └── DataStore.kt │ │ └── extension │ │ └── Extension.kt │ └── test │ └── java │ └── com │ └── shreyaspatil │ └── livestream │ └── ExampleUnitTest.kt └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @PatilShreyas 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.github/ISSUE_TEMPLATE/issue-feature-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | LiveStreamDemo -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/_config.yml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/shreyaspatil/livestream/example/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/androidTest/java/com/shreyaspatil/livestream/example/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/shreyaspatil/livestream/example/java/AsyncProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/java/com/shreyaspatil/livestream/example/java/AsyncProcessor.java -------------------------------------------------------------------------------- /app/src/main/java/com/shreyaspatil/livestream/example/java/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/java/com/shreyaspatil/livestream/example/java/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/shreyaspatil/livestream/example/kotlin/AsyncProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/java/com/shreyaspatil/livestream/example/kotlin/AsyncProcessor.kt -------------------------------------------------------------------------------- /app/src/main/java/com/shreyaspatil/livestream/example/kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/java/com/shreyaspatil/livestream/example/kotlin/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/shreyaspatil/livestream/example/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/app/src/test/java/com/shreyaspatil/livestream/example/ExampleUnitTest.kt -------------------------------------------------------------------------------- /assets/LiveStream-Anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/assets/LiveStream-Anim.gif -------------------------------------------------------------------------------- /assets/LiveStream-Kt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/assets/LiveStream-Kt.png -------------------------------------------------------------------------------- /docs/livestream-kt/alltypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/alltypes/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/-init-.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/on-change-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/on-change-listener.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-item/value.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/get-instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/get-instance.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/get-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/get-value.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/remove-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/remove-listener.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/set-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/set-listener.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/set-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/-data-store/set-value.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.data/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.extension/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream.extension/subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream.extension/subscribe.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-init-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-init-.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-on-change-listener/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-on-change-listener/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-on-change-listener/on-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/-on-change-listener/on-change.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/get-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/get-value.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/post.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/set.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/subscribe.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/unsubscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-live-stream/unsubscribe.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-stream-observer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-stream-observer/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/-stream-observer/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/-stream-observer/stream.html -------------------------------------------------------------------------------- /docs/livestream-kt/dev.shreyaspatil.livestream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/dev.shreyaspatil.livestream/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/index-outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/index-outline.html -------------------------------------------------------------------------------- /docs/livestream-kt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/index.html -------------------------------------------------------------------------------- /docs/livestream-kt/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/livestream-kt/package-list -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/docs/style.css -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/gradlew.bat -------------------------------------------------------------------------------- /livestream-kt/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /livestream-kt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/build.gradle -------------------------------------------------------------------------------- /livestream-kt/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livestream-kt/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/proguard-rules.pro -------------------------------------------------------------------------------- /livestream-kt/src/androidTest/java/com/shreyaspatil/livestream/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/androidTest/java/com/shreyaspatil/livestream/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/ILiveStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/ILiveStream.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/LiveStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/LiveStream.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/StreamObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/StreamObserver.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/data/DataItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/data/DataItem.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/data/DataStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/data/DataStore.kt -------------------------------------------------------------------------------- /livestream-kt/src/main/java/dev/shreyaspatil/livestream/extension/Extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/main/java/dev/shreyaspatil/livestream/extension/Extension.kt -------------------------------------------------------------------------------- /livestream-kt/src/test/java/com/shreyaspatil/livestream/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/livestream-kt/src/test/java/com/shreyaspatil/livestream/ExampleUnitTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatilShreyas/LiveStream-kt/HEAD/settings.gradle --------------------------------------------------------------------------------