From 2e3a459ef0ab19e7556951c0653907f7ed86325c Mon Sep 17 00:00:00 2001 From: alperozturk Date: Mon, 6 Oct 2025 16:11:50 +0200 Subject: [PATCH] upgrade android sdk 36 Signed-off-by: alperozturk --- core/build.gradle | 7 +++---- sample/build.gradle | 6 +++--- ui/build.gradle | 6 +++--- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/core/build.gradle b/core/build.gradle index caed4bf9..ef6a1016 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -12,11 +12,10 @@ plugins { } android { - compileSdk 35 - defaultConfig { - minSdk 21 - targetSdk 35 + minSdk = 21 + compileSdk = 36 + targetSdk = 36 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/sample/build.gradle b/sample/build.gradle index 07e6481d..e5004994 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -12,12 +12,12 @@ plugins { android { namespace 'com.nextcloud.android.common.sample' - compileSdk 35 defaultConfig { applicationId "com.nextcloud.android.common.sample" - minSdk 26 - targetSdk 35 + minSdk = 26 + compileSdk = 36 + targetSdk = 36 versionCode 1 versionName "1.0" diff --git a/ui/build.gradle b/ui/build.gradle index 461a4d44..94598482 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -15,9 +15,9 @@ plugins { android { defaultConfig { - compileSdk 35 - minSdk 21 - targetSdk 35 + minSdk = 21 + compileSdk = 36 + targetSdk = 36 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" }