/home/jenkins/.jenkins/workspace/RESPECT-end-to-end/respect-lib-shared/src/androidMain/kotlin/world/respect/shared/domain/phonenumber/OnClickPhoneNumberUseCaseAndroid.kt:14: Warning: Use the KTX extension function String.toUri instead? [UseKtx] intent.setData(Uri.parse("tel:$number")) ~~~~~~~~~~~~~~~~~~~~~~~~ Explanation for issues of type "UseKtx": The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more. Available options: **remove-defaults** (default is true): Whether to skip arguments that match the defaults provided by the extension. Extensions often provide default values for some of the parameters. For example: ```kotlin fun Path.readLines(charset: Charset = Charsets.UTF_8): List { return Files.readAllLines(this, charset) } ``` This lint check will by default automatically omit parameters that match the default, so if your code was calling ```kotlin Files.readAllLines(file, Charset.UTF_8) ``` lint would replace this with ```kotlin file.readLines() ``` rather than ```kotlin file.readLines(Charset.UTF_8 ``` You can turn this behavior off using this option. To configure this option, use a `lint.xml` file with an