Skip to content

Commit

Permalink
chore: Upgrade dep version
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Paing authored and Vincent Paing committed Apr 3, 2023
1 parent 9fe539e commit 1c7786b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 16 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,15 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.1.1"
kotlinCompilerExtensionVersion = "1.4.4"
}

kotlinOptions {
jvmTarget = "1.8"
}

namespace = "dev.aungkyawpaing.ccdroidx"

configurations.findByName("androidTestImplementation")?.run {
exclude(group = "io.mockk", module = "mockk-agent-jvm")
}
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="dev.aungkyawpaing.ccdroidx">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />

Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ buildscript {
classpath(DaggerHilt.gradle_plugin)
classpath(Wire.gradle_plugin)
classpath(AndroidJUnit5.gradle_plugin)
classpath 'com.google.gms:google-services:4.3.14'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
}
}

plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'com.squareup.sqldelight' version '1.5.3' apply false
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'com.squareup.sqldelight' version '1.5.5' apply false
}

task clean(type: Delete) {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/AndroidXDataStore.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object AndroidXDataStore {
}

object Wire {
private const val version = "4.3.0"
private const val version = "4.5.2"

const val runtime = "com.squareup.wire:wire-runtime:$version"
const val gradle_plugin = "com.squareup.wire:wire-gradle-plugin:$version"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/DaggerDep.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fun DependencyHandler.daggerHilt() {
}

object DaggerHilt {
private const val version = "2.41"
private const val version = "2.44"

const val android = "com.google.dagger:hilt-android:$version"
const val androidCompiler = "com.google.dagger:hilt-android-compiler:$version"
Expand All @@ -40,7 +40,7 @@ object DaggerHilt {
}

object Dagger {
private const val version = "2.28"
private const val version = "2.44"

const val core = "com.google.dagger:dagger:$version"
const val compiler = "com.google.dagger:dagger-compiler:$version"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/SQLDelightDep.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fun DependencyHandler.sqlDelight() {
}

object SqlDelight {
private const val version = "1.5.3"
private const val version = "1.5.5"

const val gradle_plugin = "com.squareup.sqldelight:gradle-plugin:$version"
const val android_driver = "com.squareup.sqldelight:android-driver:$version"
Expand Down
2 changes: 1 addition & 1 deletion data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sqldelight {
}

dependencies {
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")
implementation(project(":common"))

coroutine()
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Sep 25 01:26:46 ICT 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.1.1"
kotlinCompilerExtensionVersion = "1.4.4"
}

kotlinOptions {
Expand Down

0 comments on commit 1c7786b

Please sign in to comment.