/home/jenkins/.jenkins/workspace/RESPECT-Primary/composeApp/src/androidMain/AndroidManifest.xml:14: Error: Class referenced in the manifest, world.respect.app.MainActivity, was not found in the project or the libraries [MissingClass] android:name=".MainActivity"> ~~~~~~~~~~~~~ Explanation for issues of type "MissingClass": If a class is referenced in the manifest or in a layout file, it must also exist in the project (or in one of the libraries included by the project. This check helps uncover typos in registration names, or attempts to rename or move classes without updating the XML references properly. https://developer.android.com/guide/topics/manifest/manifest-intro.html /home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/wrapper/gradle-wrapper.properties:3: Warning: A newer version of Gradle than 8.11.1 is available: 8.14 [AndroidGradlePluginVersion] distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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. /home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:9: Warning: A newer version of androidx.core:core-ktx than 1.15.0 is available: 1.16.0 [GradleDependency] androidx-core-ktx = "1.15.0" ~~~~~~~~ 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. /home/jenkins/.jenkins/workspace/RESPECT-Primary/composeApp/src/androidMain/res/drawable-v24: Warning: This folder configuration (v24) is unnecessary; minSdkVersion is 24. Merge all the resources in this folder into drawable. [ObsoleteSdkInt] Explanation for issues of type "ObsoleteSdkInt": This check flags version checks that are not necessary, because the minSdkVersion (or surrounding known API level) is already at least as high as the version checked for. Similarly, it also looks for resources in -vNN folders, such as values-v14 where the version qualifier is less than or equal to the minSdkVersion, where the contents should be merged into the best folder. /home/jenkins/.jenkins/workspace/RESPECT-Primary/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml:2: Warning: The application adaptive icon is missing a monochrome tag [MonochromeLauncherIcon] ^ /home/jenkins/.jenkins/workspace/RESPECT-Primary/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml:2: Warning: The application adaptive roundIcon is missing a monochrome tag [MonochromeLauncherIcon] ^ Explanation for issues of type "MonochromeLauncherIcon": If android:roundIcon and android:icon are both in your manifest, you must either remove the reference to android:roundIcon if it is not needed; or, supply the monochrome icon in the drawable defined by the android:roundIcon and android:icon attribute. For example, if android:roundIcon and android:icon are both in the manifest, a launcher might choose to use android:roundIcon over android:icon to display the adaptive app icon. Therefore, your themed application iconwill not show if your monochrome attribute is not also specified in android:roundIcon. 1 error, 5 warnings