Skip to content

Commit

Permalink
♻️
Browse files Browse the repository at this point in the history
[Update]
- Align dependencies version between modules.
  • Loading branch information
rosuH committed Sep 12, 2022
1 parent e1efcbc commit 6149c35
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ dependencies {

implementation("id.zelory:compressor:3.0.1")

implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.10")
implementation("androidx.appcompat:appcompat:1.5.0")
implementation("com.google.android.material:material:1.8.0-alpha01")
implementation("org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}")
implementation("androidx.appcompat:appcompat:${Versions.appCompat}")
implementation("com.google.android.material:material:${Versions.materialDesign}")
implementation("androidx.fragment:fragment-ktx:1.5.2")
implementation("androidx.activity:activity-ktx:1.5.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
dependencies {
classpath("com.android.tools.build:gradle:7.3.0-rc01")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jlleitschuh.gradle:ktlint-gradle:10.1.0")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.42")
// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 3 additions & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ object ProductFlavors {
}

object Versions {
const val kotlin = "1.5.30-RC"
const val kotlin = "1.7.10"
const val appCompat = "1.5.0"
const val materialDesign = "1.8.0-alpha01"
}
6 changes: 3 additions & 3 deletions cmonet/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.appcompat:appcompat:1.4.1")
implementation("com.google.android.material:material:1.6.0-alpha03")
implementation("androidx.core:core-ktx:${Versions.kotlin}")
implementation("androidx.appcompat:appcompat:${Versions.appCompat}")
implementation("com.google.android.material:material:${Versions.materialDesign}")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
Expand Down

0 comments on commit 6149c35

Please sign in to comment.