/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/build.gradle.kts:49: Warning: Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details. [OldTargetApi]
targetSdk = 36
~~~~~~~~~~~~~~
Explanation for issues of type "OldTargetApi":
When your application or sdk runs on a version of Android that is more
recent than your targetSdk specifies that it has been tested with, various
compatibility modes kick in. This ensures that your application continues
to work, but it may look out of place. For example, if the targetSdk is
less than 14, your app may get an option button in the UI.
To fix this issue, set the targetSdk to the highest available value. Then
test your app to make sure everything works correctly. You may want to
consult the compatibility notes to see what changes apply to each version
you are adding support for:
https://developer.android.com/reference/android/os/Build.VERSION_CODES.html
as well as follow this guide:
https://developer.android.com/distribute/best-practices/develop/target-sdk.
html
https://developer.android.com/distribute/best-practices/develop/target-sdk.html
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/AndroidManifest.xml:27: Warning: Redundant label can be removed [RedundantLabel]
android:label="@string/app_name"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explanation for issues of type "RedundantLabel":
When an activity does not have a label attribute, it will use the one from
the application tag. Since the application has already specified the same
label, the label on this activity can be omitted.
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/gradle/wrapper/gradle-wrapper.properties:4: Warning: A newer version of Gradle than 9.4.1 is available: 9.6.1 [AndroidGradlePluginVersion]
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.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/DemoLaunchableApp/gradle/libs.versions.toml:10: Warning: A newer version of androidx.compose:compose-bom than 2025.12.00 is available: 2026.06.00 [GradleDependency]
composeBom = "2025.12.00"
~~~~~~~~~~~~
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/DemoLaunchableApp/gradle/libs.versions.toml:9: Warning: A newer version of org.jetbrains.kotlin.plugin.compose than 2.2.10 is available: 2.4.0 [NewerVersionAvailable]
kotlin = "2.2.10"
~~~~~~~~
Explanation for issues of type "NewerVersionAvailable":
This detector checks with a central repository to see if there are newer
versions available for the dependencies used by this project. This is
similar to the GradleDependency check, which checks for newer versions
available in the Android SDK tools and libraries, but this works with any
MavenCentral dependency, and connects to the library every time, which
makes it more flexible but also much slower.
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:3: Warning: The resource R.color.purple_200 appears to be unused [UnusedResources]
#FFBB86FC
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:4: Warning: The resource R.color.purple_500 appears to be unused [UnusedResources]
#FF6200EE
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:5: Warning: The resource R.color.purple_700 appears to be unused [UnusedResources]
#FF3700B3
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:6: Warning: The resource R.color.teal_200 appears to be unused [UnusedResources]
#FF03DAC5
~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:7: Warning: The resource R.color.teal_700 appears to be unused [UnusedResources]
#FF018786
~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:8: Warning: The resource R.color.black appears to be unused [UnusedResources]
#FF000000
~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/values/colors.xml:9: Warning: The resource R.color.white appears to be unused [UnusedResources]
#FFFFFFFF
~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/DemoLaunchableApp/app/src/main/res/drawable/ic_account_box.xml:1: Warning: The resource R.drawable.ic_account_box appears to be unused [UnusedResources]
like this:
```xml
```
0 errors, 15 warnings