Skip to content

Commit

Permalink
other: upgrade targetSdk to 34, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandrvolovyk committed Sep 11, 2023
1 parent 5c10786 commit c3acca6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ keysProperties.load(new FileInputStream(keysPropertiesFile))

android {
namespace 'volovyk.guerrillamail'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "volovyk.guerrillamail"
minSdk 24
targetSdk 33
targetSdk 34
versionCode 26
versionName "3.3.4"

Expand Down Expand Up @@ -75,38 +75,38 @@ dependencies {
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.47'

// Room Database
implementation "androidx.room:room-ktx:2.5.1"
kapt "androidx.room:room-compiler:2.5.1"
implementation "androidx.room:room-ktx:2.5.2"
kapt "androidx.room:room-compiler:2.5.2"

implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.activity:activity-ktx:1.7.2'
implementation 'androidx.fragment:fragment-ktx:1.6.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
implementation 'androidx.fragment:fragment-ktx:1.6.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.2'

// coroutine
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'

implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment:2.6.0'
implementation 'androidx.navigation:navigation-ui:2.6.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.recyclerview:recyclerview:1.3.1'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
testImplementation "io.mockk:mockk:1.13.7"
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.2'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4'
androidTestImplementation "io.mockk:mockk-android:1.13.7"
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

// Ads
implementation 'com.google.android.gms:play-services-ads:22.1.0'
implementation 'com.google.android.gms:play-services-ads:22.3.0'

// Timber
implementation 'com.jakewharton.timber:timber:4.7.1'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.2"
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.1"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.1"
}
Expand Down

0 comments on commit c3acca6

Please sign in to comment.