-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ object Deps { | |
const val tools_kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}" | ||
const val desugar_jdk_libs = "com.android.tools:desugar_jdk_libs:${Versions.desugar_jdk_libs}" | ||
const val test_junit = "junit:junit:${Versions.junit}" | ||
const val test_mockk = "io.mockk:mockk-android:${Versions.mockk}" | ||
const val test_mockk = "io.mockk:mockk:${Versions.mockk}" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Kaizen-7
Author
|
||
|
||
|
||
const val kotlinx_coroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-android:${Versions.kotlinx_coroutines}" | ||
|
Hello @Kaizen-7
Owing to minSdk declaration, this edit (line 43) for
test_mockk
dependency triggers the following error :MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
No issues instead by reverting to
const val test_mockk = "io.mockk:mockk-android:${Versions.mockk}"