Merge pull request #5 from oleksandrbalan/release/1.0.1

Increase verions to 1.0.1, update readme
This commit is contained in:
Oleksandr Balan
2022-08-23 23:11:07 +02:00
committed by GitHub
2 changed files with 15 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
[![](https://jitpack.io/v/oleksandrbalan/pagecurl.svg)](https://jitpack.io/#oleksandrbalan/pagecurl)
[![Maven Central](https://img.shields.io/maven-central/v/io.github.oleksandrbalan/pagecurl.svg?label=Maven%20Central)](https://search.maven.org/artifact/io.github.oleksandrbalan/pagecurl)
# Page Curl
@@ -12,13 +12,23 @@ This library allows to create an effect of turning pages, which can be used in b
### Get a dependency
**Step 1.** Add the JitPack repository to your build file.
Add it in your root build.gradle at the end of repositories:
**Step 1.** Add the MavenCentral repository to your build file.
Add it in your root `build.gradle` at the end of repositories:
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
mavenCentral()
}
}
```
Or in `settings.gradle`:
```
pluginManagement {
repositories {
...
mavenCentral()
}
}
```

View File

@@ -28,7 +28,7 @@ RELEASE_SIGNING_ENABLED=true
GROUP=io.github.oleksandrbalan
POM_ARTIFACT_ID=pagecurl
VERSION_NAME=1.0.0
VERSION_NAME=1.0.1
POM_NAME=Page Curl
POM_DESCRIPTION=This library allows to create an effect of turning pages, which can be used in book reader applications, custom on-boarding screens or elsewhere.