mirror of
https://github.com/fankes/pagecurl-multiplatform.git
synced 2025-09-07 19:14:04 +08:00
Increase verions to 1.0.1, update readme
This commit is contained in:
1
.github/workflows/publish.yml
vendored
1
.github/workflows/publish.yml
vendored
@@ -21,6 +21,7 @@ jobs:
|
|||||||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
|
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
|
||||||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
|
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
|
||||||
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
|
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
|
||||||
|
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }}
|
||||||
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
||||||
|
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
18
README.md
18
README.md
@@ -1,4 +1,4 @@
|
|||||||
[](https://jitpack.io/#oleksandrbalan/pagecurl)
|
[](https://search.maven.org/artifact/io.github.oleksandrbalan/pagecurl)
|
||||||
|
|
||||||
# Page Curl
|
# 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
|
### Get a dependency
|
||||||
|
|
||||||
**Step 1.** Add the JitPack repository to your build file.
|
**Step 1.** Add the MavenCentral repository to your build file.
|
||||||
Add it in your root build.gradle at the end of repositories:
|
Add it in your root `build.gradle` at the end of repositories:
|
||||||
```
|
```
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
...
|
...
|
||||||
maven { url 'https://jitpack.io' }
|
mavenCentral()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Or in `settings.gradle`:
|
||||||
|
```
|
||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
...
|
||||||
|
mavenCentral()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@@ -28,7 +28,7 @@ RELEASE_SIGNING_ENABLED=true
|
|||||||
|
|
||||||
GROUP=io.github.oleksandrbalan
|
GROUP=io.github.oleksandrbalan
|
||||||
POM_ARTIFACT_ID=pagecurl
|
POM_ARTIFACT_ID=pagecurl
|
||||||
VERSION_NAME=1.0.0
|
VERSION_NAME=1.0.1
|
||||||
|
|
||||||
POM_NAME=Page Curl
|
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.
|
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.
|
||||||
|
Reference in New Issue
Block a user