/home/jenkins/.jenkins/workspace/RESPECT-Primary/app-android/build.gradle.kts:123: 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 = libs.versions.android.targetSdk.get().toInt()
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:6: 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]
android-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/RESPECT-Primary/gradle/wrapper/gradle-wrapper.properties:4: Warning: A newer version of Gradle than 9.6.1 is available: 9.7.0 [AndroidGradlePluginVersion]
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.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:8: Warning: A newer version of androidx.appcompat:appcompat than 1.7.1 is available: 1.8.0 [GradleDependency]
androidx-appcompat = "1.7.1"
                     ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:37: Warning: A newer version of androidx.webkit:webkit than 1.14.0 is available: 1.17.0 [GradleDependency]
androidx-webkit = "1.14.0"
                  ~~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:65: Warning: A newer version of androidx.paging:paging-common than 3.5.0 is available: 3.5.1 [GradleDependency]
androidx-paging = "3.5.0"
                  ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:65: Warning: A newer version of androidx.paging:paging-runtime than 3.5.0 is available: 3.5.1 [GradleDependency]
androidx-paging = "3.5.0"
                  ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:66: Warning: A newer version of androidx.paging:paging-compose than 3.5.0 is available: 3.5.1 [GradleDependency]
androidx-paging-compose = "3.5.0" # Different as per https://developer.android.com/topic/libraries/architecture/paging/v3-overview
                          ~~~~~~~

   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/gradle/libs.versions.toml:13: Warning: A newer version of com.googlecode.libphonenumber:libphonenumber than 9.0.36 is available: 9.0.37 [NewerVersionAvailable]
libphonenumber-google = "9.0.36"
                        ~~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor.plugin than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-client-content-negotiation than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-client-core-jvm than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-client-json than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-client-okhttp than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-serialization-kotlinx-json than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-auth than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-auto-head-response than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-call-logging than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-conditional-headers than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-content-negotiation than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-core-jvm than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-cors than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-html-builder than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-netty-jvm than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-openapi than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-status-pages than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:21: Warning: A newer version of io.ktor:ktor-server-swagger than 3.5.1 is available: 3.5.2 [NewerVersionAvailable]
ktor = "3.5.1"
       ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:22: Warning: A newer version of ch.qos.logback:logback-classic than 1.6.1 is available: 1.6.3 [NewerVersionAvailable]
logback = "1.6.1"
          ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:23: Warning: A newer version of com.networknt:json-schema-validator than 1.5.9 is available: 3.0.6 [NewerVersionAvailable]
json-schema-validator = "1.5.9"
                        ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:26: Warning: A newer version of com.squareup.okhttp3:okhttp than 5.4.0 is available: 5.5.0 [NewerVersionAvailable]
okhttp = "5.4.0"
         ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:36: Warning: A newer version of io.github.koalaplot:koalaplot-core than 0.6.4 is available: 0.12.1 [NewerVersionAvailable]
koalaplot-version = "0.6.4"
                    ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:38: Warning: A newer version of org.jetbrains.kotlinx:kotlinx-io-core than 0.8.0 is available: 0.9.1 [NewerVersionAvailable]
kotlinx-io = "0.8.0"
             ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:38: Warning: A newer version of org.jetbrains.kotlinx:kotlinx-io-okio than 0.8.0 is available: 0.9.1 [NewerVersionAvailable]
kotlinx-io = "0.8.0"
             ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:41: Warning: A newer version of com.squareup.okhttp3:mockwebserver than 5.4.0 is available: 5.5.0 [NewerVersionAvailable]
mockwebserver =  "5.4.0"
                 ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:51: Warning: A newer version of io.github.pdvrieze.xmlutil:serialization than 1.0.1 is available: 1.0.2 [NewerVersionAvailable]
xmlutil = "1.0.1"
          ~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:62: Warning: A newer version of io.swagger.codegen.v3:swagger-codegen-cli than 3.0.81 is available: 3.0.82 [NewerVersionAvailable]
swagger-codegen = "3.0.81" # As per https://swagger.io/docs/open-source-tools/swagger-codegen/codegen-v3/about/
                  ~~~~~~~~
/home/jenkins/.jenkins/workspace/RESPECT-Primary/gradle/libs.versions.toml:63: Warning: A newer version of org.webjars:swagger-ui than 5.32.11 is available: 5.32.14 [NewerVersionAvailable]
swagger-ui = "5.32.11"
             ~~~~~~~~~

   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.

0 errors, 37 warnings
