Skip to content

Commit

Permalink
Dependency upgrades (#1775)
Browse files Browse the repository at this point in the history
* Dependency upgrades

* Upgrade compile sdk.
  • Loading branch information
JBassett committed Oct 14, 2021
1 parent f51d7ef commit 51df8dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

android {
compileSdk = 30
compileSdk = 31

ndkVersion = "21.3.6528147"

Expand Down Expand Up @@ -69,7 +69,7 @@ android {
signingConfig = signingConfigs.getByName("release")
}
}
flavorDimensions("version")
flavorDimensions.add("version")
productFlavors {
create("minimal") {
applicationIdSuffix = ".minimal"
Expand Down Expand Up @@ -129,15 +129,15 @@ dependencies {

implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.31")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1")

implementation("com.google.dagger:dagger:2.39.1")
kapt("com.google.dagger:dagger-compiler:2.39.1")

implementation("androidx.appcompat:appcompat:1.3.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.3.1")
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
implementation("androidx.constraintlayout:constraintlayout:2.1.1")
implementation("androidx.recyclerview:recyclerview:1.2.1")
implementation("androidx.preference:preference-ktx:1.1.1")
implementation("androidx.navigation:navigation-fragment-ktx:2.3.5")
Expand All @@ -155,7 +155,7 @@ dependencies {
implementation("com.squareup.picasso:picasso:2.8")

"fullImplementation"("com.google.android.gms:play-services-location:18.0.0")
"fullImplementation"("com.google.firebase:firebase-core:19.0.0")
"fullImplementation"("com.google.firebase:firebase-core:19.0.2")
"fullImplementation"("com.google.firebase:firebase-iid:21.1.0")
"fullImplementation"("com.google.firebase:firebase-messaging:22.0.0")
"fullImplementation"("io.sentry:sentry-android:5.2.1")
Expand Down
4 changes: 2 additions & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val versionName = System.getenv("VERSION") ?: "LOCAL"
val versionCode = System.getenv("VERSION_CODE")?.toIntOrNull() ?: 1

android {
compileSdk = 30
compileSdk = 31

defaultConfig {
minSdk = 21
Expand All @@ -24,7 +24,7 @@ android {
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.31")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")

implementation("com.google.dagger:dagger:2.39.1")
kapt("com.google.dagger:dagger-compiler:2.39.1")
Expand Down
4 changes: 2 additions & 2 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
compileSdk = 30
compileSdk = 31

defaultConfig {
applicationId = "io.homeassistant.companion.android"
Expand Down Expand Up @@ -69,7 +69,7 @@ dependencies {

implementation("com.google.android.material:material:1.4.0")

implementation("androidx.wear:wear:1.1.0")
implementation("androidx.wear:wear:1.2.0")
implementation("com.google.android.support:wearable:2.8.1")
implementation("com.google.android.gms:play-services-wearable:17.1.0")
compileOnly("com.google.android.wearable:wearable:2.8.1")
Expand Down

0 comments on commit 51df8dd

Please sign in to comment.