Skip to content

Commit

Permalink
Monthly Update
Browse files Browse the repository at this point in the history
New dependencies changes:
• Update com.android.tools.build:gradle to 8.4.0-alpha07
• Update com.google.devtools.ksp to 1.9.22-1.0.17
• Update actions/upload-artifact to v4
• Update actions/cache to v4
• Update actions/setup-java to v4
• Update gradle/gradle-build-action to v3

Others Changes:
• Update versionCode to 3200
  • Loading branch information
AkosPaha01 committed Jan 31, 2024
1 parent e9890c3 commit 4745402
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
run: IN="${{ github.event.head_commit.message }}" && echo "::set-output name=message::${IN%%$'\n'*}"

- name: Setup JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin

- name: Cache Gradle dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand All @@ -48,7 +48,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -69,7 +69,7 @@ jobs:

- name: Build apk
id: buildAllApks
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: assembleRelease
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
run: mv app/build/outputs/apk/release/app-release-unsigned-signed.apk app/build/outputs/apk/release/app-release.apk

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Release Artifact
path: app/build/outputs/apk/release/app-release.apk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/playstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
ndk-version: r26b

- name: Setup JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin

- name: Cache Gradle dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand All @@ -42,7 +42,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -58,7 +58,7 @@ jobs:

- name: Build Bundle
id: buildBundle
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: bundleRelease
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json

- name: Deploy to Production
uses: r0adkll/upload-google-play@v1.1.2
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJson: service_account.json
packageName: de.dertyp7214.rboardpatcher
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId = "de.dertyp7214.rboardpatcher"
minSdk = 23
targetSdk = 34
versionCode = 3100
versionName = "3.1"
versionCode = 3200
versionName = "3.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ constraintlayout = "2.1.4"
coreKtx = "1.12.0"
desugar_jdk_libs_nio = "2.0.4"
espressoCore = "3.5.1"
gradle = "8.4.0-alpha04"
gradle = "8.4.0-alpha07"
gson = "2.10.1"
junit = "4.13.2"
kotlinreflect = "1.9.22"
kotlinStdlib = "1.9.22"
kotlinxCoroutinesAndroid = "1.7.3"
kspPlugin = "1.9.22-1.0.16"
kspPlugin = "1.9.22-1.0.17"
material = "1.11.0"
preferenceKtx = "1.2.1"
storage = "1.5.5"
Expand Down

0 comments on commit 4745402

Please sign in to comment.