Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '11'
Expand All @@ -34,7 +34,7 @@ jobs:
arguments: assembleDebug --warning-mode all --stacktrace

- name: Upload APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: app-debug
path: app/build/outputs/apk/debug/app-debug.apk
8 changes: 4 additions & 4 deletions .github/workflows/reviewdog-suggester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check try_mvi branch
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
ref: try_mvi

- name: Checkout current branch
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '11'

- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v3
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '11'

- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v3
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ dependencies {
implementation 'com.google.android.material:material:1.6.1'

// play services
implementation 'com.google.android.gms:play-services-location:20.0.0'
implementation 'com.google.android.libraries.places:places:2.6.0'
implementation 'com.google.android.gms:play-services-location:21.4.0'
implementation 'com.google.android.libraries.places:places:5.3.0'

// room persistence
final roomVersion = '2.4.3'
Expand All @@ -104,10 +104,10 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

// retrofit, moshi
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-moshi:2.9.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0'
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
implementation 'com.squareup.retrofit2:converter-moshi:3.0.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:3.0.0'
implementation 'com.squareup.okhttp3:logging-interceptor:5.4.0'
implementation 'com.squareup.moshi:moshi-kotlin:1.14.0'

// rxkotlin & rxandroid
Expand All @@ -121,16 +121,16 @@ dependencies {
implementation 'com.jakewharton.threetenabp:threetenabp:1.4.2'

// koin
final koinVersion= "3.2.2"
final koinVersion= "4.2.2"
implementation "io.insert-koin:koin-core:$koinVersion"
implementation "io.insert-koin:koin-android:$koinVersion"

// view pager indicator
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2'

// glide
implementation 'com.github.bumptech.glide:glide:4.14.2'
kapt 'com.github.bumptech.glide:compiler:4.14.2'
implementation 'com.github.bumptech.glide:glide:5.0.9'
kapt 'com.github.bumptech.glide:compiler:5.0.9'

// chart & material search view
implementation 'com.diogobernardino:williamchart:3.11.0'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.7.20'
ext.kotlin_version = '2.4.10'

repositories {
google()
Expand All @@ -10,9 +10,9 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath 'com.android.tools.build:gradle:9.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.11.0"
classpath "com.diffplug.spotless:spotless-plugin-gradle:8.8.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
Loading