File tree Expand file tree Collapse file tree 3 files changed +1
-12
lines changed
sdk/@launchdarkly/observability-android/lib
src/main/kotlin/com/launchdarkly/observability/api Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ android {
28
28
}
29
29
}
30
30
compileOptions {
31
- // isCoreLibraryDesugaringEnabled = true
32
31
sourceCompatibility = JavaVersion .VERSION_11
33
32
targetCompatibility = JavaVersion .VERSION_11
34
33
}
@@ -69,8 +68,4 @@ dependencies {
69
68
androidTestImplementation(libs.androidx.ui.test.junit4)
70
69
debugImplementation(libs.androidx.ui.tooling)
71
70
debugImplementation(libs.androidx.ui.test.manifest)
72
-
73
- // This is required to use the launchdarkly-observability-android package that uses desugaring
74
- // to support old Android API versions (back to 24 at time of writing this)
75
- // coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
76
71
}
Original file line number Diff line number Diff line change @@ -37,11 +37,6 @@ dependencies {
37
37
// Use JUnit Jupiter for testing.
38
38
testImplementation(" org.junit.jupiter:junit-jupiter" )
39
39
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
40
-
41
- // This was added to support using newer types on older versions of Android.
42
- // Namely use of the Duration type which requires API 26 and minSDK at
43
- // time of writing is 24.
44
- // coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
45
40
}
46
41
47
42
val releaseVersion = version.toString()
@@ -67,7 +62,6 @@ android {
67
62
}
68
63
}
69
64
compileOptions {
70
- // isCoreLibraryDesugaringEnabled = true
71
65
sourceCompatibility = JavaVersion .VERSION_1_8
72
66
targetCompatibility = JavaVersion .VERSION_1_8
73
67
}
Original file line number Diff line number Diff line change @@ -44,4 +44,4 @@ data class Options(
44
44
val disableMetrics : Boolean = false ,
45
45
val logAdapter : LDLogAdapter = LDTimberLogging .adapter(), // this follows the LaunchDarkly SDK's default log adapter
46
46
val loggerName : String = " LaunchDarklyObservabilityPlugin"
47
- )
47
+ )
You can’t perform that action at this time.
0 commit comments