From 3f341a127fe5b66fdfe17e7a31ce194b17626c2b Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 2 Oct 2024 18:34:08 +0200 Subject: [PATCH] chore(android): set target/compile SDK versions to 35 --- android/capacitor/build.gradle | 4 ++-- capacitor-cordova-android-plugins/build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/capacitor/build.gradle b/android/capacitor/build.gradle index 8769cf699..ab3aceaca 100644 --- a/android/capacitor/build.gradle +++ b/android/capacitor/build.gradle @@ -42,10 +42,10 @@ if (System.getenv("CAP_PUBLISH") == "true") { android { namespace "com.getcapacitor.android" - compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34 + compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23 - targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34 + targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35 versionCode 1 versionName "1.0" consumerProguardFiles 'proguard-rules.pro' diff --git a/capacitor-cordova-android-plugins/build.gradle b/capacitor-cordova-android-plugins/build.gradle index dec326fb7..bc69fdf3b 100644 --- a/capacitor-cordova-android-plugins/build.gradle +++ b/capacitor-cordova-android-plugins/build.gradle @@ -17,10 +17,10 @@ apply plugin: 'com.android.library' android { namespace "capacitor.cordova.android.plugins" - compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34 + compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23 - targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34 + targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35 versionCode 1 versionName "1.0" }