diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d996cd1..a54343b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v5 + - uses: actions/stale@v8 with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/build.gradle b/build.gradle index 34c4b6d..f1dc155 100644 --- a/build.gradle +++ b/build.gradle @@ -4,8 +4,8 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:7.0.3") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21") + classpath('com.android.tools.build:gradle:7.4.2') + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10") classpath("com.github.dcendents:android-maven-gradle-plugin:2.1") } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e750102..db9a6b8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/library/build.gradle b/library/build.gradle index 912eaf9..de7726d 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -6,11 +6,11 @@ plugins { } android { - compileSdkVersion(31) + compileSdk = 34 defaultConfig { minSdkVersion(16) - targetSdkVersion(31) + targetSdkVersion(34) setProperty("archivesBaseName", "com.transferwise.sequencelayout-${versionName}") } @@ -22,12 +22,12 @@ android { } compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = JavaVersion.VERSION_1_8.toString() + jvmTarget = JavaVersion.VERSION_17.toString() } } @@ -71,6 +71,6 @@ afterEvaluate { } dependencies { - implementation("androidx.appcompat:appcompat:1.4.1") - implementation("androidx.core:core-ktx:1.7.0") + implementation("androidx.appcompat:appcompat:1.6.1") + implementation("androidx.core:core-ktx:1.12.0") } diff --git a/sample/build.gradle b/sample/build.gradle index 8936556..09e8fb2 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -4,19 +4,19 @@ plugins { } android { - compileSdkVersion(31) + compileSdk = 34 defaultConfig { minSdkVersion(16) - targetSdkVersion(31) + targetSdkVersion(34) applicationId = "com.transferwise.sequencelayout.sample" } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } } dependencies { implementation(project(":library")) - implementation("androidx.appcompat:appcompat:1.4.1") + implementation("androidx.appcompat:appcompat:1.6.1") }