MVN

io.github.nishkarsh : android-permissions

Maven & Gradle

May 02, 2022
75 stars

Android Permissions · An android library that makes it really easy to deal with dynamic permissions. Based on the context, the library automatically decides whether to show a dialog (in case the app is in foreground) or a notification (in case permission is required by a background service).

<dependency>
    <groupId>io.github.nishkarsh</groupId>
    <artifactId>android-permissions</artifactId>
    <version>2.1.8</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.nishkarsh : android-permissions to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.8

All Versions

Choose a version of io.github.nishkarsh : android-permissions to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
android-permissions-2.1.8
android-permissions-2.1.6
android-permissions-2.1.5
2.0.x
android-permissions-2.0.54
android-permissions-2.0.49
1.0.x
android-permissions-1.0.43
android-permissions-1.0.9
android-permissions-1.0.8
0.1.x
android-permissions-0.1.8
android-permissions-0.1.7

How to add a dependency to Maven

Add the following io.github.nishkarsh : android-permissions maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.nishkarsh</groupId>
    <artifactId>android-permissions</artifactId>
    <version>2.1.8</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.nishkarsh : android-permissions gradle dependency to your build.gradle file:

implementation 'io.github.nishkarsh:android-permissions:2.1.8'

Gradle Kotlin DSL: Add the following io.github.nishkarsh : android-permissions gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.nishkarsh:android-permissions:2.1.8")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.nishkarsh : android-permissions sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.nishkarsh" % "android-permissions" % "2.1.8"

Advertisement