mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-11-10 06:57:34 +01:00
Adds a maven publishing to ship quartz
This commit is contained in:
21
README.md
21
README.md
@@ -237,26 +237,25 @@ openssl base64 < <my-release-key.keystore> | tr -d '\n' | tee some_signing_key.j
|
||||
|
||||
## Using the Quartz library
|
||||
|
||||
Setup [JitPack.io](https://jitpack.io/#vitorpamplona/amethyst/v0.84.3) to your build file
|
||||
### Installing
|
||||
|
||||
Add `maven { url 'https://jitpack.io' }` to settings.gradle at the end of repositories:
|
||||
Add the following line to your `commonMain` dependencies:
|
||||
|
||||
```gradle
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url 'https://jitpack.io' }
|
||||
}
|
||||
}
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz:<Amethyst Version>')
|
||||
```
|
||||
|
||||
Add the dependency by using one of the versions [here](https://jitpack.io/#vitorpamplona/amethyst/)
|
||||
Variations to each platform are also available:
|
||||
|
||||
```gradle
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz:<tag, commit, -SNAPSHOT>')
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz-android:<Amethyst Version>')
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz-jvm:<Amethyst Version>')
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz-iosarm64:<Amethyst Version>')
|
||||
implementation('com.github.vitorpamplona.amethyst:quartz-iossimulatorarm64:<Amethyst Version>')
|
||||
```
|
||||
|
||||
### How to use
|
||||
|
||||
Manage logged in users with the `KeyPair` class
|
||||
|
||||
```kt
|
||||
|
||||
Reference in New Issue
Block a user