-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
Kpg/cleaning api 2
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,36 @@ | ||
# Mach 7 for Android | ||
# Firestore SDK for Kotlin Multiplatform | ||
|
||
Library wrapping the Firestore SDK for Kotlin Multiplatform with clients for Android and iOS. Shared common code can | ||
run methods that get delegated to the platform specific SDKs. | ||
|
||
This was originally for a client and now is being used as an example library for a talk on KMP libraries. We'll probably | ||
archive this pretty soon because it'll be a lot of support. | ||
|
||
## Usage | ||
|
||
Use Koltin 1.3.50. | ||
|
||
Dependency config | ||
|
||
```groovy | ||
sourceSets { | ||
commonMain { | ||
dependencies { | ||
implementation 'co.touchlab:firestore:0.2.5' | ||
} | ||
} | ||
} | ||
``` | ||
|
||
You'll need to config both Android and iOS as you normally would for Firestore, but then you should be able to get the | ||
Firestore instance like this. | ||
|
||
```kotlin | ||
getFirebaseInstance() | ||
``` | ||
|
||
Then you can do Firestore things. | ||
|
||
## Droidcon | ||
|
||
[See live example here](https://github.com/touchlab/DroidconKotlin/blob/master/sessionize/lib/src/commonMain/kotlin/co/touchlab/sessionize/SponsorModel.kt#L25) |