Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
prathameshmm02 committed Jun 10, 2022
1 parent b073432 commit 9dac004
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ android {

dependencies {
implementation project(":themeEngine")
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation "androidx.preference:preference-ktx:1.2.0"
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation "androidx.core:core-ktx:$core_version"
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.preference:preference-ktx:$preference_version"
implementation "com.google.android.material:material:$mdc_version"
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
}
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0' apply true
}
ext {
appcompat_version = '1.4.2'
core_version = '1.8.0'
mdc_version = '1.6.1'
preference_version = '1.2.0'
}
apply from: "${rootDir}/scripts/publish-root.gradle"

task clean(type: Delete) {
Expand Down
8 changes: 4 additions & 4 deletions themeEngine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
}

dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation "androidx.preference:preference-ktx:1.2.0"
implementation 'com.google.android.material:material:1.6.0'
implementation "androidx.core:core-ktx:$core_version"
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.preference:preference-ktx:$preference_version"
implementation "com.google.android.material:material:$mdc_version"
}

0 comments on commit 9dac004

Please sign in to comment.