├── .gitignore ├── README.md ├── firestore-coroutines ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── kiwimob │ └── firestore │ └── coroutines │ ├── DocumentCoroutines.kt │ ├── QueryCoroutines.kt │ └── TaskCoroutines.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/README.md -------------------------------------------------------------------------------- /firestore-coroutines/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /firestore-coroutines/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/firestore-coroutines/build.gradle -------------------------------------------------------------------------------- /firestore-coroutines/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/firestore-coroutines/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/DocumentCoroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/DocumentCoroutines.kt -------------------------------------------------------------------------------- /firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/QueryCoroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/QueryCoroutines.kt -------------------------------------------------------------------------------- /firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/TaskCoroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/firestore-coroutines/src/main/kotlin/com/kiwimob/firestore/coroutines/TaskCoroutines.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brotoo25/firestore-coroutines/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':firestore-coroutines' 2 | --------------------------------------------------------------------------------