-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58e1d2e
commit 49ef9fc
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# FAQ | ||
|
||
Have a question that isn't part of the FAQ? Open an issue here [Compose-Rich-Editor](https://github.com/MohamedRejeb/Compose-Rich-Editor/issues). | ||
|
||
## How do I get development snapshots? | ||
|
||
Add the snapshots repository to your list of repositories in `build.gradle.kts`: | ||
|
||
```kotlin | ||
allprojects { | ||
repositories { | ||
maven("https://oss.sonatype.org/content/repositories/snapshots") | ||
} | ||
} | ||
``` | ||
|
||
Or to your dependency resolution management in `settings.gradle.kts`: | ||
|
||
```kotlin | ||
dependencyResolutionManagement { | ||
repositories { | ||
maven("https://s01.oss.sonatype.org/content/repositories/snapshots") | ||
} | ||
} | ||
``` | ||
|
||
Use the snapshot version: | ||
|
||
```kotlin | ||
implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-SNAPSHOT") | ||
``` | ||
|
||
>Note: Snapshots are deployed for each new commit on `main` that passes CI. They can potentially contain breaking changes or may be unstable. Use at your own risk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters