Files
RSSuper/native-route/android/build/reports/lint-results-debug.txt

82 lines
6.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:2: Warning: A newer version of com.android.library than 8.5.0 is available: 9.1.0. (There is also a newer version of 8.5.𝑥 available, if upgrading to 9.1.0 is difficult: 8.5.2) [AndroidGradlePluginVersion]
id("com.android.library") version "8.5.0"
~~~~~~~
Explanation for issues of type "AndroidGradlePluginVersion":
This detector looks for usage of the Android Gradle Plugin where the
version you are using is not the current stable release. Using older
versions is fine, and there are cases where you deliberately want to stick
with an older version. However, you may simply not be aware that a more
recent version is available, and that is what this lint check helps find.
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:3: Warning: A newer version of org.jetbrains.kotlin.android than 1.9.22 is available: 2.0.21 [GradleDependency]
id("org.jetbrains.kotlin.android") version "1.9.22"
~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:4: Warning: A newer version of org.jetbrains.kotlin.plugin.parcelize than 1.9.22 is available: 2.0.0 [GradleDependency]
id("org.jetbrains.kotlin.plugin.parcelize") version "1.9.22"
~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:41: Warning: A newer version of com.android.tools:desugar_jdk_libs than 2.0.4 is available: 2.1.5 [GradleDependency]
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:44: Warning: A newer version of androidx.core:core-ktx than 1.12.0 is available: 1.18.0 [GradleDependency]
implementation("androidx.core:core-ktx:1.12.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:47: Warning: A newer version of androidx.room:room-runtime than 2.6.1 is available: 2.8.4 [GradleDependency]
implementation("androidx.room:room-runtime:2.6.1")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:48: Warning: A newer version of androidx.room:room-ktx than 2.6.1 is available: 2.8.4 [GradleDependency]
implementation("androidx.room:room-ktx:2.6.1")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:49: Warning: A newer version of androidx.room:room-compiler than 2.6.1 is available: 2.8.4 [GradleDependency]
kapt("androidx.room:room-compiler:2.6.1")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:52: Warning: A newer version of com.squareup.moshi:moshi than 1.15.0 is available: 1.15.1 [GradleDependency]
implementation("com.squareup.moshi:moshi:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:53: Warning: A newer version of com.squareup.moshi:moshi-kotlin-codegen than 1.15.0 is available: 1.15.1 [GradleDependency]
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:54: Warning: A newer version of com.squareup.moshi:moshi-kotlin than 1.15.0 is available: 1.15.1 [GradleDependency]
implementation("com.squareup.moshi:moshi-kotlin:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:58: Warning: A newer version of com.squareup.moshi:moshi than 1.15.0 is available: 1.15.1 [GradleDependency]
testImplementation("com.squareup.moshi:moshi:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:59: Warning: A newer version of com.squareup.moshi:moshi-kotlin than 1.15.0 is available: 1.15.1 [GradleDependency]
testImplementation("com.squareup.moshi:moshi-kotlin:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:62: Warning: A newer version of androidx.room:room-testing than 2.6.1 is available: 2.8.4 [GradleDependency]
testImplementation("androidx.room:room-testing:2.6.1")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:65: Warning: A newer version of androidx.test:core than 1.5.0 is available: 1.7.0 [GradleDependency]
testImplementation("androidx.test:core:1.5.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:66: Warning: A newer version of androidx.test.ext:junit than 1.1.5 is available: 1.3.0 [GradleDependency]
testImplementation("androidx.test.ext:junit:1.1.5")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:67: Warning: A newer version of androidx.test:runner than 1.5.2 is available: 1.7.0 [GradleDependency]
testImplementation("androidx.test:runner:1.5.2")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explanation for issues of type "GradleDependency":
This detector looks for usages of libraries where the version you are using
is not the current stable release. Using older versions is fine, and there
are cases where you deliberately want to stick with an older version.
However, you may simply not be aware that a more recent version is
available, and that is what this lint check helps find.
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:49: Warning: This library supports using KSP instead of kapt, which greatly improves performance. Learn more: https://developer.android.com/studio/build/migrate-to-ksp [KaptUsageInsteadOfKsp]
kapt("androidx.room:room-compiler:2.6.1")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/mike/Code/RSSuper/native-route/android/build.gradle.kts:53: Warning: This library supports using KSP instead of kapt, which greatly improves performance. Learn more: https://developer.android.com/studio/build/migrate-to-ksp [KaptUsageInsteadOfKsp]
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.0")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explanation for issues of type "KaptUsageInsteadOfKsp":
KSP is a more efficient replacement for kapt. For libraries that support
both, KSP should be used to improve build times.
https://developer.android.com/studio/build/migrate-to-ksp
0 errors, 19 warnings