Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2022-09-27 12:09:48 +0300
committerRicki Hirner <hirner@bitfire.at>2022-09-27 12:14:22 +0300
commit18017a475c5e7c9dd6fbc5d5f222cbd2744b81be (patch)
tree09ad02f0f1799a978b860d440852630382c56036
parent986ab08307bf5e394ef051d3c6146f6a3b292519 (diff)
Update gradle plugin, compile SDK level, build tools
-rw-r--r--build.gradle12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index eed358a..d1cb9c5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
ext.versions = [
- kotlin: '1.6.21',
+ kotlin: '1.7.10',
dokka: '1.5.31',
// latest Apache Commons versions that don't require Java 8 (Android 7)
commonsIO: '2.6',
@@ -13,7 +13,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.2.0'
+ classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
@@ -29,11 +29,11 @@ apply plugin: 'kotlin-android'
apply plugin: 'org.jetbrains.dokka'
android {
- compileSdkVersion 32
- buildToolsVersion '32.0.0'
+ compileSdkVersion 33
+ buildToolsVersion '33.0.0'
defaultConfig {
- minSdkVersion 16 // Android 4.1
+ minSdkVersion 19 // Android 4.4
targetSdkVersion 32 // Android 12v2
}
@@ -65,7 +65,7 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
- implementation 'androidx.annotation:annotation:1.3.0'
+ implementation 'androidx.annotation:annotation:1.5.0'
// noinspection GradleDependency
implementation "commons-io:commons-io:${versions.commonsIO}"
// noinspection GradleDependency