Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import com.github.spotbugs.snom.SpotBugsTask


import com.github.spotbugs.snom.Confidence
import com.github.spotbugs.snom.Effort
import com.github.spotbugs.snom.SpotBugsTask

repositories {
google()
Expand Down Expand Up @@ -35,11 +36,11 @@ configurations {

android {
namespace 'com.nextcloud.android.sso'
compileSdk 34
compileSdk 35

defaultConfig {
minSdk 21
targetSdk 34
targetSdk 35
consumerProguardFiles 'consumer-proguard-rules.pro'
}

Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ apply plugin: 'com.android.application'

android {
namespace 'com.nextcloud.android.sso.sample'
compileSdk 34
compileSdk 35

defaultConfig {
applicationId "com.nextcloud.android.sso.sample"
minSdk 22
targetSdk 34
targetSdk 35
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -49,4 +49,4 @@ dependencies {

androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}
}