We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d4b8cf commit 7f4eff8Copy full SHA for 7f4eff8
app/build.gradle.kts
@@ -43,6 +43,8 @@ android {
43
compileOptions {
44
sourceCompatibility(JavaVersion.VERSION_1_8)
45
targetCompatibility(JavaVersion.VERSION_1_8)
46
+ // Flag to enable support for the new language APIs
47
+ isCoreLibraryDesugaringEnabled = true
48
}
49
kotlinOptions {
50
jvmTarget = "1.8"
@@ -86,6 +88,8 @@ dependencies {
86
88
// implementation("com.maxkeppeler.sheets-compose-dialogs:emoji:$sheetsVersion")
87
89
90
91
+ coreLibraryDesugaring(Dependencies.DESUGAR)
92
+
93
// Kotlin libs
94
95
implementations(Dependencies.Kotlin.KOTLIN_STD)
0 commit comments