Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit b682476

Browse files
committed
Update dependencies and tasks apps
1 parent 9b21834 commit b682476

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/test-dev.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ jobs:
6767

6868
- name: Install task apps and run tests
6969
uses: reactivecircus/android-emulator-runner@v2
70+
env:
71+
version_at_techbee_jtx: 205020009
72+
version_org_tasks: 130501
73+
version_org_dmfs_tasks: 82200
7074
with:
7175
api-level: ${{ matrix.api-level }}
7276
arch: x86_64
@@ -75,9 +79,9 @@ jobs:
7579
disable-animations: true
7680
script: |
7781
mkdir .apk && cd .apk
78-
wget -cq -O org.dmfs.tasks.apk https://f-droid.org/archive/org.dmfs.tasks_80800.apk && adb install org.dmfs.tasks.apk
79-
wget -cq -O org.tasks.apk https://f-droid.org/archive/org.tasks_120400.apk && adb install org.tasks.apk
80-
wget -cq -O at.techbee.jtx.apk https://f-droid.org/archive/at.techbee.jtx_100140002.apk && adb install at.techbee.jtx.apk
82+
(wget -cq -O org.dmfs.tasks.apk https://f-droid.org/repo/org.dmfs.tasks_${{ env.version_org_dmfs_tasks }}.apk || wget -cq -O org.dmfs.tasks.apk https://f-droid.org/archive/org.dmfs.tasks_${{ env.version_org_dmfs_tasks }}.apk) && adb install org.dmfs.tasks.apk
83+
(wget -cq -O org.tasks.apk https://f-droid.org/repo/org.tasks_${{ env.version_org_tasks }}.apk || wget -cq -O org.tasks.apk https://f-droid.org/archive/org.tasks_${{ env.version_org_tasks }}.apk) && adb install org.tasks.apk
84+
(wget -cq -O at.techbee.jtx.apk https://f-droid.org/repo/at.techbee.jtx_${{ env.version_at_techbee_jtx }}.apk || wget -cq -O at.techbee.jtx.apk https://f-droid.org/archive/at.techbee.jtx_${{ env.version_at_techbee_jtx }}.apk) && adb install at.techbee.jtx.apk
8185
cd ..
8286
./gradlew --no-daemon connectedCheck -Pandroid.testInstrumentationRunnerArguments.notAnnotation=androidx.test.filters.FlakyTest
8387

lib/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id("org.jetbrains.dokka")
1010
}
1111

12-
val version_ical4j = "3.2.11"
12+
val version_ical4j = "3.2.12"
1313

1414
android {
1515
compileSdk = 33
@@ -99,7 +99,7 @@ dependencies {
9999

100100
implementation("androidx.core:core-ktx:1.10.1")
101101
api("org.mnode.ical4j:ical4j:${version_ical4j}")
102-
implementation("org.slf4j:slf4j-jdk14:2.0.3") // ical4j logging over java.util.Logger
102+
implementation("org.slf4j:slf4j-jdk14:2.0.7") // ical4j logging over java.util.Logger
103103

104104
// ical4j requires newer Apache Commons libraries, which require Java8. Force latest Java7 versions.
105105
// noinspection GradleDependency
@@ -121,6 +121,6 @@ dependencies {
121121
androidTestImplementation("androidx.test:core:1.5.0")
122122
androidTestImplementation("androidx.test:runner:1.5.2")
123123
androidTestImplementation("androidx.test:rules:1.5.0")
124-
androidTestImplementation("io.mockk:mockk-android:1.13.4")
124+
androidTestImplementation("io.mockk:mockk-android:1.13.7")
125125
testImplementation("junit:junit:4.13.2")
126126
}

0 commit comments

Comments
 (0)