Skip to content

Commit

Permalink
Debug Release 3.2 (3206)
Browse files Browse the repository at this point in the history
πŸ”§ New dependencies changes:
β€’ Update Appcompat to 1.7.0
β€’ Update Core(-ktx) to 1.13.1
β€’ Update Espresso-core to 3.6.0-rc01
β€’ Update Gradle to 8.6.0-alpha05
β€’ Update Gson to 2.11.0
β€’ Update Kotlin to 2.0.0
β€’ Update Material to 1.12.0

πŸ—‚οΈ Others Changes:
β€’ Update versionCode to 3206 (3.2)
β€’ Update buildToolsVersion to 35.0.0-rc4
β€’ Update Gradle to 8.8
β€’ Update Java to 22
  • Loading branch information
AkosPaha01 committed Jun 10, 2024
1 parent 920fd27 commit 5909f47
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 21
java-version: 22
distribution: temurin

- name: Cache Gradle dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 21
java-version: 22
distribution: temurin

- name: Cache Gradle dependencies
Expand Down
2 changes: 1 addition & 1 deletion .idea/compiler.xml

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

2 changes: 1 addition & 1 deletion .idea/gradle.xml

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

8 changes: 4 additions & 4 deletions .idea/kotlinc.xml

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

2 changes: 1 addition & 1 deletion .idea/misc.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 @@ -18,7 +18,7 @@ android {
applicationId = "de.dertyp7214.rboardpatcher"
minSdk = 23
targetSdk = 34
versionCode = 3205
versionCode = 3206
versionName = "3.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -39,12 +39,12 @@ android {
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_22
targetCompatibility = JavaVersion.VERSION_22
}

kotlinOptions {
jvmTarget = JvmTarget.JVM_21.description
jvmTarget = JvmTarget.JVM_22.description
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:suppressKotlinVersionCompatibilityCheck=true"
Expand All @@ -53,7 +53,7 @@ android {

tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = JvmTarget.JVM_21.description
jvmTarget = JvmTarget.JVM_22.description
}
}

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 = "1.9.23"))
classpath(kotlin("gradle-plugin", version = "2.0.0"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion colorutilsc
Submodule colorutilsc updated 1 files
+3 βˆ’3 build.gradle
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
androidx-junit = "1.1.5"
appcompat = "1.7.0-alpha03"
appcompat = "1.7.0"
browser = "1.8.0"
constraintlayout = "2.1.4"
coreKtx = "1.13.0"
coreKtx = "1.13.1"
desugar_jdk_libs_nio = "2.0.4"
espressoCore = "3.6.0-alpha03"
gradle = "8.5.0-alpha06"
gson = "2.10.1"
espressoCore = "3.6.0-rc01"
gradle = "8.6.0-alpha05"
gson = "2.11.0"
junit = "4.13.2"
kotlinreflect = "1.9.23"
kotlinStdlib = "1.9.23"
kotlinxCoroutinesAndroid = "1.8.0"
kspPlugin = "1.9.23-1.0.20"
material = "1.11.0"
kotlinreflect = "2.0.0"
kotlinStdlib = "2.0.0"
kotlinxCoroutinesAndroid = "1.8.1"
kspPlugin = "2.0.0-1.0.22"
material = "1.12.0"
preferenceKtx = "1.2.1"
storage = "1.5.5"
kotlin = "1.9.23"
kotlin = "2.0.0"

[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 Apr 04 09:36:50 CEST 2024
#Fri Jun 07 21:49:52 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5909f47

Please sign in to comment.