Skip to content

Commit f224863

Browse files
authored
Merge pull request #6 from segment-integrations/LIBMOBILE-1276
LIBMOBILE-1276 - Bump up analytics-kotlin version to latest. #6
2 parents 5e72c51 + 541a3c2 commit f224863

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = getVersionName()
66

77
plugins {
88
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
9-
id("org.jetbrains.kotlin.jvm") version "1.6.0"
9+
id("org.jetbrains.kotlin.jvm") version "1.8.0"
1010

1111
// Apply the java-library plugin for API and implementation separation.
1212
`java-library`
@@ -22,8 +22,8 @@ buildscript {
2222
gradlePluginPortal()
2323
}
2424
dependencies {
25-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
26-
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.0")
25+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0")
26+
classpath("org.jetbrains.kotlin:kotlin-serialization:1.8.0")
2727
classpath("com.android.tools.build:gradle:7.0.4")
2828
}
2929
}

lib/build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ plugins {
99
val VERSION_NAME: String by project
1010

1111
android {
12-
compileSdk = 31
13-
buildToolsVersion = "31.0.0"
12+
compileSdk = 33
13+
buildToolsVersion = "33.0.1"
1414

1515
defaultConfig {
1616
multiDexEnabled = true
1717
minSdk = 21
18-
targetSdk = 31
18+
targetSdk = 33
1919

2020
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
2121
consumerProguardFiles("proguard-consumer-rules.pro")
@@ -40,11 +40,11 @@ android {
4040
}
4141

4242
dependencies {
43-
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5")
43+
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.2")
4444

45-
implementation("com.segment.analytics.kotlin:android:1.6.2")
45+
implementation("com.segment.analytics.kotlin:android:1.10.3")
4646
implementation("androidx.multidex:multidex:2.0.1")
47-
implementation("androidx.core:core-ktx:1.7.0")
47+
implementation("androidx.core:core-ktx:1.8.0")
4848

4949
implementation("androidx.lifecycle:lifecycle-process:2.5.1")
5050
implementation("androidx.lifecycle:lifecycle-common-java8:2.5.1")
@@ -58,7 +58,7 @@ dependencies {
5858
// Test Dependencies
5959
dependencies {
6060
testImplementation("junit:junit:4.13.2")
61-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0")
61+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
6262
testImplementation("io.mockk:mockk:1.12.4")
6363

6464
// Add Robolectric dependencies.
@@ -77,8 +77,8 @@ dependencies {
7777

7878
// Android Test Dependencies
7979
dependencies {
80-
androidTestImplementation("androidx.test.ext:junit:1.1.4")
81-
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
80+
androidTestImplementation("androidx.test.ext:junit:1.1.5")
81+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
8282
}
8383

8484
tasks.withType<Test> {

testapp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
}
55

66
android {
7-
compileSdk = 31
7+
compileSdk = 33
88

99
defaultConfig {
1010
applicationId = "com.segment.analytics.destinations.mydestination.testapp"
1111
minSdk = 21
12-
targetSdk = 31
12+
targetSdk = 33
1313
versionCode = 1
1414
versionName = "1.0"
1515

0 commit comments

Comments
 (0)