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