mirror of
https://github.com/fankes/pagecurl-multiplatform.git
synced 2025-09-07 03:05:59 +08:00
Update versions
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,6 +10,7 @@
|
|||||||
/.idea/assetWizardSettings.xml
|
/.idea/assetWizardSettings.xml
|
||||||
/.idea/misc.xml
|
/.idea/misc.xml
|
||||||
/.idea/deploymentTargetDropDown.xml
|
/.idea/deploymentTargetDropDown.xml
|
||||||
|
/.idea/kotlinc.xml
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/build
|
/build
|
||||||
/captures
|
/captures
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
[](https://search.maven.org/artifact/io.github.oleksandrbalan/pagecurl)
|
[](https://search.maven.org/artifact/io.github.oleksandrbalan/pagecurl)
|
||||||
|
|
||||||
|
<img align="right" src="https://user-images.githubusercontent.com/20944869/200791917-a2436c9a-d062-4c14-9c71-c94fe8703061.png">
|
||||||
|
|
||||||
# Page Curl
|
# Page Curl
|
||||||
|
|
||||||
Page Curl library for Jetpack Compose.
|
Page Curl library for Jetpack Compose.
|
||||||
|
16
build.gradle
16
build.gradle
@@ -1,14 +1,18 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
compose_version = "1.2.1"
|
compile_sdk_version = 33
|
||||||
compose_compiler_version = "1.3.0"
|
min_sdk_version = 24
|
||||||
activity = "1.5.1"
|
target_sdk_version = 33
|
||||||
|
|
||||||
|
compose_version = "1.3.0"
|
||||||
|
compose_compiler_version = "1.3.2"
|
||||||
|
activity = "1.6.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
plugins {
|
plugins {
|
||||||
id "com.android.application" version "7.2.0" apply false
|
id "com.android.application" version "7.3.1" apply false
|
||||||
id "com.android.library" version "7.2.0" apply false
|
id "com.android.library" version "7.3.1" apply false
|
||||||
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
|
id "org.jetbrains.kotlin.android" version "1.7.20" apply false
|
||||||
id "io.gitlab.arturbosch.detekt" version "1.21.0"
|
id "io.gitlab.arturbosch.detekt" version "1.21.0"
|
||||||
id "com.diffplug.spotless" version "6.5.1"
|
id "com.diffplug.spotless" version "6.5.1"
|
||||||
id "com.vanniktech.maven.publish" version "0.21.0"
|
id "com.vanniktech.maven.publish" version "0.21.0"
|
||||||
|
@@ -4,12 +4,12 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 32
|
compileSdk compile_sdk_version
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "eu.wewox.pagecurl"
|
applicationId "eu.wewox.pagecurl"
|
||||||
minSdk 24
|
minSdk min_sdk_version
|
||||||
targetSdk 32
|
targetSdk target_sdk_version
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0"
|
versionName "1.0"
|
||||||
|
|
||||||
|
@@ -34,7 +34,7 @@ internal fun SettingsPopup(
|
|||||||
) {
|
) {
|
||||||
Card(
|
Card(
|
||||||
shape = RoundedCornerShape(24.dp),
|
shape = RoundedCornerShape(24.dp),
|
||||||
elevation = 16.dp,
|
elevation = 8.dp,
|
||||||
) {
|
) {
|
||||||
Column(
|
Column(
|
||||||
verticalArrangement = Arrangement.spacedBy(8.dp),
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
6
gradle/wrapper/gradle-wrapper.properties
vendored
6
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
#Thu Aug 18 14:58:20 CEST 2022
|
#Wed Nov 09 10:15:20 CET 2022
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
|
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStorePath=wrapper/dists
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
@@ -5,11 +5,11 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 32
|
compileSdk compile_sdk_version
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 24
|
minSdk min_sdk_version
|
||||||
targetSdk 32
|
targetSdk target_sdk_version
|
||||||
|
|
||||||
consumerProguardFiles "consumer-rules.pro"
|
consumerProguardFiles "consumer-rules.pro"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user