Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nazirjonmakhmadkulov committed Nov 7, 2024
1 parent 49aeb00 commit 160460a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 79 deletions.
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

android {
compileSdk = 34
compileSdk = 35
defaultConfig {
applicationId = "com.developer.valyutaapp"
minSdk = 21
Expand All @@ -33,21 +33,21 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

buildFeatures.viewBinding = true
buildFeatures.buildConfig = true
namespace = "com.developer.currency"
}
dependencies {
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.core:core-ktx:1.15.0")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.constraintlayout:constraintlayout:2.2.0")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("androidx.preference:preference-ktx:1.2.1")
implementation("androidx.annotation:annotation:1.9.0")
implementation("androidx.annotation:annotation:1.9.1")

testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
Expand All @@ -65,10 +65,10 @@ dependencies {
api("com.jakewharton.timber:timber:5.0.1")

// Fragment
implementation("androidx.fragment:fragment-ktx:1.8.4")
implementation("androidx.fragment:fragment-ktx:1.8.5")

// Kotlin + coroutines
implementation("androidx.work:work-runtime-ktx:2.9.1")
implementation("androidx.work:work-runtime-ktx:2.10.0")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0")
Expand Down
63 changes: 0 additions & 63 deletions app/src/main/java/com/developer/currency/ui/Text.kt

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,8 @@
android:fitsSystemWindows="false"
android:orientation="vertical">

<com.developer.currency.ui.SeatGridView
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_main"
android:visibility="gone"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.7.1" apply false
id("com.android.application") version "8.7.2" apply false
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
id("com.google.devtools.ksp") version "2.0.20-1.0.24" apply false
id("androidx.navigation.safeargs") version "2.8.3" apply false
Expand Down

0 comments on commit 160460a

Please sign in to comment.