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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
signingKey: ${{ secrets.SIGNING_KEY }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 36.0.0-rc1
buildToolsVersion: 36.0.0

- name: List files
run: ls app/build/outputs/apk/release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: 36.0.0-rc1
BUILD_TOOLS_VERSION: 36.0.0

- name: Upload Artifact
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ plugins {

android {
namespace = "de.dertyp7214.rboardpatcher"
compileSdkPreview = "Baklava"
buildToolsVersion = "36.0.0-rc1"
compileSdk = 36
buildToolsVersion = "36.0.0"

buildFeatures.buildConfig = true

defaultConfig {
applicationId = "de.dertyp7214.rboardpatcher"
minSdk = 23
targetSdk = 35
versionCode = 3302
versionName = "3.3"
targetSdk = 36
versionCode = 3401
versionName = "3.4"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
dependencies {
classpath(libs.gradle)
//noinspection DifferentKotlinGradleVersion
classpath(kotlin("gradle-plugin", version = "2.0.20"))
classpath(kotlin("gradle-plugin", version = "2.1.20"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion colorutilsc
Submodule colorutilsc updated 1 files
+4 −4 build.gradle
24 changes: 12 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
androidx-junit = "1.2.1"
appcompat = "1.7.0"
browser = "1.8.0"
constraintlayout = "2.2.0"
coreKtx = "1.15.0"
desugar_jdk_libs_nio = "2.1.3"
constraintlayout = "2.2.1"
coreKtx = "1.16.0-beta01"
desugar_jdk_libs_nio = "2.1.5"
espressoCore = "3.6.1"
gradle = "8.9.0-alpha03"
gson = "2.11.0"
gradle = "8.11.0-alpha02"
gson = "2.12.1"
junit = "4.13.2"
kotlinreflect = "2.1.0-RC2"
kotlinStdlib = "2.1.0-RC2"
kotlinxCoroutinesAndroid = "1.9.0"
kspPlugin = "2.1.0-RC2-1.0.28"
material = "1.13.0-alpha08"
kotlinreflect = "2.1.20"
kotlinStdlib = "2.1.20"
kotlinxCoroutinesAndroid = "1.10.1"
kspPlugin = "2.1.20-1.0.31"
material = "1.13.0-alpha11"
preferenceKtx = "1.2.1"
storage = "2.0.0"
kotlin = "2.1.0-RC2"
activity = "1.10.0-beta01"
kotlin = "2.1.20"
activity = "1.10.1"

[libraries]
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Nov 21 21:14:24 CET 2024
#Thu Mar 20 14:39:28 CET 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading