mirror of
https://github.com/fankes/pagecurl-multiplatform.git
synced 2025-09-05 10:15:30 +08:00
Merge pull request #6 from oleksandrbalan/feature/versions-update
Update versions
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,6 +10,7 @@
|
||||
/.idea/assetWizardSettings.xml
|
||||
/.idea/misc.xml
|
||||
/.idea/deploymentTargetDropDown.xml
|
||||
/.idea/kotlinc.xml
|
||||
.DS_Store
|
||||
/build
|
||||
/captures
|
||||
|
@@ -1,5 +1,7 @@
|
||||
[](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 library for Jetpack Compose.
|
||||
|
16
build.gradle
16
build.gradle
@@ -1,14 +1,18 @@
|
||||
buildscript {
|
||||
ext {
|
||||
compose_version = "1.2.1"
|
||||
compose_compiler_version = "1.3.0"
|
||||
activity = "1.5.1"
|
||||
compile_sdk_version = 33
|
||||
min_sdk_version = 24
|
||||
target_sdk_version = 33
|
||||
|
||||
compose_version = "1.3.0"
|
||||
compose_compiler_version = "1.3.2"
|
||||
activity = "1.6.1"
|
||||
}
|
||||
}
|
||||
plugins {
|
||||
id "com.android.application" version "7.2.0" apply false
|
||||
id "com.android.library" version "7.2.0" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
|
||||
id "com.android.application" version "7.3.1" apply false
|
||||
id "com.android.library" version "7.3.1" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.7.20" apply false
|
||||
id "io.gitlab.arturbosch.detekt" version "1.21.0"
|
||||
id "com.diffplug.spotless" version "6.5.1"
|
||||
id "com.vanniktech.maven.publish" version "0.21.0"
|
||||
|
@@ -4,12 +4,12 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk 32
|
||||
compileSdk compile_sdk_version
|
||||
|
||||
defaultConfig {
|
||||
applicationId "eu.wewox.pagecurl"
|
||||
minSdk 24
|
||||
targetSdk 32
|
||||
minSdk min_sdk_version
|
||||
targetSdk target_sdk_version
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
|
@@ -34,7 +34,7 @@ internal fun SettingsPopup(
|
||||
) {
|
||||
Card(
|
||||
shape = RoundedCornerShape(24.dp),
|
||||
elevation = 16.dp,
|
||||
elevation = 8.dp,
|
||||
) {
|
||||
Column(
|
||||
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
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
|
||||
distributionPath=wrapper/dists
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
@@ -5,11 +5,11 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk 32
|
||||
compileSdk compile_sdk_version
|
||||
|
||||
defaultConfig {
|
||||
minSdk 24
|
||||
targetSdk 32
|
||||
minSdk min_sdk_version
|
||||
targetSdk target_sdk_version
|
||||
|
||||
consumerProguardFiles "consumer-rules.pro"
|
||||
}
|
||||
|
Reference in New Issue
Block a user