Merge pull request #6 from oleksandrbalan/feature/versions-update

Update versions
This commit is contained in:
Oleksandr Balan
2022-11-09 17:52:59 +01:00
committed by GitHub
7 changed files with 23 additions and 16 deletions

1
.gitignore vendored
View File

@@ -10,6 +10,7 @@
/.idea/assetWizardSettings.xml
/.idea/misc.xml
/.idea/deploymentTargetDropDown.xml
/.idea/kotlinc.xml
.DS_Store
/build
/captures

View File

@@ -1,5 +1,7 @@
[![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)
<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.

View File

@@ -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"

View File

@@ -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"

View File

@@ -34,7 +34,7 @@ internal fun SettingsPopup(
) {
Card(
shape = RoundedCornerShape(24.dp),
elevation = 16.dp,
elevation = 8.dp,
) {
Column(
verticalArrangement = Arrangement.spacedBy(8.dp),

View File

@@ -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

View File

@@ -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"
}