Skip to content

Commit

Permalink
Monthly Update
Browse files Browse the repository at this point in the history
New dependencies changes:
• Update androidx.activity:activity-ktx to 1.8.2
• Update androidx.navigation:navigation-fragment-ktx & navigation-ui-ktx to 2.7.6
• Update androidx.lifecycle:lifecycle-viewmodel-ktx to 2.7.0
• Update com.android.tools.build:gradle to 8.4.0-alpha03
• Update com.github.skydoves:balloon to 1.6.4
• Update com.github.topjohnwu.libsu to 5.2.2
• Update com.google.android.material:material to 1.11.0
• Update com.google.firebase:firebase-bom to 32.7.0
• Update com.google.firebase:firebase-messaging(-ktx) to 23.4.0

Others Changes:
• Update versionCode to 391009
• Update gradle-plugin & Kotlin to 1.9.22
• Update actions/cache to 3.3.3
• Update actions/upload-artifact to 4.1.0
• Update gradle/gradle-build-action to 2.11.1
• Update mukunku/tag-exists-action to 1.5.0
  • Loading branch information
AkosPaha01 authored Jan 14, 2024
2 parents 4cd86e8 + a1c36ee commit 9e68212
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 36 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
distribution: temurin

- name: Cache Gradle dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
~/.gradle/caches
Expand All @@ -45,7 +45,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Build apk
id: buildAllApks
uses: gradle/gradle-build-action@v2.10.0
uses: gradle/gradle-build-action@v2.11.1
with:
gradle-version: wrapper
arguments: assembleDebug
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: mv app/build/outputs/apk/debug/app-debug-signed.apk app/build/outputs/apk/debug/app-debug.apk

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.0
with:
name: Debug Artifact
path: app/build/outputs/apk/debug/app-debug.apk
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/buildPro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
distribution: temurin

- name: Cache Gradle dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
~/.gradle/caches
Expand All @@ -34,7 +34,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Build apk
id: buildAllApks
uses: gradle/gradle-build-action@v2.10.0
uses: gradle/gradle-build-action@v2.11.1
with:
gradle-version: wrapper
arguments: assemblePro
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
run: mv app/build/outputs/apk/pro/app-pro-unsigned-signed.apk app/build/outputs/apk/pro/app-pro.apk

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.0
with:
name: Release Artifact
path: app/build/outputs/apk/pro/app-pro.apk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Build apk
id: buildAllApks
uses: gradle/gradle-build-action@v2.10.0
uses: gradle/gradle-build-action@v2.11.1
with:
gradle-version: wrapper
arguments: assembleRelease
Expand Down Expand Up @@ -98,7 +98,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.1.0
with:
name: Release Artifact
path: app/build/outputs/apk/release/app-release.apk
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deployToGoogle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
distribution: temurin

- name: Cache Gradle dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
~/.gradle/caches
Expand All @@ -44,7 +44,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -60,7 +60,7 @@ jobs:

- name: Build Bundle
id: buildBundle
uses: gradle/gradle-build-action@v2.10.0
uses: gradle/gradle-build-action@v2.11.1
with:
gradle-version: wrapper
arguments: bundleRelease
Expand All @@ -78,7 +78,7 @@ jobs:
BUILD_TOOLS_VERSION: 33.0.0

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.0
with:
name: Artifact
path: app/build/outputs/bundle/release/app-release.aab
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Build apk
id: buildAllApks
uses: gradle/gradle-build-action@v2.10.0
uses: gradle/gradle-build-action@v2.11.1
with:
gradle-version: wrapper
arguments: assembleDebug
Expand All @@ -73,13 +73,13 @@ jobs:
echo "::set-output name=json::$content"
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.1.0
with:
name: Debug Artifact
path: app/build/outputs/apk/debug/app-debug.apk

- name: Check if release already exists
uses: mukunku/tag-exists-action@v1.4.0
uses: mukunku/tag-exists-action@v1.5.0
id: checkTag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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.

2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
applicationId = "de.dertyp7214.rboardthememanager"
minSdk = 31
targetSdk = 34
versionCode = 391008
versionCode = 391009
versionName = "3.9.1"

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 @@ -12,7 +12,7 @@ plugins {
dependencies {
classpath(libs.gradle)
//noinspection DifferentKotlinGradleVersion
classpath(kotlin("gradle-plugin", version = "1.9.21"))
classpath(kotlin("gradle-plugin", version = "1.9.22"))
classpath(libs.google.services)
}
}
Expand Down
30 changes: 15 additions & 15 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,46 @@ de-PRDownloader = "v0.6.0"
google-core = "2.1.0"
google-core-ktx = "2.1.0"
junit-junit = "4.13.2"
kotlinReflect = "1.9.21"
kotlinReflect = "1.9.22"
ksp = "4.16.0"
libsuVersion = "5.2.1"
libsuVersion = "5.2.2"
insetter = "0.6.1"

kotlin-stdlib = "1.9.21"
kotlin-stdlib = "1.9.22"
appcompat = "1.7.0-alpha03"
constraintlayout = "2.2.0-alpha13"
preference-ktx = "1.2.1"
activity-ktx = "1.8.1"
activity-ktx = "1.8.2"
fragment-ktx = "1.6.2"
lifecycle-viewmodel-ktx = "2.6.2"
lifecycle-viewmodel-ktx = "2.7.0"
browser = "1.7.0"
glide = "4.16.0"
flagkit = "1.0.2"
firebase-bom = "32.6.0"
firebase-messaging-ktx = "23.3.1"
firebase-bom = "32.7.0"
firebase-messaging-ktx = "23.4.0"
firebase-analytics-ktx = "21.5.0"
legacy-support-v4 = "1.0.0"
navigation-fragment-ktx = "2.7.5"
navigation-ui-ktx = "2.7.5"
navigation-fragment-ktx = "2.7.6"
navigation-ui-ktx = "2.7.6"
commons-text = "1.11.0"
core-ktx = "1.12.0"
core = "1.12.0"
material = "1.10.0"
material = "1.11.0"
espresso-core = "3.5.1"
android-shell = "1.0.0"
firebase-analytics = "21.5.0"
firebase-messaging = "23.3.1"
firebase-messaging = "23.4.0"
gson = "2.10.1"
protobufDynamic = "1.0.1"
simple-item-decoration = "1.0.0"
balloon = "1.6.3"
kspPlugin = "1.9.21-1.0.15"
balloon = "1.6.4"
kspPlugin = "1.9.22-1.0.16"
dotsIndicator = "5.0"

googleServices = "4.4.0"
gradle = "8.3.0-alpha16"
gradle = "8.4.0-alpha04"
uiTooling = "1.5.4"
kotlin = "1.9.21"
kotlin = "1.9.22"

[libraries]
prDownloader = { module = "de.dertyp7214:PRDownloader", version.ref = "de-PRDownloader" }
Expand Down

0 comments on commit 9e68212

Please sign in to comment.