Skip to content

Commit

Permalink
MOB-4904 kotlin update (#211)
Browse files Browse the repository at this point in the history
* kotlin update

* Update build.gradle
  • Loading branch information
mionescu95 authored Mar 4, 2024
1 parent 9e075b2 commit 3ae0ce8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@


buildscript {
ext.kotlin_version = '1.8.0'
ext.kotlin_version = '1.9.0'
repositories {
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
mavenLocal()
google()
Expand Down Expand Up @@ -35,6 +38,9 @@ allprojects {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
mavenLocal()
maven { url 'https://flit-tech.bintray.com/Android' }
Expand Down
14 changes: 7 additions & 7 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ group = 'com.karhoo.sdk'
version = '1.0'

android {
compileSdkVersion 33
compileSdkVersion 34
buildToolsVersion '34.0.0'

testOptions {
Expand All @@ -21,8 +21,8 @@ android {
}

defaultConfig {
minSdkVersion 21
targetSdkVersion 33
minSdkVersion 24
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "com.karhoo.sdk.api.testrunner.SDKTestRunner"
Expand Down Expand Up @@ -90,7 +90,7 @@ afterEvaluate {
}

dependencies {
kapt "com.google.dagger:dagger-compiler:2.43.2"
kapt "com.google.dagger:dagger-compiler:2.48"
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.47'
kaptAndroidTest 'com.google.dagger:hilt-compiler:2.47'

Expand All @@ -99,9 +99,9 @@ dependencies {

implementation "com.squareup.retrofit2:retrofit:2.9.0"
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
implementation "com.google.dagger:dagger:2.43"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1"
implementation "com.google.dagger:dagger:2.48"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0-RC2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
implementation "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-experimental-adapter:1.0.0"
implementation "com.squareup.retrofit2:converter-scalars:2.4.0"

Expand Down

0 comments on commit 3ae0ce8

Please sign in to comment.