Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Mar 6, 2024
2 parents c4664f7 + 34c0256 commit 6e64f5b
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
<a href="https://android-arsenal.com/api?level=21">
<img src="https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat" alt="API">
</a>
<img src="https://img.shields.io/github/v/release/w2sv/Compose-Utils?include_prereleases" alt="GitHub release (latest by date including pre-releases)">

<a href="https://jitpack.io/#w2sv/Composed">
<img src="https://jitpack.io/v/w2sv/Composed.svg" alt="JitPack">
</a>

<a href="https://github.com/w2sv/Compose-Utils/actions/workflows/workflow.yaml">
<img src="https://github.com/w2sv/Compose-Utils/actions/workflows/workflow.yaml/badge.svg" alt="Build">
</a>

<img src="https://img.shields.io/github/license/w2sv/Compose-Utils" alt="GitHub License">
</p>

Expand All @@ -19,7 +24,30 @@

------

## Contents
# Installation

Make sure you have jitpack added to your dependency resolution repositories by adding the following to your `settings.gradle.kts`:

```kotlin
dependencyResolutionManagement {
repositories {
maven("https://jitpack.io")
}
}
```

Then add the dependencies you lust for to your `build.gradle.kts` files:

```kotlin
dependencies {
// Core utils
implementation "com.github.w2sv.Composed:composed:<version>"
// Permission utils
implementation "com.github.w2sv.Composed:permissions:<version>"
}
```

# Contents

- [State Savers](#state-savers)
- [Styled Text](#styled-text)
Expand Down Expand Up @@ -262,3 +290,19 @@ fun rememberExtendedMultiplePermissionsState(
): ExtendedMultiplePermissionsState
```

# License
```xml
Designed and developed by 2024 w2sv (Janek Zangenberg)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```

0 comments on commit 6e64f5b

Please sign in to comment.