Skip to content

Commit

Permalink
Merge pull request #27 from icerockdev/develop
Browse files Browse the repository at this point in the history
fix release 0.7.0
  • Loading branch information
Alex009 authored Nov 25, 2020
2 parents 48ee833 + 9a3c9cb commit 77a6d96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![moko-permissions](img/logo.png)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0) [![Download](https://api.bintray.com/packages/icerockdev/moko/moko-permissions/images/download.svg) ](https://bintray.com/icerockdev/moko/moko-permissions/_latestVersion) ![kotlin-version](https://img.shields.io/badge/kotlin-1.4.0-orange)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0) [![Download](https://api.bintray.com/packages/icerockdev/moko/moko-permissions/images/download.svg) ](https://bintray.com/icerockdev/moko/moko-permissions/_latestVersion) ![kotlin-version](https://img.shields.io/badge/kotlin-1.4.10-orange)

# Mobile Kotlin runtime permissions multiplatform controller
**moko-permissions** - Kotlin MultiPlatform library for providing runtime permissions on iOS & Android.
Expand Down Expand Up @@ -38,6 +38,7 @@
- 0.5.1
- kotlin 1.4.0
- 0.6.0
- 0.7.0

## Installation
root **build.gradle**
Expand All @@ -52,7 +53,7 @@ allprojects {
project **build.gradle**
```groovy
dependencies {
commonMainApi("dev.icerock.moko:permissions:0.6.0")
commonMainApi("dev.icerock.moko:permissions:0.7.0")
}
```

Expand All @@ -62,7 +63,8 @@ The full list can be found in `dev.icerock.moko.permissions.Permission` enum.

* Camera: **Permission.CAMERA**
* Gallery: **Permission.GALLERY**
* Storage: **Permission.STORAGE**
* Storage read: **Permission.STORAGE**
* Storage write: **Permission.WRITE_STORAGE**
* Fine location: **Permission.LOCATION**
* Coarse location: **Permission.COARSE_LOCATION**
* Remote notifications: **Permission.REMOTE_NOTIFICATION**
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Deps {

private const val coroutinesVersion = "1.3.9"
private const val mokoMvvmVersion = "0.8.0"
const val mokoPermissionsVersion = "0.6.0"
const val mokoPermissionsVersion = "0.7.0"

object Android {
const val compileSdk = 28
Expand Down

0 comments on commit 77a6d96

Please sign in to comment.