Skip to content
Closed
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
10 changes: 9 additions & 1 deletion auth-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,20 @@ val archivesBaseName = "auth"

android {
compileSdk = 33
buildToolsVersion = "33.0.0"

buildFeatures {
buildConfig = true
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "17"
}

defaultConfig {
minSdk = 16
targetSdk = 33
Expand Down
16 changes: 12 additions & 4 deletions auth-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ plugins {
}

android {
compileSdk = 33
buildToolsVersion = "33.0.0"
compileSdk = 36

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "17"
}

signingConfigs {
getByName("debug") {
Expand All @@ -40,8 +48,8 @@ android {

defaultConfig {
applicationId = "com.spotify.sdk.android.authentication.sample"
minSdk = 16
targetSdk = 33
minSdk = 21
targetSdk = 36
versionCode = 1
versionName = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildscript {
google()
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.2")
classpath("com.android.tools.build:gradle:8.9.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.10")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading