Skip to content

Commit 1278f4a

Browse files
committed
Upgrade dependencies
1 parent 5e1521a commit 1278f4a

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

.github/workflows/android.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,26 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717

18+
- name: Set up JDK 17
19+
uses: actions/setup-java@v3
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
1824
- name: Build with Gradle
19-
run: ./gradlew build
25+
run: ./gradlew --no-daemon build
2026

2127
metadata:
2228
needs: build
2329

2430
runs-on: ubuntu-latest
2531

2632
steps:
27-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
2834

2935
- uses: ashutoshgngwr/validate-fastlane-supply-metadata@v2
3036
with:

app/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ android {
5252

5353
dependencies {
5454
implementation 'androidx.appcompat:appcompat:1.6.1'
55-
implementation 'androidx.browser:browser:1.5.0'
55+
implementation 'androidx.browser:browser:1.8.0'
5656
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
57-
implementation 'androidx.core:core-ktx:1.9.0'
58-
implementation 'androidx.fragment:fragment-ktx:1.5.6'
59-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.1'
60-
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
61-
implementation 'androidx.preference:preference-ktx:1.2.0'
62-
implementation 'androidx.sqlite:sqlite-framework:2.3.1'
63-
implementation 'androidx.sqlite:sqlite-ktx:2.3.1'
57+
implementation 'androidx.core:core-ktx:1.13.0'
58+
implementation 'androidx.fragment:fragment-ktx:1.6.2'
59+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
60+
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
61+
implementation 'androidx.preference:preference-ktx:1.2.1'
62+
implementation 'androidx.sqlite:sqlite-framework:2.4.0'
63+
implementation 'androidx.sqlite:sqlite-ktx:2.4.0'
6464
implementation 'androidx.viewpager2:viewpager2:1.0.0'
65-
implementation 'androidx.webkit:webkit:1.6.1'
65+
implementation 'androidx.webkit:webkit:1.10.0'
6666
implementation 'com.amazon.ion:ion-element:1.0.0'
67-
implementation 'com.google.android.material:material:1.8.0'
67+
implementation 'com.google.android.material:material:1.11.0'
6868
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
6969
implementation 'commons-codec:commons-codec:1.13'
7070

0 commit comments

Comments
 (0)