/home/jenkins/.jenkins/workspace/compose-video-mod/sample/build.gradle.kts:13: 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 = 32
~~~~~~~~~~~~~~
Explanation for issues of type "OldTargetApi":
When your application runs on a version of Android that is more recent than
your targetSdkVersion 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 targetSdkVersion
is less than 14, your app may get an option button in the UI.
To fix this issue, set the targetSdkVersion 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/compose-video-mod/sample/src/main/res/values/colors.xml:3: Warning: The resource R.color.purple_200 appears to be unused [UnusedResources]
#FFBB86FC
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:4: Warning: The resource R.color.purple_500 appears to be unused [UnusedResources]
#FF6200EE
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:5: Warning: The resource R.color.purple_700 appears to be unused [UnusedResources]
#FF3700B3
~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:6: Warning: The resource R.color.teal_200 appears to be unused [UnusedResources]
#FF03DAC5
~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:7: Warning: The resource R.color.teal_700 appears to be unused [UnusedResources]
#FF018786
~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:8: Warning: The resource R.color.black appears to be unused [UnusedResources]
#FF000000
~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/values/colors.xml:9: Warning: The resource R.color.white appears to be unused [UnusedResources]
#FFFFFFFF
~~~~~~~~~~~~
Explanation for issues of type "UnusedResources":
Unused resources make applications larger and slow down builds.
The unused resource check can ignore tests. If you want to include
resources that are only referenced from tests, consider packaging them in a
test source set instead.
You can include test sources in the unused resource check by setting the
system property lint.unused-resources.include-tests =true, and to exclude
them (usually for performance reasons), use
lint.unused-resources.exclude-tests =true.
,
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:2: Warning: The application adaptive icon is missing a monochrome tag [MonochromeLauncherIcon]
^
/home/jenkins/.jenkins/workspace/compose-video-mod/sample/src/main/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.
0 errors, 10 warnings