Skip to content

Commit

Permalink
Bump up dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Vivo committed Jan 10, 2023
1 parent 7e9d96d commit 366b5c7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ dependencies {
// Jetpack Compose
implementation "androidx.activity:activity-compose:$activityComposeVersion"
implementation "androidx.compose.compiler:compiler:$composeCompilerVersion"
implementation "androidx.compose.material:material:$composeVersion"
implementation "androidx.compose.material:material:$composeMaterialVersion"
implementation "androidx.compose.animation:animation:$composeVersion"
implementation "androidx.compose.ui:ui-tooling-preview:$composeVersion"
implementation "androidx.navigation:navigation-compose:$navigationVersion"
Expand Down
31 changes: 16 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
buildscript {
ext.kotlinVersion = '1.7.0'
ext.navigationVersion = '2.5.0'
ext.kotlinVersion = '1.7.20'
ext.navigationVersion = '2.5.3'
ext.ktlintVersion = '0.44.0'
ext.hiltVersion = '2.42'
ext.hiltVersion = '2.44.2'

repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
Expand Down Expand Up @@ -51,30 +51,31 @@ subprojects {
ext {
// Sdk and tools
minSdkVersion = 21
targetSdkVersion = 32
compileSdkVersion = 32
targetSdkVersion = 33
compileSdkVersion = 33

// App dependencies
accompanistVersion = '0.23.0'
activityComposeVersion = '1.4.0'
activityComposeVersion = '1.6.1'
androidXVersion = '1.0.0'
androidXTestCoreVersion = '1.4.1-alpha06'
androidXTestExtKotlinRunnerVersion = '1.1.4-alpha06'
androidXTestRulesVersion = '1.4.1-alpha06'
androidXTestCoreVersion = '1.5.0'
androidXTestExtKotlinRunnerVersion = '1.1.5'
androidXTestRulesVersion = '1.5.0'
androidXAnnotations = '1.3.0'
archLifecycleVersion = '2.6.0-alpha01'
archLifecycleVersion = '2.6.0-alpha03'
archTestingVersion = '2.1.0'
composeVersion = '1.2.0'
composeCompilerVersion = '1.2.0'
composeVersion = '1.3.2'
composeMaterialVersion = '1.3.1'
composeCompilerVersion = '1.3.2'
coroutinesVersion = '1.6.1'
dexMakerVersion = '2.12.1'
espressoVersion = '3.5.0-alpha06'
espressoVersion = '3.5.1'
hamcrestVersion = '1.3'
hiltAndroidXVersion = '1.0.0'
junitVersion = '4.13.2'
multiDexVersion = '2.0.1'
robolectricVersion = '4.8.1'
roomVersion = '2.4.2'
roomVersion = '2.4.3'
rulesVersion = '1.0.1'
timberVersion = '4.7.1'
truthVersion = '1.1.2'
Expand Down

0 comments on commit 366b5c7

Please sign in to comment.