Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Dec 19, 2022
1 parent d602991 commit fae34c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,15 @@
## Download
[![Maven Central](https://img.shields.io/maven-central/v/com.github.skydoves/powermenu.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.skydoves%22%20AND%20a:%22powermenu%22)

I really appreciate that 🔥 PowerMenu has been used in more than __300,000+__ projects all over the world. 🌎 <br>
I really appreciate that 🔥 PowerMenu has been used in more than __340,000+__ projects all over the world. 🌎 <br>

![screenshot1903218121](https://user-images.githubusercontent.com/24237865/64470618-49c2cb80-d181-11e9-99b4-0e14a20a86a0.png)

### Gradle
Add below codes to your **root** `build.gradle` file (not your module build.gradle file).
```gradle
allprojects {
repositories {
mavenCentral()
}
}
```
And add a dependency code to your **module**'s `build.gradle` file.
And add the dependency below to your **module**'s `build.gradle` file:
```gradle
dependencies {
implementation "com.github.skydoves:powermenu:2.2.1"
implementation "com.github.skydoves:powermenu:2.2.2"
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ object Configuration {
const val minSdk = 17
const val majorVersion = 2
const val minorVersion = 2
const val patchVersion = 1
const val patchVersion = 2
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 28
const val versionCode = 29
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit fae34c6

Please sign in to comment.