Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mylhyl committed Nov 5, 2021
1 parent 6b13a92 commit 72d9ac2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
17 changes: 15 additions & 2 deletions README.md
Expand Up @@ -8,9 +8,22 @@
# 效果图
<img src="preview/gif.gif" width="240px"/>

#使用Gradle构建时添加一下依赖即可:
#使用Gradle构建时添加一下依赖即可
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
```javascript
compile 'com.mylhyl:acp:1.2.0'
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
Step 2. Add the dependency
```
dependencies {
implementation 'com.github.mylhyl:AndroidAcp:1.2.1'
}
```

# 使用说明
Expand Down
6 changes: 3 additions & 3 deletions library/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName '1.2.0'
versionName '1.2.1'
}
buildTypes {
release {
Expand All @@ -23,14 +23,14 @@ android {
}

dependencies {
compileOnly 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
}

publish {
userOrg = 'mylhyl'
groupId = 'com.mylhyl'
artifactId = 'acp'
publishVersion = '1.2.0'
publishVersion = '1.2.1'
desc = 'Simplify Android 6.0 complex permissions operation'
website = "https://github.com/mylhyl/AndroidAcp"
}

0 comments on commit 72d9ac2

Please sign in to comment.