From fafb19e5d37e5b01838b8d0899513a55977d96a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20N=C3=A4hler?= Date: Wed, 2 Oct 2024 16:51:27 +0200 Subject: [PATCH] Bump versions --- README.md | 2 +- app/build.gradle | 12 ++++++------ build.gradle | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 82175a4..3f5d11f 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ buildscript { maven { url "https://artifactory.img.ly/artifactory/imgly" } } dependencies { - classpath 'ly.img.android.pesdk:plugin:10.8.2' + classpath 'ly.img.android.pesdk:plugin:10.10.0' classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.21-1.0.6") } } diff --git a/app/build.gradle b/app/build.gradle index 2137f1f..c0de49f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,13 +46,13 @@ IMGLY.configure { android { namespace "com.photoeditorsdk.android.app" - compileSdkVersion 34 - buildToolsVersion '34.0.0' + compileSdkVersion 35 + buildToolsVersion '35.0.0' defaultConfig { applicationId "com.photoeditorsdk.android.app" minSdkVersion 21 - targetSdkVersion 34 + targetSdkVersion 35 versionCode 1 versionName "1.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' @@ -71,13 +71,13 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'androidx.appcompat:appcompat:1.3.1' + implementation 'androidx.appcompat:appcompat:1.7.0' } diff --git a/build.gradle b/build.gradle index 246c112..49fa299 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.6.21' - ext.ksp_version = '1.6.21-1.0.6' - ext.pesdk_version = '10.9.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.kotlin_version = '1.8.22' + ext.ksp_version = '1.8.22-1.0.11' + ext.pesdk_version = '10.10.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() gradlePluginPortal()