Files
kiosk/docs/reviews/2026-09-20/lint-results-debug.xml

5163 lines
415 KiB
XML
Raw Permalink 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.
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 8.10.0">
<issue
id="ScopedStorage"
severity="Warning"
message="READ_EXTERNAL_STORAGE is deprecated (and is not granted) when targeting Android 13+. If you need to query or interact with MediaStore or media files on the shared storage, you should instead use one or more new storage permissions: `READ_MEDIA_IMAGES`, `READ_MEDIA_VIDEO` or `READ_MEDIA_AUDIO`."
category="Correctness"
priority="8"
summary="Affected by scoped storage"
explanation="Scoped storage is enforced on Android 10+ (or Android 11+ if using `requestLegacyExternalStorage`). In particular, `WRITE_EXTERNAL_STORAGE` will no longer provide write access to all files; it will provide the equivalent of `READ_EXTERNAL_STORAGE` instead.&#xA;&#xA;As of Android 13, if you need to query or interact with MediaStore or media files on the shared storage, you should be using instead one or more new storage permissions:&#xA;* `android.permission.READ_MEDIA_IMAGES`&#xA;* `android.permission.READ_MEDIA_VIDEO`&#xA;* `android.permission.READ_MEDIA_AUDIO`&#xA;&#xA;and then add `maxSdkVersion=&quot;33&quot;` to the older permission. See the developer guide for how to do this: https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions&#xA;&#xA;The `MANAGE_EXTERNAL_STORAGE` permission can be used to manage all files, but it is rarely necessary and most apps on Google Play are not allowed to use it. Most apps should instead migrate to use scoped storage. To modify or delete files, apps should request write access from the user as described at https://goo.gle/android-mediastore-createwriterequest.&#xA;&#xA;To learn more, read these resources: Play policy: https://goo.gle/policy-storage-help Allowable use cases: https://goo.gle/policy-storage-usecases"
url="https://goo.gle/android-storage-usecases"
urls="https://goo.gle/android-storage-usecases"
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.READ_EXTERNAL_STORAGE&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/AndroidManifest.xml"
line="17"
column="36"/>
</issue>
<issue
id="ScopedStorage"
severity="Warning"
message="WRITE_EXTERNAL_STORAGE is deprecated (and is not granted) when targeting Android 13+. If you need to write to shared storage, use the `MediaStore.createWriteRequest` intent."
category="Correctness"
priority="8"
summary="Affected by scoped storage"
explanation="Scoped storage is enforced on Android 10+ (or Android 11+ if using `requestLegacyExternalStorage`). In particular, `WRITE_EXTERNAL_STORAGE` will no longer provide write access to all files; it will provide the equivalent of `READ_EXTERNAL_STORAGE` instead.&#xA;&#xA;As of Android 13, if you need to query or interact with MediaStore or media files on the shared storage, you should be using instead one or more new storage permissions:&#xA;* `android.permission.READ_MEDIA_IMAGES`&#xA;* `android.permission.READ_MEDIA_VIDEO`&#xA;* `android.permission.READ_MEDIA_AUDIO`&#xA;&#xA;and then add `maxSdkVersion=&quot;33&quot;` to the older permission. See the developer guide for how to do this: https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions&#xA;&#xA;The `MANAGE_EXTERNAL_STORAGE` permission can be used to manage all files, but it is rarely necessary and most apps on Google Play are not allowed to use it. Most apps should instead migrate to use scoped storage. To modify or delete files, apps should request write access from the user as described at https://goo.gle/android-mediastore-createwriterequest.&#xA;&#xA;To learn more, read these resources: Play policy: https://goo.gle/policy-storage-help Allowable use cases: https://goo.gle/policy-storage-usecases"
url="https://goo.gle/android-storage-usecases"
urls="https://goo.gle/android-storage-usecases"
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.WRITE_EXTERNAL_STORAGE&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/AndroidManifest.xml"
line="18"
column="36"/>
</issue>
<issue
id="DefaultLocale"
severity="Warning"
message="Implicitly using the default locale is a common source of bugs: Use `String.format(Locale, ...)` instead"
category="Correctness"
priority="6"
summary="Implied default locale in case conversion"
explanation="Calling `String#toLowerCase()` or `#toUpperCase()` **without specifying an explicit locale** is a common source of bugs. The reason for that is that those methods will use the current locale on the user&apos;s device, and even though the code appears to work correctly when you are developing the app, it will fail in some locales. For example, in the Turkish locale, the uppercase replacement for `i` is **not** `I`.&#xA;&#xA;If you want the methods to just perform ASCII replacement, for example to convert an enum name, call `String#toUpperCase(Locale.ROOT)` instead. If you really want to use the current locale, call `String#toUpperCase(Locale.getDefault())` instead."
url="https://developer.android.com/reference/java/util/Locale.html#default_locale"
urls="https://developer.android.com/reference/java/util/Locale.html#default_locale"
errorLine1=" val ip = String.format("
errorLine2=" ^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/printer/viewmodel/PrinterManageViewModel.kt"
line="114"
column="26"/>
</issue>
<issue
id="NotificationPermission"
severity="Error"
message="When targeting Android 13 or higher, posting a permission requires holding the `POST_NOTIFICATIONS` permission (usage from com.bumptech.glide.request.target.NotificationTarget)"
category="Correctness"
priority="6"
summary="Notifications Without Permission"
explanation="When targeting Android 13 and higher, posting permissions requires holding the runtime permission `android.permission.POST_NOTIFICATIONS`.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/AndroidManifest.xml"/>
</issue>
<issue
id="InflateParams"
severity="Warning"
message="Avoid passing `null` as the view root (needed to resolve layout parameters on the inflated layout&apos;s root element)"
category="Correctness"
priority="5"
summary="Layout Inflation without a Parent"
explanation="When inflating a layout, avoid passing in null as the parent view, since otherwise any layout parameters on the root of the inflated layout will be ignored."
url="https://www.bignerdranch.com/blog/understanding-androids-layoutinflater-inflate/"
urls="https://www.bignerdranch.com/blog/understanding-androids-layoutinflater-inflate/"
errorLine1=" LayoutInflater.from(ctx).inflate(R.layout.poster_live_player_view, null, false) as PlayerView"
errorLine2=" ~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/poster/view/PosterScreenWithLiveOrSlideshow.kt"
line="158"
column="84"/>
</issue>
<issue
id="SelectedPhotoAccess"
severity="Warning"
message="Your app is currently not handling Selected Photos Access introduced in Android 14+"
category="Correctness"
priority="5"
summary="Behavior change when requesting photo library access"
explanation="Selected Photo Access is a new ability for users to share partial access to their photo library when apps request access to their device storage on Android 14+.&#xA;&#xA;Instead of letting the system manage the selection lifecycle, we recommend you adapt your app to handle partial access to the photo library."
url="https://developer.android.com/about/versions/14/changes/partial-photo-video-access"
urls="https://developer.android.com/about/versions/14/changes/partial-photo-video-access"
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.READ_MEDIA_IMAGES&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/AndroidManifest.xml"
line="15"
column="36"/>
</issue>
<issue
id="SelectedPhotoAccess"
severity="Warning"
message="Your app is currently not handling Selected Photos Access introduced in Android 14+"
category="Correctness"
priority="5"
summary="Behavior change when requesting photo library access"
explanation="Selected Photo Access is a new ability for users to share partial access to their photo library when apps request access to their device storage on Android 14+.&#xA;&#xA;Instead of letting the system manage the selection lifecycle, we recommend you adapt your app to handle partial access to the photo library."
url="https://developer.android.com/about/versions/14/changes/partial-photo-video-access"
urls="https://developer.android.com/about/versions/14/changes/partial-photo-video-access"
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.READ_MEDIA_VIDEO&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/AndroidManifest.xml"
line="16"
column="36"/>
</issue>
<issue
id="VectorRaster"
severity="Warning"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
category="Correctness"
priority="5"
summary="Vector Image Generation"
explanation="Vector icons require API 21 or API 24 depending on used features, but when `minSdkVersion` is less than 21 or 24 and Android Gradle plugin 1.4 or higher is used, a vector drawable placed in the `drawable` folder is automatically moved to `drawable-anydpi-v21` or `drawable-anydpi-v24` and bitmap images are generated for different screen resolutions for backwards compatibility.&#xA;&#xA;However, there are some limitations to this raster image generation, and this lint check flags elements and attributes that are not fully supported. You should manually check whether the generated output is acceptable for those older devices."
errorLine1=" android:width=&quot;1024dp&quot;"
errorLine2=" ~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_img_transfer.xml"
line="3"
column="20"/>
</issue>
<issue
id="VectorRaster"
severity="Warning"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
category="Correctness"
priority="5"
summary="Vector Image Generation"
explanation="Vector icons require API 21 or API 24 depending on used features, but when `minSdkVersion` is less than 21 or 24 and Android Gradle plugin 1.4 or higher is used, a vector drawable placed in the `drawable` folder is automatically moved to `drawable-anydpi-v21` or `drawable-anydpi-v24` and bitmap images are generated for different screen resolutions for backwards compatibility.&#xA;&#xA;However, there are some limitations to this raster image generation, and this lint check flags elements and attributes that are not fully supported. You should manually check whether the generated output is acceptable for those older devices."
errorLine1=" android:width=&quot;1024dp&quot;"
errorLine2=" ~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_video_transfer.xml"
line="3"
column="20"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of org.jetbrains.kotlin.android than 2.1.10 is available: 2.4.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="kotlin = &quot;2.1.10&quot;"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="4"
column="10"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.core:core-ktx than 1.15.0 is available: 1.17.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="coreKtx = &quot;1.15.0&quot;"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="5"
column="11"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.media3:media3-exoplayer than 1.7.1 is available: 1.9.2"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="media3Exoplayer = &quot;1.7.1&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="52"
column="19"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.room:room-runtime than 2.6.1 is available: 2.7.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="room-runtime = &quot;2.6.1&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="62"
column="16"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.room:room-ktx than 2.6.1 is available: 2.7.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="room-ktx = &quot;2.6.1&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="63"
column="12"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.room:room-compiler than 2.6.1 is available: 2.7.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="room-compiler = &quot;2.6.1&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="64"
column="17"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of com.github.bumptech.glide:compiler than 4.12.0 is available: 4.15.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="glide = &quot;4.12.0&quot;"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="72"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of com.github.bumptech.glide:glide than 4.12.0 is available: 4.15.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="glide = &quot;4.12.0&quot;"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="72"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.lifecycle:lifecycle-viewmodel-ktx than 2.8.4 is available: 2.9.4"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="lifecycle-viewmodel-ktx = &quot;2.8.4&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="74"
column="27"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of com.huawei.agconnect:agcp than 1.6.0.300 is available: 1.9.6.300"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="huawei-agcp = &quot;1.6.0.300&quot;"
errorLine2=" ~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="79"
column="15"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:honor than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:huawei than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:meizu than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:oppo than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:vivo than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk.plugin:xiaomi than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of cn.jiguang.sdk:jpush than 5.8.0 is available: 6.2.0"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jpush = &quot;5.8.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="80"
column="9"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of com.huawei.hms:push than 6.13.0.300 is available: 6.13.0.301"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="hms-push = &quot;6.13.0.300&quot;"
errorLine2=" ~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="81"
column="12"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of commons-codec:commons-codec than 1.6 is available: 1.17.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="commons-codec = &quot;1.6&quot;"
errorLine2=" ~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="85"
column="17"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of androidx.annotation:annotation than 1.1.0 is available: 1.9.1"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="annotation = &quot;1.1.0&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="86"
column="14"/>
</issue>
<issue
id="GradleDependency"
severity="Warning"
message="A newer version of org.glassfish.jaxb:jaxb-runtime than 2.3.1 is available: 2.3.2"
category="Correctness"
priority="4"
summary="Obsolete Gradle Dependency"
explanation="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."
errorLine1="jaxb-runtime = &quot;2.3.1&quot;"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/gradle/libs.versions.toml"
line="91"
column="16"/>
</issue>
<issue
id="UnsafeOptInUsageError"
severity="Error"
message="This declaration is opt-in and its usage should be marked with `@androidx.media3.common.util.UnstableApi` or `@OptIn(markerClass = androidx.media3.common.util.UnstableApi.class)`"
category="Correctness"
priority="4"
summary="Unsafe opt-in usage intended to be error-level severity"
explanation="This API has been flagged as opt-in with error-level severity.&#xA;&#xA;Any declaration annotated with this marker is considered part of an unstable or&#xA;otherwise non-standard API surface and its call sites should accept the opt-in&#xA;aspect of it by using the `@OptIn` annotation, using the marker annotation --&#xA;effectively causing further propagation of the opt-in aspect -- or configuring&#xA;the `UnsafeOptInUsageError` check&apos;s options for project-wide opt-in.&#xA;&#xA;To configure project-wide opt-in, specify the `opt-in` option value in `lint.xml`&#xA;as a comma-delimited list of opted-in annotations:&#xA;&#xA;```&#xA;&lt;lint>&#xA; &lt;issue id=&quot;UnsafeOptInUsageError&quot;>&#xA; &lt;option name=&quot;opt-in&quot; value=&quot;com.foo.ExperimentalBarAnnotation&quot; />&#xA; &lt;/issue>&#xA;&lt;/lint>&#xA;```"
errorLine1=" HomeScreen(isVideoPlaying = isHomeVideoPlaying)"
errorLine2=" ~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/navigation/AppNavHost.kt"
line="94"
column="13"/>
</issue>
<issue
id="UnsafeOptInUsageError"
severity="Error"
message="This declaration is opt-in and its usage should be marked with `@androidx.media3.common.util.UnstableApi` or `@OptIn(markerClass = androidx.media3.common.util.UnstableApi.class)`"
category="Correctness"
priority="4"
summary="Unsafe opt-in usage intended to be error-level severity"
explanation="This API has been flagged as opt-in with error-level severity.&#xA;&#xA;Any declaration annotated with this marker is considered part of an unstable or&#xA;otherwise non-standard API surface and its call sites should accept the opt-in&#xA;aspect of it by using the `@OptIn` annotation, using the marker annotation --&#xA;effectively causing further propagation of the opt-in aspect -- or configuring&#xA;the `UnsafeOptInUsageError` check&apos;s options for project-wide opt-in.&#xA;&#xA;To configure project-wide opt-in, specify the `opt-in` option value in `lint.xml`&#xA;as a comma-delimited list of opted-in annotations:&#xA;&#xA;```&#xA;&lt;lint>&#xA; &lt;issue id=&quot;UnsafeOptInUsageError&quot;>&#xA; &lt;option name=&quot;opt-in&quot; value=&quot;com.foo.ExperimentalBarAnnotation&quot; />&#xA; &lt;/issue>&#xA;&lt;/lint>&#xA;```"
errorLine1=" val dataSourceFactory = DefaultDataSource.Factory(context, RtmpDataSource.Factory())"
errorLine2=" ~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/poster/view/PosterScreenWithLiveOrSlideshow.kt"
line="115"
column="87"/>
</issue>
<issue
id="UnsafeOptInUsageError"
severity="Error"
message="This declaration is opt-in and its usage should be marked with `@androidx.media3.common.util.UnstableApi` or `@OptIn(markerClass = androidx.media3.common.util.UnstableApi.class)`"
category="Correctness"
priority="4"
summary="Unsafe opt-in usage intended to be error-level severity"
explanation="This API has been flagged as opt-in with error-level severity.&#xA;&#xA;Any declaration annotated with this marker is considered part of an unstable or&#xA;otherwise non-standard API surface and its call sites should accept the opt-in&#xA;aspect of it by using the `@OptIn` annotation, using the marker annotation --&#xA;effectively causing further propagation of the opt-in aspect -- or configuring&#xA;the `UnsafeOptInUsageError` check&apos;s options for project-wide opt-in.&#xA;&#xA;To configure project-wide opt-in, specify the `opt-in` option value in `lint.xml`&#xA;as a comma-delimited list of opted-in annotations:&#xA;&#xA;```&#xA;&lt;lint>&#xA; &lt;issue id=&quot;UnsafeOptInUsageError&quot;>&#xA; &lt;option name=&quot;opt-in&quot; value=&quot;com.foo.ExperimentalBarAnnotation&quot; />&#xA; &lt;/issue>&#xA;&lt;/lint>&#xA;```"
errorLine1=" .setMediaSourceFactory(DefaultMediaSourceFactory(dataSourceFactory))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/poster/view/PosterScreenWithLiveOrSlideshow.kt"
line="117"
column="40"/>
</issue>
<issue
id="ComposableNaming"
severity="Warning"
message="Composable functions with a return type should start with a lowercase letter"
category="Correctness"
priority="3"
summary="Incorrect naming for @Composable functions"
explanation="@Composable functions without a return type should use similar naming to classes, starting with an uppercase letter and ending with a noun. @Composable functions with a return type should be treated as normal Kotlin functions, starting with a lowercase letter."
errorLine1="fun AgreementTextAnnotatedString("
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/common/view/AgreementRow.kt"
line="128"
column="5"/>
</issue>
<issue
id="ConfigurationScreenWidthHeight"
severity="Warning"
message="Using Configuration.screenHeightDp instead of LocalWindowInfo.current.containerSize"
category="Correctness"
priority="3"
summary="Using Configuration.screenWidthDp/screenHeightDp instead of LocalWindowInfo.current.containerSize"
explanation="Configuration.screenWidthDp and Configuration.screenHeightDp have different insets behaviour depending on target SDK version, and are rounded to the nearest Dp. This means that using these values in composition to size a layout can result in issues, as these values do not accurately represent the actual available window size. Instead it is recommended to use WindowInfo.containerSize which accurately represents the window size."
errorLine1=" val screenHeightDp = configuration.screenHeightDp.dp"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/component/modal/BottomModal.kt"
line="94"
column="26"/>
</issue>
<issue
id="ConfigurationScreenWidthHeight"
severity="Warning"
message="Using Configuration.screenWidthDp instead of LocalWindowInfo.current.containerSize"
category="Correctness"
priority="3"
summary="Using Configuration.screenWidthDp/screenHeightDp instead of LocalWindowInfo.current.containerSize"
explanation="Configuration.screenWidthDp and Configuration.screenHeightDp have different insets behaviour depending on target SDK version, and are rounded to the nearest Dp. This means that using these values in composition to size a layout can result in issues, as these values do not accurately represent the actual available window size. Instead it is recommended to use WindowInfo.containerSize which accurately represents the window size."
errorLine1=" val screenWidth = LocalConfiguration.current.screenWidthDp.dp"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/view/DeviceConfigScreen.kt"
line="385"
column="39"/>
</issue>
<issue
id="LocalContextResourcesRead"
severity="Warning"
message="Reading Resources using LocalContext.current.resources"
category="Correctness"
priority="3"
summary="Reading Resources using LocalContext.current.resources"
explanation="Changes to the Configuration object will not cause LocalContext.current.resources reads to be invalidated, so calls to APIs suchas Resources.getString() will not be updated when the Configuration changes. Instead, use LocalResources.current to retrieve the Resources - this will invalidate callers when the Configuration changes, to ensure that these calls reflect the latest values."
errorLine1=" val resources = LocalContext.current.resources"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/face/view/ElectronicCompletionScreen.kt"
line="95"
column="21"/>
</issue>
<issue
id="ModifierParameter"
severity="Warning"
message="Modifier parameter should be the first optional parameter"
category="Correctness"
priority="3"
summary="Guidelines for Modifier parameters in a Composable function"
explanation="The first (or only) Modifier parameter in a Composable function should follow the following rules:&#xA;- Be named `modifier`&#xA;- Have a type of `Modifier`&#xA;- Either have no default value, or have a default value of `Modifier`&#xA;- If optional, be the first optional parameter in the parameter list"
errorLine1=" modifier: Modifier = Modifier,"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/common/view/AgreementRow.kt"
line="45"
column="5"/>
</issue>
<issue
id="ModifierParameter"
severity="Warning"
message="Modifier parameter should be the first optional parameter"
category="Correctness"
priority="3"
summary="Guidelines for Modifier parameters in a Composable function"
explanation="The first (or only) Modifier parameter in a Composable function should follow the following rules:&#xA;- Be named `modifier`&#xA;- Have a type of `Modifier`&#xA;- Either have no default value, or have a default value of `Modifier`&#xA;- If optional, be the first optional parameter in the parameter list"
errorLine1=" modifier: Modifier = Modifier"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="204"
column="5"/>
</issue>
<issue
id="ModifierParameter"
severity="Warning"
message="Modifier parameter should be the first optional parameter"
category="Correctness"
priority="3"
summary="Guidelines for Modifier parameters in a Composable function"
explanation="The first (or only) Modifier parameter in a Composable function should follow the following rules:&#xA;- Be named `modifier`&#xA;- Have a type of `Modifier`&#xA;- Either have no default value, or have a default value of `Modifier`&#xA;- If optional, be the first optional parameter in the parameter list"
errorLine1=" modifier: Modifier = Modifier"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="627"
column="5"/>
</issue>
<issue
id="ModifierParameter"
severity="Warning"
message="Modifier parameter should be the first optional parameter"
category="Correctness"
priority="3"
summary="Guidelines for Modifier parameters in a Composable function"
explanation="The first (or only) Modifier parameter in a Composable function should follow the following rules:&#xA;- Be named `modifier`&#xA;- Have a type of `Modifier`&#xA;- Either have no default value, or have a default value of `Modifier`&#xA;- If optional, be the first optional parameter in the parameter list"
errorLine1=" modifier: Modifier = Modifier"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/common/view/PasswordInputField.kt"
line="56"
column="5"/>
</issue>
<issue
id="ModifierParameter"
severity="Warning"
message="Modifier parameter should be the first optional parameter"
category="Correctness"
priority="3"
summary="Guidelines for Modifier parameters in a Composable function"
explanation="The first (or only) Modifier parameter in a Composable function should follow the following rules:&#xA;- Be named `modifier`&#xA;- Have a type of `Modifier`&#xA;- Either have no default value, or have a default value of `Modifier`&#xA;- If optional, be the first optional parameter in the parameter list"
errorLine1=" modifier: Modifier = Modifier,"
errorLine2=" ~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/common/view/PhoneInputField.kt"
line="45"
column="5"/>
</issue>
<issue
id="HardwareIds"
severity="Warning"
message="Using `getString` to get device identifiers is not recommended"
category="Security"
priority="6"
summary="Hardware Id Usage"
explanation="Using these device identifiers is not recommended other than for high value fraud prevention and advanced telephony use-cases. For advertising use-cases, use `AdvertisingIdClient$Info#getId` and for analytics, use `InstanceId#getId`."
url="https://developer.android.com/training/articles/user-data-ids.html"
urls="https://developer.android.com/training/articles/user-data-ids.html"
errorLine1=" Settings.Secure.getString(context.contentResolver, Settings.Secure.ANDROID_ID) ?: &quot;&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/viewmodel/DeviceConfigViewModel.kt"
line="367"
column="17"/>
</issue>
<issue
id="HardwareIds"
severity="Warning"
message="Using `SERIAL` to get device identifiers is not recommended"
category="Security"
priority="6"
summary="Hardware Id Usage"
explanation="Using these device identifiers is not recommended other than for high value fraud prevention and advanced telephony use-cases. For advertising use-cases, use `AdvertisingIdClient$Info#getId` and for analytics, use `InstanceId#getId`."
url="https://developer.android.com/training/articles/user-data-ids.html"
urls="https://developer.android.com/training/articles/user-data-ids.html"
errorLine1=" Build.SERIAL"
errorLine2=" ~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/viewmodel/DeviceConfigViewModel.kt"
line="370"
column="23"/>
</issue>
<issue
id="SetJavaScriptEnabled"
severity="Warning"
message="Using `setJavaScriptEnabled` can introduce XSS vulnerabilities into your application, review carefully"
category="Security"
priority="6"
summary="Using `setJavaScriptEnabled`"
explanation="Your code should not invoke `setJavaScriptEnabled` if you are not sure that your app really requires JavaScript support."
url="https://goo.gle/SetJavaScriptEnabled"
urls="https://goo.gle/SetJavaScriptEnabled,https://developer.android.com/training/articles/security-tips"
errorLine1=" settings.javaScriptEnabled = true"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/setting/view/AgreementScreen.kt"
line="83"
column="25"/>
</issue>
<issue
id="ObsoleteSdkInt"
severity="Warning"
message="Unnecessary; `SDK_INT` is always >= 26"
category="Performance"
priority="6"
summary="Obsolete SDK_INT Version Check"
explanation="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.&#xA;&#xA;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."
errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/receiver/BootReceiver.kt"
line="97"
column="21"/>
</issue>
<issue
id="ObsoleteSdkInt"
severity="Warning"
message="Unnecessary; `SDK_INT` is always >= 26"
category="Performance"
priority="6"
summary="Obsolete SDK_INT Version Check"
explanation="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.&#xA;&#xA;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."
errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/viewmodel/DeviceConfigViewModel.kt"
line="366"
column="17"/>
</issue>
<issue
id="ObsoleteSdkInt"
severity="Warning"
message="Unnecessary; `SDK_INT` is always >= 26"
category="Performance"
priority="6"
summary="Obsolete SDK_INT Version Check"
explanation="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.&#xA;&#xA;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."
errorLine1=" val apkUri = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/utils/VersionUpdateManager.kt"
line="628"
column="26"/>
</issue>
<issue
id="ObsoleteSdkInt"
severity="Warning"
message="Unnecessary; `SDK_INT` is always >= 26"
category="Performance"
priority="6"
summary="Obsolete SDK_INT Version Check"
explanation="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.&#xA;&#xA;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."
errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/utils/VersionUpdateManager.kt"
line="653"
column="13"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (969 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M11.333,4.33Q11.306,5.107 10.778,6.134Q10.25,7.161 9.556,8.132Q8.889,9.076 8.417,9.659Q8.25,9.853 8,9.853Q7.75,9.853 7.583,9.659Q7.111,9.076 6.444,8.132Q5.75,7.161 5.222,6.134Q4.694,5.107 4.667,4.33Q4.694,2.915 5.639,1.971Q6.583,1.028 8,1Q9.417,1.028 10.361,1.971Q11.306,2.915 11.333,4.33ZM11.556,6.551Q11.694,6.273 11.833,5.995Q11.833,5.968 11.833,5.94Q11.861,5.912 11.861,5.884L15.083,4.608Q15.444,4.469 15.694,4.663Q15.972,4.858 16,5.218L16,12.739Q15.972,13.183 15.583,13.35L11.556,14.96L11.556,6.551ZM3.833,4.83Q3.944,5.44 4.167,5.995Q4.306,6.273 4.444,6.551L4.444,13.544L0.917,14.96Q0.556,15.071 0.306,14.876Q0.028,14.71 0,14.321L0,6.828Q0.028,6.384 0.417,6.19L3.833,4.83ZM9.111,10.214Q9.75,9.437 10.667,8.077L10.667,14.987L5.333,13.461L5.333,8.077Q6.25,9.437 6.889,10.214Q7.361,10.741 8,10.741Q8.639,10.741 9.111,10.214ZM8,5.218Q8.639,5.191 8.972,4.663Q9.25,4.108 8.972,3.553Q8.639,3.026 8,2.998Q7.361,3.026 7.028,3.553Q6.75,4.108 7.028,4.663Q7.361,5.191 8,5.218Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_area_authority.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (988 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M20.009,22.794L4.094,22.794C3.303,22.794 2.65,22.141 2.65,21.35L2.65,5.503C2.65,4.712 3.303,4.059 4.094,4.059L4.816,4.059L4.816,6.225C4.816,7.016 5.469,7.669 6.259,7.669L17.826,7.669C18.617,7.669 19.27,7.016 19.27,6.225L19.27,4.059L19.992,4.059C20.783,4.059 21.436,4.712 21.436,5.503L21.436,21.35C21.453,22.141 20.8,22.794 20.009,22.794ZM16.778,12.997C16.348,12.584 15.661,12.584 15.231,12.997L11.364,16.675L9.559,14.956C9.13,14.544 8.442,14.544 8.012,14.956C7.583,15.369 7.583,16.022 8.012,16.417L10.591,18.858C11.02,19.27 11.708,19.27 12.137,18.858L16.778,14.458C17.208,14.062 17.208,13.409 16.778,12.997ZM15.661,6.225L8.442,6.225C7.651,6.225 6.998,5.572 6.998,4.781L6.998,4.059C9.886,1.945 9.92,1.911 10.676,1.189L13.547,1.189C14.251,1.859 14.234,1.945 17.105,4.059L17.105,4.781C17.105,5.589 16.469,6.225 15.661,6.225ZM12.051,2.633C11.261,2.633 10.608,3.286 10.608,4.076C10.608,4.867 11.261,5.52 12.051,5.52C12.842,5.52 13.495,4.867 13.495,4.076C13.495,3.269 12.842,2.633 12.051,2.633Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_assignment.xml"
line="13"
column="29"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1252 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M22.706,13.802L13.949,21.324C13.416,21.746 12.738,22 12,22C11.268,22 10.596,21.749 10.064,21.334L1.311,13.822C1.12,13.606 1,13.328 1,13.02C1,12.459 1.387,11.99 1.911,11.846C1.911,11.846 2.037,11.798 2.221,11.798C2.404,11.798 4.8,11.798 4.8,11.798L4.8,3.961C4.8,2.833 5.665,2 6.811,2L17.189,2C18.335,2 19.2,2.833 19.2,3.961L19.2,11.798L21.73,11.798C21.738,11.798 21.746,11.796 21.755,11.796C21.763,11.796 21.771,11.798 21.779,11.798L21.808,11.798L21.81,11.801C22.471,11.83 23,12.363 23,13.02C23,13.319 22.887,13.59 22.706,13.802ZM14.8,10.431C15.258,10.431 15.528,10.082 15.528,9.632C15.528,9.181 15.258,8.863 14.8,8.863L13.035,8.862L14.859,7.065C15.185,6.744 15.185,6.224 14.859,5.902C14.532,5.581 14.003,5.581 13.676,5.902L11.986,7.565L10.302,5.909C9.976,5.588 9.446,5.588 9.12,5.909C8.793,6.23 8.793,6.751 9.12,7.071L10.942,8.863L9.2,8.863C8.742,8.863 8.472,9.181 8.472,9.632C8.472,10.082 8.742,10.431 9.2,10.431L11,10.431L11,11.412L9.2,11.412C8.742,11.412 8.472,11.704 8.472,12.155C8.472,12.605 8.742,12.98 9.2,12.98L11,12.98L11,14.157C11,14.72 11.427,15.137 12,15.137C12.573,15.137 13,14.72 13,14.157L13,12.98L14.851,12.98C15.31,12.98 15.528,12.679 15.528,12.229C15.528,11.642 15.209,11.412 14.751,11.412L13,11.412L13,10.431L14.8,10.431L14.8,10.431Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_attach_money.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (906 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M14.897,7.829L7.826,14.9L7.826,14.9Q7.757,14.97 7.702,15.052Q7.647,15.134 7.61,15.225Q7.572,15.316 7.553,15.412Q7.534,15.509 7.534,15.607Q7.534,15.706 7.553,15.802Q7.572,15.899 7.61,15.99Q7.647,16.081 7.702,16.163Q7.757,16.245 7.826,16.314Q7.896,16.384 7.978,16.439Q8.06,16.493 8.151,16.531Q8.242,16.569 8.338,16.588Q8.435,16.607 8.533,16.607Q8.632,16.607 8.729,16.588Q8.825,16.569 8.916,16.531Q9.007,16.493 9.089,16.439Q9.171,16.384 9.24,16.314L9.241,16.314L16.312,9.243L16.311,9.243Q16.381,9.174 16.436,9.092Q16.491,9.01 16.528,8.919Q16.566,8.828 16.585,8.731Q16.604,8.635 16.604,8.536Q16.604,8.438 16.585,8.341Q16.566,8.245 16.528,8.154Q16.491,8.063 16.436,7.981Q16.381,7.899 16.311,7.829Q16.242,7.76 16.16,7.705Q16.078,7.65 15.987,7.613Q15.896,7.575 15.8,7.556Q15.703,7.536 15.605,7.536Q15.506,7.536 15.409,7.556Q15.313,7.575 15.222,7.613Q15.131,7.65 15.049,7.705Q14.967,7.76 14.898,7.829L14.897,7.829Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_delete_img.xml"
line="14"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (909 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M16.312,14.899L9.241,7.828L9.24,7.829Q9.171,7.759 9.089,7.704Q9.007,7.65 8.916,7.612Q8.825,7.574 8.729,7.555Q8.632,7.536 8.533,7.536Q8.435,7.536 8.338,7.555Q8.242,7.574 8.151,7.612Q8.06,7.65 7.978,7.704Q7.896,7.759 7.826,7.829Q7.757,7.898 7.702,7.98Q7.647,8.062 7.61,8.153Q7.572,8.244 7.553,8.34Q7.534,8.437 7.534,8.536Q7.534,8.634 7.553,8.731Q7.572,8.827 7.61,8.918Q7.647,9.009 7.702,9.091Q7.757,9.173 7.826,9.242L7.826,9.243L14.897,16.314L14.898,16.314Q14.967,16.383 15.049,16.438Q15.131,16.493 15.222,16.53Q15.313,16.568 15.409,16.587Q15.506,16.606 15.605,16.606Q15.703,16.606 15.8,16.587Q15.896,16.568 15.987,16.53Q16.078,16.493 16.16,16.438Q16.242,16.383 16.311,16.314Q16.381,16.244 16.436,16.162Q16.491,16.08 16.528,15.989Q16.566,15.898 16.585,15.802Q16.604,15.705 16.604,15.607Q16.604,15.508 16.585,15.412Q16.566,15.315 16.528,15.224Q16.491,15.133 16.436,15.051Q16.381,14.969 16.311,14.9L16.312,14.899Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_delete_img.xml"
line="18"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1558 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" &lt;path android:fillColor=&quot;#FFFFFF&quot; android:pathData=&quot;M51.683,61C50.03,60.915 48.733,59.549 48.733,57.893C48.733,56.237 50.03,54.871 51.683,54.786L54.786,54.786L54.786,43.393C54.786,41.677 56.177,40.286 57.893,40.286C59.609,40.286 61,41.677 61,43.393L61,57.893C60.998,59.606 59.611,60.995 57.897,61L51.683,61ZM6.115,61C4.398,61 3.005,59.61 3,57.893L3,43.393C3.085,41.739 4.451,40.442 6.107,40.442C7.763,40.442 9.128,41.739 9.214,43.393L9.214,54.786L12.317,54.786C13.97,54.871 15.267,56.237 15.267,57.893C15.267,59.549 13.97,60.915 12.317,61L6.115,61ZM23.655,52.196C23.826,49.961 23.88,47.718 23.816,45.477C21.083,43.643 19.108,40.88 18.257,37.701C17.358,37.622 15.9,36.739 15.49,33.172C15.19,31.923 15.671,30.616 16.708,29.858C13.605,17.976 17.768,7.516 31.816,7.28C34.546,6.927 37.272,7.961 39.082,10.035C49.368,11.406 48.717,25.318 47.238,29.771C48.255,30.545 48.731,31.837 48.46,33.085C48.046,36.648 46.6,37.535 45.693,37.622C44.795,40.774 42.834,43.519 40.142,45.39C40.073,47.631 40.126,49.874 40.304,52.109C41.493,55.337 36.762,56.923 32.019,56.923C27.275,56.923 22.478,55.337 23.659,52.201L23.655,52.196ZM54.782,20.607L54.782,9.214L51.679,9.214C50.026,9.129 48.729,7.763 48.729,6.107C48.729,4.451 50.026,3.085 51.679,3L57.893,3C59.606,3.005 60.994,4.394 60.996,6.107L60.996,20.607C60.996,22.323 59.605,23.714 57.889,23.714C56.173,23.714 54.782,22.323 54.782,20.607ZM3,20.607L3,6.107C3.005,4.39 4.398,3 6.115,3L12.329,3C13.983,3.085 15.28,4.451 15.28,6.107C15.28,7.763 13.983,9.129 12.329,9.214L9.226,9.214L9.226,20.607C9.141,22.261 7.775,23.558 6.119,23.558C4.464,23.558 3.098,22.261 3.012,20.607L3,20.607Z&quot;/>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_face_large.xml"
line="7"
column="61"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1052 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M2.346,13.654Q2.347,13.655 2.348,13.656Q2.543,13.852 2.751,14.033Q3.692,14.85 4.889,15.369Q5.97,15.837 7.158,15.959Q7.568,16 7.991,16Q9.65,16 11.113,15.367Q12.575,14.734 13.654,13.654Q14.734,12.575 15.367,11.113Q16,9.65 16,7.991Q16,6.332 15.367,4.878Q14.734,3.426 13.656,2.348Q13.655,2.347 13.654,2.346Q13.459,2.15 13.251,1.969Q12.31,1.152 11.113,0.633Q10.032,0.165 8.844,0.043Q8.434,0.002 8.011,0.002Q6.352,0.002 4.889,0.635Q3.427,1.268 2.348,2.348Q1.268,3.427 0.635,4.88Q0.002,6.334 0.002,7.993Q0.002,9.652 0.635,11.115Q1.268,12.576 2.346,13.654ZM7.199,12.934Q6.923,12.506 6.923,11.971L6.923,9.079L4.085,9.079Q3.55,9.079 3.104,8.803Q2.658,8.526 2.658,7.973Q2.658,7.438 3.104,7.179Q3.55,6.921 4.085,6.921L6.923,6.921L6.923,4.087Q6.923,3.552 7.199,3.106Q7.476,2.66 8.029,2.66Q8.564,2.66 8.822,3.106Q9.081,3.552 9.081,4.087L9.081,6.921L11.969,6.921Q12.504,6.921 12.932,7.179Q13.36,7.438 13.36,7.973Q13.36,8.526 12.932,8.803Q12.504,9.079 11.969,9.079L9.081,9.079L9.081,11.971Q9.081,12.506 8.822,12.934Q8.564,13.362 8.029,13.362Q7.476,13.362 7.199,12.934Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_fun_add.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (917 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M691,810L830,672L788,630L691,725L652,686L610,729L691,810ZM240,360L720,360L720,280L240,280L240,360ZM720,920Q637,920 578.5,861.5Q520,803 520,720Q520,637 578.5,578.5Q637,520 720,520Q803,520 861.5,578.5Q920,637 920,720Q920,803 861.5,861.5Q803,920 720,920ZM120,880L120,200Q120,167 143.5,143.5Q167,120 200,120L760,120Q793,120 816.5,143.5Q840,167 840,200L840,467Q821,458 801,452Q781,446 760,443L760,200Q760,200 760,200Q760,200 760,200L200,200Q200,200 200,200Q200,200 200,200L200,762L443,762Q448,793 458.5,821Q469,849 486,874L480,880L420,820L360,880L300,820L240,880L180,820L120,880ZM240,680L443,680Q446,659 452,639Q458,619 467,600L240,600L240,680ZM240,520L524,520Q562,483 612.5,461.5Q663,440 720,440L720,440L240,440L240,520ZM200,762L200,762L200,200Q200,200 200,200Q200,200 200,200L200,200Q200,200 200,200Q200,200 200,200L200,200Q200,200 200,200Q200,200 200,200Q200,318 200,460Q200,602 200,720Q200,731 200,741Q200,751 200,762Z&quot;/>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_approve.xml"
line="8"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (3299 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M17.28,9.801Q17.28,9.931 17.274,10.061Q17.267,10.19 17.255,10.319Q17.242,10.448 17.223,10.576Q17.204,10.704 17.179,10.832Q17.153,10.959 17.122,11.084Q17.09,11.21 17.053,11.334Q17.015,11.458 16.972,11.58Q16.928,11.702 16.878,11.822Q16.829,11.942 16.773,12.059Q16.718,12.176 16.657,12.29Q16.596,12.405 16.529,12.516Q16.462,12.627 16.39,12.735Q16.318,12.843 16.241,12.947Q16.164,13.051 16.082,13.151Q15.999,13.251 15.912,13.347Q15.825,13.443 15.734,13.535Q15.642,13.627 15.546,13.714Q15.45,13.801 15.35,13.883Q15.25,13.965 15.146,14.042Q15.041,14.12 14.934,14.192Q14.826,14.264 14.715,14.33Q14.604,14.397 14.489,14.458Q14.375,14.519 14.258,14.575Q14.141,14.63 14.021,14.68Q13.901,14.729 13.779,14.773Q13.657,14.817 13.533,14.854Q13.409,14.892 13.283,14.923Q13.157,14.955 13.03,14.98Q12.903,15.005 12.775,15.024Q12.647,15.043 12.518,15.056Q12.389,15.069 12.259,15.075Q12.13,15.081 12,15.081Q11.871,15.081 11.741,15.075Q11.612,15.069 11.483,15.056Q11.354,15.043 11.225,15.024Q11.097,15.005 10.97,14.98Q10.843,14.955 10.717,14.923Q10.592,14.892 10.468,14.854Q10.343,14.817 10.221,14.773Q10.099,14.729 9.98,14.68Q9.86,14.63 9.743,14.575Q9.626,14.519 9.511,14.458Q9.397,14.397 9.286,14.33Q9.175,14.264 9.067,14.192Q8.959,14.12 8.855,14.042Q8.751,13.965 8.651,13.883Q8.55,13.801 8.454,13.714Q8.358,13.627 8.267,13.535Q8.175,13.443 8.088,13.347Q8.001,13.251 7.919,13.151Q7.836,13.051 7.759,12.947Q7.682,12.843 7.61,12.735Q7.538,12.627 7.471,12.516Q7.405,12.405 7.344,12.29Q7.283,12.176 7.227,12.059Q7.172,11.942 7.122,11.822Q7.073,11.702 7.029,11.58Q6.985,11.458 6.948,11.334Q6.91,11.21 6.878,11.084Q6.847,10.959 6.822,10.832Q6.796,10.704 6.777,10.576Q6.758,10.448 6.746,10.319Q6.733,10.19 6.727,10.061Q6.72,9.931 6.72,9.801Q6.72,9.672 6.727,9.542Q6.733,9.413 6.746,9.284Q6.758,9.155 6.777,9.027Q6.796,8.899 6.822,8.771Q6.847,8.644 6.878,8.519Q6.91,8.393 6.948,8.269Q6.985,8.145 7.029,8.023Q7.073,7.901 7.122,7.781Q7.172,7.661 7.227,7.544Q7.283,7.427 7.344,7.313Q7.405,7.198 7.471,7.087Q7.538,6.976 7.61,6.868Q7.682,6.76 7.759,6.656Q7.836,6.552 7.919,6.452Q8.001,6.352 8.088,6.256Q8.175,6.16 8.267,6.068Q8.358,5.976 8.454,5.889Q8.55,5.802 8.651,5.72Q8.751,5.638 8.855,5.561Q8.959,5.483 9.067,5.411Q9.175,5.339 9.286,5.273Q9.397,5.206 9.511,5.145Q9.626,5.084 9.743,5.028Q9.86,4.973 9.98,4.923Q10.099,4.874 10.221,4.83Q10.343,4.786 10.468,4.749Q10.592,4.711 10.717,4.68Q10.843,4.648 10.97,4.623Q11.097,4.598 11.225,4.579Q11.354,4.56 11.483,4.547Q11.612,4.534 11.741,4.528Q11.871,4.521 12,4.521Q12.13,4.521 12.259,4.528Q12.389,4.534 12.518,4.547Q12.647,4.56 12.775,4.579Q12.903,4.598 13.03,4.623Q13.157,4.648 13.283,4.68Q13.409,4.711 13.533,4.749Q13.657,4.786 13.779,4.83Q13.901,4.874 14.021,4.923Q14.141,4.973 14.258,5.028Q14.375,5.084 14.489,5.145Q14.604,5.206 14.715,5.273Q14.826,5.339 14.934,5.411Q15.041,5.483 15.146,5.561Q15.25,5.638 15.35,5.72Q15.45,5.802 15.546,5.889Q15.642,5.976 15.734,6.068Q15.825,6.16 15.912,6.256Q15.999,6.352 16.082,6.452Q16.164,6.552 16.241,6.656Q16.318,6.76 16.39,6.868Q16.462,6.976 16.529,7.087Q16.596,7.198 16.657,7.313Q16.718,7.427 16.773,7.544Q16.829,7.661 16.878,7.781Q16.928,7.901 16.972,8.023Q17.015,8.145 17.053,8.269Q17.09,8.393 17.122,8.519Q17.153,8.644 17.179,8.771Q17.204,8.899 17.223,9.027Q17.242,9.155 17.255,9.284Q17.267,9.413 17.274,9.542Q17.28,9.672 17.28,9.801Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_cloud.xml"
line="17"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1607 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M7.499,11.998Q7.499,12.108 7.488,12.218Q7.477,12.328 7.456,12.437Q7.434,12.545 7.402,12.651Q7.37,12.756 7.328,12.859Q7.285,12.961 7.233,13.058Q7.181,13.156 7.12,13.247Q7.058,13.339 6.988,13.425Q6.918,13.51 6.84,13.588Q6.762,13.667 6.676,13.737Q6.591,13.807 6.499,13.868Q6.407,13.93 6.31,13.982Q6.212,14.034 6.11,14.076Q6.008,14.118 5.902,14.15Q5.796,14.183 5.688,14.204Q5.58,14.226 5.47,14.236Q5.36,14.247 5.249,14.247Q5.139,14.247 5.029,14.236Q4.919,14.226 4.81,14.204Q4.702,14.183 4.596,14.15Q4.49,14.118 4.388,14.076Q4.286,14.034 4.189,13.982Q4.091,13.93 3.999,13.868Q3.907,13.807 3.822,13.737Q3.737,13.667 3.658,13.588Q3.58,13.51 3.51,13.425Q3.44,13.339 3.379,13.247Q3.317,13.156 3.265,13.058Q3.213,12.961 3.171,12.859Q3.128,12.756 3.096,12.651Q3.064,12.545 3.043,12.437Q3.021,12.328 3.01,12.218Q3,12.108 3,11.998Q3,11.887 3.01,11.777Q3.021,11.667 3.043,11.559Q3.064,11.45 3.096,11.345Q3.128,11.239 3.171,11.137Q3.213,11.035 3.265,10.937Q3.317,10.84 3.379,10.748Q3.44,10.656 3.51,10.571Q3.58,10.485 3.658,10.407Q3.737,10.329 3.822,10.259Q3.907,10.189 3.999,10.127Q4.091,10.066 4.189,10.014Q4.286,9.962 4.388,9.919Q4.49,9.877 4.596,9.845Q4.702,9.813 4.81,9.791Q4.919,9.77 5.029,9.759Q5.139,9.748 5.249,9.748Q5.36,9.748 5.47,9.759Q5.58,9.77 5.688,9.791Q5.796,9.813 5.902,9.845Q6.008,9.877 6.11,9.919Q6.212,9.962 6.31,10.014Q6.407,10.066 6.499,10.127Q6.591,10.189 6.676,10.259Q6.762,10.329 6.84,10.407Q6.918,10.485 6.988,10.571Q7.058,10.656 7.12,10.748Q7.181,10.84 7.233,10.937Q7.285,11.035 7.328,11.137Q7.37,11.239 7.402,11.345Q7.434,11.45 7.456,11.559Q7.477,11.667 7.488,11.777Q7.499,11.887 7.499,11.998Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_more.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1747 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M14.248,11.998Q14.248,12.108 14.237,12.218Q14.226,12.328 14.205,12.437Q14.183,12.545 14.151,12.651Q14.119,12.756 14.077,12.859Q14.034,12.961 13.982,13.058Q13.93,13.156 13.869,13.247Q13.807,13.339 13.737,13.425Q13.667,13.51 13.589,13.588Q13.511,13.667 13.425,13.737Q13.34,13.807 13.248,13.868Q13.156,13.93 13.059,13.982Q12.961,14.034 12.859,14.076Q12.757,14.118 12.651,14.15Q12.545,14.183 12.437,14.204Q12.329,14.226 12.219,14.236Q12.109,14.247 11.998,14.247Q11.888,14.247 11.778,14.236Q11.668,14.226 11.559,14.204Q11.451,14.183 11.345,14.15Q11.239,14.118 11.137,14.076Q11.035,14.034 10.938,13.982Q10.84,13.93 10.748,13.868Q10.656,13.807 10.571,13.737Q10.486,13.667 10.407,13.588Q10.329,13.51 10.259,13.425Q10.189,13.339 10.128,13.247Q10.066,13.156 10.014,13.058Q9.962,12.961 9.92,12.859Q9.877,12.756 9.845,12.651Q9.813,12.545 9.792,12.437Q9.77,12.328 9.759,12.218Q9.749,12.108 9.749,11.998Q9.749,11.887 9.759,11.777Q9.77,11.667 9.792,11.559Q9.813,11.45 9.845,11.345Q9.877,11.239 9.92,11.137Q9.962,11.035 10.014,10.937Q10.066,10.84 10.128,10.748Q10.189,10.656 10.259,10.571Q10.329,10.485 10.407,10.407Q10.486,10.329 10.571,10.259Q10.656,10.189 10.748,10.127Q10.84,10.066 10.938,10.014Q11.035,9.962 11.137,9.919Q11.239,9.877 11.345,9.845Q11.451,9.813 11.559,9.791Q11.668,9.77 11.778,9.759Q11.888,9.748 11.998,9.748Q12.109,9.748 12.219,9.759Q12.329,9.77 12.437,9.791Q12.545,9.813 12.651,9.845Q12.757,9.877 12.859,9.919Q12.961,9.962 13.059,10.014Q13.156,10.066 13.248,10.127Q13.34,10.189 13.425,10.259Q13.511,10.329 13.589,10.407Q13.667,10.485 13.737,10.571Q13.807,10.656 13.869,10.748Q13.93,10.84 13.982,10.937Q14.034,11.035 14.077,11.137Q14.119,11.239 14.151,11.345Q14.183,11.45 14.205,11.559Q14.226,11.667 14.237,11.777Q14.248,11.887 14.248,11.998Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_more.xml"
line="13"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (820 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M12.844,22Q15.578,21.961 17.844,20.672Q20.109,19.344 21.516,17Q22.844,14.617 22.844,12Q22.844,9.383 21.516,7Q20.109,4.656 17.844,3.328Q15.578,2.039 12.844,2Q10.109,2.039 7.844,3.328Q5.578,4.656 4.172,7Q2.844,9.383 2.844,12Q2.844,14.617 4.172,17Q5.578,19.344 7.844,20.672Q10.109,21.961 12.844,22ZM11.281,15.125L12.219,15.125L11.281,15.125L12.219,15.125L12.219,12.625L11.281,12.625Q10.422,12.547 10.344,11.688Q10.422,10.828 11.281,10.75L13.156,10.75Q14.016,10.828 14.094,11.688L14.094,15.125L14.406,15.125Q15.266,15.203 15.344,16.063Q15.266,16.922 14.406,17L11.281,17Q10.422,16.922 10.344,16.063Q10.422,15.203 11.281,15.125ZM12.844,7Q13.391,7 13.742,7.352Q14.094,7.703 14.094,8.25Q14.094,8.797 13.742,9.148Q13.391,9.5 12.844,9.5Q12.297,9.5 11.945,9.148Q11.594,8.797 11.594,8.25Q11.594,7.703 11.945,7.352Q12.297,7 12.844,7Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_notification.xml"
line="14"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1434 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M12.854,11.322L12.854,6.699C12.854,5.672 13.144,4.736 13.751,3.904C14.389,3.034 15.228,2.437 16.275,2.171C17.95,1.748 19.449,2.108 20.723,3.285C21.434,3.931 21.908,4.796 22.074,5.742C22.381,7.437 21.912,8.897 20.653,10.082C19.969,10.725 19.142,11.102 18.216,11.25C17.95,11.293 17.682,11.315 17.411,11.315C15.924,11.32 14.44,11.317 12.953,11.317L12.854,11.322ZM11.488,11.322L6.897,11.322C5.688,11.322 4.629,10.928 3.73,10.123C3.002,9.482 2.497,8.624 2.289,7.676C1.912,6.003 2.485,4.26 3.781,3.138C4.472,2.541 5.27,2.171 6.174,2.052C7.639,1.861 8.921,2.27 9.999,3.283C10.78,4.018 11.249,4.927 11.425,5.981C11.466,6.221 11.486,6.462 11.488,6.704C11.493,8.218 11.49,9.729 11.49,11.242L11.488,11.322ZM11.488,12.686L11.488,17.287C11.49,18.496 11.092,19.555 10.284,20.454C9.571,21.247 8.686,21.757 7.63,21.929C6.012,22.192 4.622,21.721 3.474,20.558C2.85,19.934 2.43,19.134 2.268,18.266C1.987,16.791 2.321,15.464 3.3,14.32C4.02,13.479 4.944,12.976 6.032,12.77C6.329,12.715 6.634,12.688 6.936,12.688L11.386,12.688L11.488,12.686ZM12.854,12.739L17.483,12.739C18.421,12.739 19.292,12.976 20.08,13.488C21.047,14.119 21.702,14.99 21.997,16.104C22.391,17.587 22.118,18.955 21.19,20.178C20.551,21.017 19.708,21.569 18.69,21.844C18.187,21.984 17.662,22.03 17.143,21.98C15.375,21.796 14.101,20.892 13.301,19.313C13.059,18.839 12.931,18.329 12.876,17.799C12.859,17.632 12.854,17.466 12.854,17.296C12.852,15.805 12.852,14.313 12.854,12.819L12.854,12.739Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_pm.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1165 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M21.953,8.523Q22.118,9.07 21.704,9.461L19.879,11.023Q19.962,11.492 19.962,12Q19.962,12.508 19.879,12.977L21.704,14.539Q22.118,14.93 21.953,15.477Q21.662,16.18 21.289,16.844L21.082,17.156Q20.667,17.781 20.169,18.367Q19.755,18.797 19.174,18.641L16.852,17.938Q16.023,18.563 15.027,18.914L14.53,21.18Q14.364,21.727 13.742,21.844Q12.912,22 12,22Q11.088,22 10.217,21.844Q9.636,21.727 9.47,21.18L8.973,18.914Q7.977,18.563 7.148,17.938L4.826,18.641Q4.245,18.797 3.831,18.367Q3.291,17.781 2.918,17.156L2.711,16.844Q2.338,16.18 2.047,15.516Q1.882,14.93 2.296,14.539L4.121,13.016Q4.038,12.508 4.038,12Q4.038,11.492 4.121,11.023L2.296,9.461Q1.882,9.07 2.047,8.523Q2.338,7.82 2.711,7.156L2.918,6.844Q3.291,6.219 3.831,5.633Q4.245,5.203 4.826,5.359L7.148,6.063Q7.977,5.438 8.973,5.047L9.47,2.82Q9.636,2.273 10.258,2.156Q11.088,2 12,2Q12.912,2 13.783,2.156Q14.364,2.273 14.53,2.82L15.027,5.047Q16.023,5.438 16.852,6.063L19.174,5.359Q19.755,5.203 20.169,5.633Q20.709,6.219 21.123,6.844L21.289,7.156Q21.662,7.82 21.953,8.523ZM12,15.125Q13.866,15.086 14.861,13.563Q15.774,12 14.861,10.438Q13.866,8.914 12,8.875Q10.134,8.914 9.139,10.438Q8.226,12 9.139,13.563Q10.134,15.086 12,15.125Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_setting.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1116 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M21.791,8.424L21.791,8.379C21.791,8.335 21.771,8.29 21.75,8.245L20.395,3.561C20.084,2.602 19.25,2 18.187,2L5.855,2C4.813,2 4.021,2.58 3.729,3.516L2.229,8.313C2.229,8.335 2.208,8.379 2.208,8.424C2.064,8.869 2,9.338 2,9.806C2,11.435 2.437,12.751 3.791,13.509C4.334,13.822 5,14 5.729,14C6.958,14 8.105,13.42 8.875,12.439C9.645,13.421 10.772,14 12,14C13.209,14 14.355,13.42 15.105,12.439C15.875,13.421 17.021,14 18.25,14C19,14 19.666,13.822 20.229,13.509C21.564,12.706 22,11.413 22,9.785C22,9.316 21.937,8.848 21.791,8.424ZM21.091,15.542C21.091,15.095 20.753,14.737 20.331,14.737C20.246,14.737 20.183,14.76 20.119,14.783C19.544,15.019 18.925,15.133 18.304,15.117C17.1,15.05 16.192,14.805 15.305,14C14.443,14.786 13.325,15.231 12.159,15.252C10.975,15.252 9.856,14.915 8.991,14.134C8.104,14.915 6.985,15.318 5.802,15.318C5.084,15.318 4.662,15.162 4.007,14.916C3.986,14.916 3.965,14.894 3.944,14.894C3.902,14.872 3.859,14.872 3.838,14.849C3.838,14.849 3.733,14.827 3.669,14.827C3.247,14.827 2.909,15.185 2.909,15.631L2.909,19.945C2.909,21.084 3.775,22 4.852,22L19.148,22C20.225,22 21.091,21.062 21.091,19.945L21.091,15.542Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_store.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (932 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M19.633,22L4.383,22C3.626,22 3,21.395 3,20.663L3,5.994C3,5.262 3.626,4.657 4.383,4.657L5.075,4.657L5.075,6.662C5.075,7.394 5.701,7.998 6.458,7.998L17.541,7.998C18.299,7.998 18.925,7.394 18.925,6.662L18.925,4.657L19.616,4.657C20.374,4.657 21,5.262 21,5.994L21,20.663C21.016,21.395 20.39,22 19.633,22ZM16.537,12.931C16.125,12.549 15.466,12.549 15.055,12.931L11.349,16.336L9.62,14.745C9.208,14.363 8.55,14.363 8.138,14.745C7.726,15.126 7.726,15.731 8.138,16.097L10.608,18.356C11.02,18.738 11.679,18.738 12.09,18.356L16.537,14.283C16.949,13.917 16.949,13.313 16.537,12.931ZM15.466,6.662L8.55,6.662C7.792,6.662 7.166,6.057 7.166,5.325L7.166,4.657C9.933,2.7 9.966,2.668 10.691,2L13.441,2C14.116,2.621 14.1,2.7 16.85,4.657L16.85,5.325C16.85,6.073 16.24,6.662 15.466,6.662ZM12.008,3.337C11.251,3.337 10.625,3.941 10.625,4.673C10.625,5.405 11.251,6.01 12.008,6.01C12.766,6.01 13.391,5.405 13.391,4.673C13.391,3.925 12.766,3.337 12.008,3.337Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_task.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (913 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M22,19.924Q22,20.357 21.857,20.734Q21.714,21.11 21.449,21.395Q21.185,21.681 20.833,21.84Q20.48,22 20.062,22L4.07,22Q3.652,22 3.278,21.84Q2.903,21.681 2.617,21.395Q2.33,21.11 2.165,20.734Q2,20.357 2,19.924L2,8.539Q2,7.672 2.584,7.067Q3.167,6.463 4.004,6.463L19.996,6.463Q20.833,6.463 21.416,7.067Q22,7.672 22,8.539L22,11.642L17,11.642Q16.163,11.642 15.579,12.235Q14.996,12.828 14.996,13.695Q15.018,14.288 15.238,14.745Q15.414,15.133 15.822,15.452Q16.229,15.771 17,15.771L22,15.771L22,19.924ZM19.004,5.413L9.004,5.413Q10.194,4.775 11.251,4.181Q12.176,3.679 13.079,3.177Q13.982,2.676 14.489,2.402Q15.26,1.968 15.866,2.003Q16.471,2.037 16.89,2.219Q17.374,2.47 17.727,2.881L19.004,5.413ZM16.009,13.695Q16.009,13.262 16.295,12.965Q16.581,12.669 17,12.669Q17.419,12.669 17.705,12.965Q17.991,13.262 17.991,13.695Q17.991,14.129 17.705,14.437Q17.419,14.745 17,14.745Q16.581,14.745 16.295,14.437Q16.009,14.129 16.009,13.695Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_wallet.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1631 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M16,12Q16,12.197 15.981,12.392Q15.961,12.588 15.923,12.78Q15.885,12.973 15.828,13.161Q15.771,13.349 15.696,13.531Q15.62,13.712 15.528,13.886Q15.435,14.059 15.326,14.222Q15.217,14.386 15.092,14.538Q14.967,14.69 14.828,14.828Q14.689,14.967 14.538,15.092Q14.386,15.217 14.222,15.326Q14.059,15.435 13.886,15.528Q13.712,15.62 13.531,15.696Q13.349,15.771 13.161,15.828Q12.973,15.885 12.78,15.923Q12.588,15.962 12.392,15.981Q12.197,16 12,16Q11.803,16 11.608,15.981Q11.412,15.962 11.22,15.923Q11.027,15.885 10.839,15.828Q10.651,15.771 10.469,15.696Q10.288,15.62 10.114,15.528Q9.941,15.435 9.778,15.326Q9.614,15.217 9.462,15.092Q9.311,14.967 9.172,14.828Q9.033,14.69 8.908,14.538Q8.783,14.386 8.674,14.222Q8.565,14.059 8.472,13.886Q8.38,13.712 8.304,13.531Q8.229,13.349 8.172,13.161Q8.115,12.973 8.077,12.78Q8.039,12.588 8.019,12.392Q8,12.197 8,12Q8,11.804 8.019,11.608Q8.039,11.412 8.077,11.22Q8.115,11.027 8.172,10.839Q8.229,10.651 8.304,10.469Q8.38,10.288 8.472,10.114Q8.565,9.941 8.674,9.778Q8.783,9.614 8.908,9.462Q9.033,9.311 9.172,9.172Q9.311,9.033 9.462,8.908Q9.614,8.783 9.778,8.674Q9.941,8.565 10.114,8.472Q10.288,8.38 10.469,8.305Q10.651,8.229 10.839,8.172Q11.027,8.115 11.22,8.077Q11.412,8.039 11.608,8.019Q11.803,8 12,8Q12.197,8 12.392,8.019Q12.588,8.039 12.78,8.077Q12.973,8.115 13.161,8.172Q13.349,8.229 13.531,8.305Q13.712,8.38 13.886,8.472Q14.059,8.565 14.222,8.674Q14.386,8.783 14.538,8.908Q14.689,9.033 14.828,9.172Q14.967,9.311 15.092,9.462Q15.217,9.614 15.326,9.778Q15.435,9.941 15.528,10.114Q15.62,10.288 15.696,10.469Q15.771,10.651 15.828,10.839Q15.885,11.027 15.923,11.22Q15.961,11.412 15.981,11.608Q16,11.804 16,12Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_map_location.xml"
line="19"
column="29"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1107 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M3.6,2Q4.725,2.025 5.325,3.016Q5.875,4.031 5.325,5.047Q4.725,6.037 3.6,6.063Q2.475,6.037 1.875,5.047Q1.325,4.031 1.875,3.016Q2.475,2.025 3.6,2ZM12.8,2Q13.925,2.025 14.525,3.016Q15.075,4.031 14.525,5.047Q13.925,6.037 12.8,6.063Q11.675,6.037 11.075,5.047Q10.525,4.031 11.075,3.016Q11.675,2.025 12.8,2ZM0,9.592Q0.025,8.424 0.775,7.662Q1.525,6.9 2.675,6.875L3.725,6.875Q4.325,6.875 4.85,7.129Q4.8,7.408 4.8,7.688Q4.85,9.186 5.875,10.125L0.525,10.125Q0.05,10.074 0,9.592ZM10.125,10.125Q11.15,9.186 11.2,7.688Q11.2,7.408 11.15,7.129Q11.675,6.875 12.275,6.875L13.325,6.875Q14.475,6.9 15.225,7.662Q15.975,8.424 16,9.592Q15.95,10.074 15.475,10.125L10.125,10.125ZM5.6,7.688Q5.6,7.027 5.925,6.469Q6.25,5.91 6.8,5.58Q7.375,5.25 8,5.25Q8.625,5.25 9.2,5.58Q9.75,5.91 10.075,6.469Q10.4,7.027 10.4,7.688Q10.4,8.348 10.075,8.906Q9.75,9.465 9.2,9.795Q8.625,10.125 8,10.125Q7.375,10.125 6.8,9.795Q6.25,9.465 5.925,8.906Q5.6,8.348 5.6,7.688ZM3.2,14.314Q3.225,12.893 4.175,11.928Q5.125,10.963 6.525,10.938L9.475,10.938Q10.875,10.963 11.825,11.928Q12.775,12.893 12.8,14.314Q12.75,14.949 12.125,15L3.875,15Q3.25,14.949 3.2,14.314Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_marketing.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1141 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M4.698,15.596Q5.475,15.596 6.147,15.891Q6.818,16.185 7.313,16.692Q7.807,17.199 8.102,17.871Q8.396,18.543 8.396,19.298Q8.396,20.076 8.102,20.748Q7.807,21.42 7.313,21.915Q6.818,22.411 6.147,22.705Q5.475,23 4.698,23Q3.944,23 3.273,22.705Q2.602,22.411 2.095,21.915Q1.589,21.42 1.294,20.748Q1,20.076 1,19.298Q1,18.543 1.294,17.871Q1.589,17.199 2.095,16.692Q2.602,16.185 3.273,15.891Q3.944,15.596 4.698,15.596ZM2.531,8.121Q5.287,8.121 7.725,9.17Q10.163,10.22 11.965,12.035Q13.767,13.851 14.815,16.292Q15.863,18.732 15.863,21.491L13.814,21.491Q12.801,21.491 11.882,21.467Q11.882,19.534 11.152,17.824Q10.422,16.115 9.15,14.841Q7.878,13.568 6.17,12.837Q4.463,12.106 2.531,12.106L2.531,8.121ZM2.555,1Q5.381,1 7.996,1.731Q10.61,2.462 12.883,3.794Q15.156,5.126 17.017,7.001Q18.878,8.876 20.209,11.151Q21.54,13.427 22.27,16.032Q23,18.638 23,21.467L21.634,21.467L20.786,21.467Q20.409,21.467 20.091,21.456Q19.773,21.444 19.349,21.444Q19.349,19.133 18.748,16.975Q18.148,14.818 17.052,12.955Q15.957,11.092 14.426,9.559Q12.895,8.027 11.034,6.942Q9.173,5.857 7.03,5.256Q4.887,4.655 2.578,4.655L2.578,3.9Q2.578,3.334 2.566,2.733Q2.555,2.132 2.555,1.637L2.555,1Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_online.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1216 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M3.5,1Q2.875,1.027 2.438,1.383Q2.031,1.766 2,2.312L2,13.688Q2.031,14.234 2.438,14.617Q2.875,14.973 3.5,15L6.5,15L6.5,12.813Q6.531,12.266 6.937,11.883Q7.375,11.527 8,11.5Q8.625,11.527 9.063,11.883Q9.469,12.266 9.5,12.813L9.5,15L12.5,15Q13.125,14.973 13.563,14.617Q13.969,14.234 14,13.688L14,2.312Q13.969,1.766 13.563,1.383Q13.125,1.027 12.5,1L3.5,1ZM4,7.563Q4.031,7.152 4.5,7.125L5.5,7.125Q5.969,7.152 6,7.563L6,8.438Q5.969,8.848 5.5,8.875L4.5,8.875Q4.031,8.848 4,8.438L4,7.563ZM7.5,7.125L8.5,7.125L7.5,7.125L8.5,7.125Q8.969,7.152 9,7.563L9,8.438Q8.969,8.848 8.5,8.875L7.5,8.875Q7.031,8.848 7,8.438L7,7.563Q7.031,7.152 7.5,7.125ZM10,7.563Q10.031,7.152 10.5,7.125L11.5,7.125Q11.969,7.152 12,7.563L12,8.438Q11.969,8.848 11.5,8.875L10.5,8.875Q10.031,8.848 10,8.438L10,7.563ZM4.5,3.625L5.5,3.625L4.5,3.625L5.5,3.625Q5.969,3.652 6,4.062L6,4.937Q5.969,5.348 5.5,5.375L4.5,5.375Q4.031,5.348 4,4.937L4,4.062Q4.031,3.652 4.5,3.625ZM7,4.062Q7.031,3.652 7.5,3.625L8.5,3.625Q8.969,3.652 9,4.062L9,4.937Q8.969,5.348 8.5,5.375L7.5,5.375Q7.031,5.348 7,4.937L7,4.062ZM10.5,3.625L11.5,3.625L10.5,3.625L11.5,3.625Q11.969,3.652 12,4.062L12,4.937Q11.969,5.348 11.5,5.375L10.5,5.375Q10.031,5.348 10,4.937L10,4.062Q10.031,3.652 10.5,3.625Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_open_scenic.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1141 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M4.698,15.596Q5.475,15.596 6.147,15.891Q6.818,16.185 7.313,16.692Q7.807,17.199 8.102,17.871Q8.396,18.543 8.396,19.298Q8.396,20.076 8.102,20.748Q7.807,21.42 7.313,21.915Q6.818,22.411 6.147,22.705Q5.475,23 4.698,23Q3.944,23 3.273,22.705Q2.602,22.411 2.095,21.915Q1.589,21.42 1.294,20.748Q1,20.076 1,19.298Q1,18.543 1.294,17.871Q1.589,17.199 2.095,16.692Q2.602,16.185 3.273,15.891Q3.944,15.596 4.698,15.596ZM2.531,8.121Q5.287,8.121 7.725,9.17Q10.163,10.22 11.965,12.035Q13.767,13.851 14.815,16.292Q15.863,18.732 15.863,21.491L13.814,21.491Q12.801,21.491 11.882,21.467Q11.882,19.534 11.152,17.824Q10.422,16.115 9.15,14.841Q7.878,13.568 6.17,12.837Q4.463,12.106 2.531,12.106L2.531,8.121ZM2.555,1Q5.381,1 7.996,1.731Q10.61,2.462 12.883,3.794Q15.156,5.126 17.017,7.001Q18.878,8.876 20.209,11.151Q21.54,13.427 22.27,16.032Q23,18.638 23,21.467L21.634,21.467L20.786,21.467Q20.409,21.467 20.091,21.456Q19.773,21.444 19.349,21.444Q19.349,19.133 18.748,16.975Q18.148,14.818 17.052,12.955Q15.957,11.092 14.426,9.559Q12.895,8.027 11.034,6.942Q9.173,5.857 7.03,5.256Q4.887,4.655 2.578,4.655L2.578,3.9Q2.578,3.334 2.566,2.733Q2.555,2.132 2.555,1.637L2.555,1Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_outline.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1117 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M14.208,3.002L11.992,3.002C11.98,2.918 11.953,2.834 11.913,2.751L11.367,1.63C11.183,1.251 10.742,1.004 10.253,1.004L5.753,1.004C5.264,1.004 4.824,1.251 4.639,1.63L4.092,2.751C4.052,2.835 4.025,2.92 4.011,3.002L1.771,3.002C1.341,3.002 0.989,3.354 0.989,3.784L0.989,4.215C0.989,4.645 1.341,4.996 1.771,4.996L2.986,4.996L2.986,14.212C2.986,14.641 3.338,14.993 3.767,14.993L12.199,14.993C12.628,14.993 12.98,14.641 12.98,14.212L12.98,4.995L14.21,4.995C14.639,4.995 14.991,4.643 14.991,4.213L14.991,3.782C14.989,3.354 14.638,3.002 14.208,3.002ZM6.031,12.487C6.031,12.766 5.803,12.995 5.524,12.995C5.244,12.995 5.016,12.766 5.016,12.487L5.016,6.504C5.016,6.224 5.244,5.996 5.524,5.996C5.803,5.996 6.031,6.224 6.031,6.504L6.031,12.487ZM8.546,12.487C8.546,12.766 8.317,12.995 8.038,12.995C7.758,12.995 7.53,12.766 7.53,12.487L7.53,6.504C7.53,6.224 7.758,5.996 8.038,5.996C8.317,5.996 8.546,6.224 8.546,6.504L8.546,12.487ZM11.049,12.487C11.049,12.766 10.821,12.995 10.541,12.995C10.261,12.995 10.033,12.766 10.033,12.487L10.033,6.504C10.033,6.224 10.261,5.996 10.541,5.996C10.821,5.996 11.049,6.224 11.049,6.504L11.049,12.487Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_punch_point_delete.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1107 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M24,0C10.72,0 0,10.72 0,24C0,37.28 10.72,48 24,48C37.28,48 48,37.28 48,24C48,10.72 37.28,0 24,0ZM11.2,14.4C11.2,12.64 12.64,11.2 14.4,11.2L19.2,11.2C20.16,11.2 20.8,11.84 20.8,12.8C20.8,13.76 20.16,14.4 19.2,14.4L14.4,14.4L14.4,17.6C14.4,18.56 13.76,19.2 12.8,19.2C11.84,19.2 11.2,18.56 11.2,17.6L11.2,14.4ZM19.2,36.8L14.4,36.8C12.64,36.8 11.2,35.36 11.2,33.6L11.2,30.08C11.2,29.12 11.84,28.48 12.8,28.48C13.76,28.48 14.4,29.12 14.4,30.08L14.4,33.6L19.2,33.6C20.16,33.6 20.8,34.24 20.8,35.2C20.8,36.16 20,36.8 19.2,36.8ZM36.8,33.6C36.8,35.36 35.36,36.8 33.6,36.8L28.64,36.8C27.68,36.8 27.04,36.16 27.04,35.2C27.04,34.24 27.68,33.6 28.64,33.6L33.6,33.6L33.6,30.08C33.6,29.12 34.24,28.48 35.2,28.48C36.16,28.48 36.8,29.12 36.8,30.08L36.8,33.6ZM35.2,25.6L12.8,25.6C11.84,25.6 11.2,24.96 11.2,24C11.2,23.04 11.84,22.4 12.8,22.4L35.2,22.4C36.16,22.4 36.8,23.04 36.8,24C36.8,24.96 36.16,25.6 35.2,25.6ZM36.8,17.6C36.8,18.56 36.16,19.2 35.2,19.2C34.24,19.2 33.6,18.56 33.6,17.6L33.6,14.4L28.8,14.4C27.84,14.4 27.2,13.76 27.2,12.8C27.2,11.84 27.84,11.2 28.8,11.2L33.6,11.2C35.36,11.2 36.8,12.64 36.8,14.4L36.8,17.6Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_qrcode_scanner.xml"
line="11"
column="25"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (1711 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M46.145,39.287C45.9,38.91 45.567,38.664 45.154,38.55L40.106,36L39.308,35.834L38.397,35.834L38.397,28.97C38.397,28.287 38.16,27.708 37.686,27.244C37.213,26.77 36.643,26.534 35.986,26.534C35.32,26.534 34.759,26.77 34.286,27.244C33.812,27.717 33.575,28.295 33.575,28.97L33.575,41.68L28.755,40.602L28.413,40.602C27.922,40.602 27.528,40.75 27.221,41.057L26.143,42.302L33.409,49.507C33.786,49.919 34.294,50.129 34.943,50.129L43.287,50.129C43.813,50.129 44.277,49.962 44.681,49.62C45.084,49.278 45.311,48.823 45.391,48.262L46.469,40.829L46.469,40.548C46.496,40.084 46.391,39.663 46.145,39.287ZM33.05,22.449C30.903,23.326 29.378,25.052 28.686,27.068C28.107,28.76 28.125,30.644 28.87,32.415L30.605,31.705C30.062,30.408 30.035,29.023 30.43,27.778C30.929,26.201 32.104,24.842 33.769,24.159C36.749,22.94 40.177,24.343 41.412,27.288C42.105,28.936 41.965,30.715 41.184,32.179L42.92,32.889C43.875,30.978 44.033,28.691 43.139,26.578C41.509,22.694 36.986,20.845 33.05,22.449ZM45.917,25.447C47.013,28.068 47.013,30.943 45.917,33.563C45.847,33.721 45.777,33.887 45.707,34.037L47.442,34.747C47.512,34.589 47.592,34.431 47.653,34.273C48.941,31.197 48.941,27.814 47.653,24.737L45.917,25.447ZM25.898,25.929L24.163,25.219C23.067,28.164 23.128,31.354 24.356,34.264L26.091,33.554C25.057,31.109 24.995,28.418 25.898,25.929ZM21.375,24.088L19.64,23.378C18.895,25.306 18.509,27.322 18.5,29.382C18.483,31.696 18.93,33.966 19.833,36.113L21.568,35.403C20.043,31.757 19.982,27.761 21.375,24.088ZM52.167,22.887L50.431,23.598C52.027,27.402 52.027,31.6 50.431,35.404C50.361,35.562 50.291,35.728 50.221,35.886L51.956,36.596C52.026,36.438 52.097,36.28 52.167,36.114C53.034,34.037 53.481,31.854 53.499,29.619C53.525,27.314 53.078,25.044 52.167,22.887Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_report_location.xml"
line="25"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (6384 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M17,9Q17,9.196 16.99,9.393Q16.981,9.589 16.961,9.784Q16.942,9.98 16.913,10.174Q16.885,10.368 16.846,10.561Q16.808,10.753 16.76,10.944Q16.713,11.134 16.656,11.322Q16.599,11.51 16.532,11.695Q16.466,11.88 16.391,12.061Q16.316,12.243 16.232,12.42Q16.148,12.598 16.055,12.771Q15.963,12.944 15.862,13.113Q15.761,13.281 15.652,13.445Q15.543,13.608 15.426,13.766Q15.309,13.923 15.184,14.075Q15.059,14.227 14.928,14.372Q14.796,14.518 14.657,14.657Q14.518,14.796 14.372,14.928Q14.227,15.059 14.075,15.184Q13.923,15.309 13.766,15.426Q13.608,15.543 13.445,15.652Q13.281,15.761 13.113,15.862Q12.944,15.963 12.771,16.055Q12.598,16.148 12.42,16.232Q12.243,16.316 12.061,16.391Q11.88,16.466 11.695,16.532Q11.51,16.599 11.322,16.656Q11.134,16.713 10.944,16.76Q10.753,16.808 10.561,16.846Q10.368,16.885 10.174,16.913Q9.98,16.942 9.784,16.961Q9.589,16.981 9.393,16.99Q9.196,17 9,17Q8.804,17 8.607,16.99Q8.411,16.981 8.216,16.961Q8.02,16.942 7.826,16.913Q7.632,16.885 7.439,16.846Q7.247,16.808 7.056,16.76Q6.866,16.713 6.678,16.656Q6.49,16.599 6.305,16.532Q6.12,16.466 5.939,16.391Q5.757,16.316 5.58,16.232Q5.402,16.148 5.229,16.055Q5.056,15.963 4.887,15.862Q4.719,15.761 4.555,15.652Q4.392,15.543 4.234,15.426Q4.077,15.309 3.925,15.184Q3.773,15.059 3.628,14.928Q3.482,14.796 3.343,14.657Q3.204,14.518 3.072,14.372Q2.941,14.227 2.816,14.075Q2.691,13.923 2.574,13.766Q2.457,13.608 2.348,13.445Q2.239,13.281 2.138,13.113Q2.037,12.944 1.945,12.771Q1.852,12.598 1.768,12.42Q1.684,12.243 1.609,12.061Q1.534,11.88 1.468,11.695Q1.401,11.51 1.344,11.322Q1.287,11.134 1.24,10.944Q1.192,10.753 1.154,10.561Q1.115,10.368 1.087,10.174Q1.058,9.98 1.039,9.784Q1.019,9.589 1.01,9.393Q1,9.196 1,9Q1,8.804 1.01,8.607Q1.019,8.411 1.039,8.216Q1.058,8.02 1.087,7.826Q1.115,7.632 1.154,7.439Q1.192,7.247 1.24,7.056Q1.287,6.866 1.344,6.678Q1.401,6.49 1.468,6.305Q1.534,6.12 1.609,5.939Q1.684,5.757 1.768,5.58Q1.852,5.402 1.945,5.229Q2.037,5.056 2.138,4.887Q2.239,4.719 2.348,4.555Q2.457,4.392 2.574,4.234Q2.691,4.077 2.816,3.925Q2.941,3.773 3.072,3.628Q3.204,3.482 3.343,3.343Q3.482,3.204 3.628,3.072Q3.773,2.941 3.925,2.816Q4.077,2.691 4.234,2.574Q4.392,2.457 4.555,2.348Q4.719,2.239 4.887,2.138Q5.056,2.037 5.229,1.945Q5.402,1.852 5.58,1.768Q5.757,1.684 5.939,1.609Q6.12,1.534 6.305,1.468Q6.49,1.401 6.678,1.344Q6.866,1.287 7.056,1.24Q7.247,1.192 7.439,1.154Q7.632,1.115 7.826,1.087Q8.02,1.058 8.216,1.039Q8.411,1.019 8.607,1.01Q8.804,1 9,1Q9.196,1 9.393,1.01Q9.589,1.019 9.784,1.039Q9.98,1.058 10.174,1.087Q10.368,1.115 10.561,1.154Q10.753,1.192 10.944,1.24Q11.134,1.287 11.322,1.344Q11.51,1.401 11.695,1.468Q11.88,1.534 12.061,1.609Q12.243,1.684 12.42,1.768Q12.598,1.852 12.771,1.945Q12.944,2.037 13.113,2.138Q13.281,2.239 13.445,2.348Q13.608,2.457 13.766,2.574Q13.923,2.691 14.075,2.816Q14.227,2.941 14.372,3.072Q14.518,3.204 14.657,3.343Q14.796,3.482 14.928,3.628Q15.059,3.773 15.184,3.925Q15.309,4.077 15.426,4.234Q15.543,4.392 15.652,4.555Q15.761,4.719 15.862,4.887Q15.963,5.056 16.055,5.229Q16.148,5.402 16.232,5.58Q16.316,5.757 16.391,5.939Q16.466,6.12 16.532,6.305Q16.599,6.49 16.656,6.678Q16.713,6.866 16.76,7.056Q16.808,7.247 16.846,7.439Q16.885,7.632 16.913,7.826Q16.942,8.02 16.961,8.216Q16.981,8.411 16.99,8.607Q17,8.804 17,9ZM16,9Q16,8.828 15.992,8.657Q15.983,8.485 15.966,8.314Q15.949,8.143 15.924,7.973Q15.899,7.803 15.865,7.634Q15.832,7.466 15.79,7.299Q15.748,7.132 15.699,6.968Q15.649,6.804 15.591,6.642Q15.533,6.48 15.467,6.321Q15.401,6.162 15.328,6.007Q15.254,5.852 15.173,5.7Q15.092,5.549 15.004,5.401Q14.916,5.254 14.82,5.111Q14.725,4.968 14.622,4.83Q14.52,4.692 14.411,4.559Q14.302,4.426 14.187,4.299Q14.071,4.172 13.95,4.05Q13.828,3.929 13.701,3.813Q13.574,3.698 13.441,3.589Q13.308,3.48 13.17,3.378Q13.032,3.275 12.889,3.18Q12.746,3.084 12.599,2.996Q12.451,2.908 12.3,2.827Q12.148,2.746 11.993,2.672Q11.838,2.599 11.679,2.533Q11.52,2.467 11.358,2.409Q11.196,2.351 11.032,2.301Q10.868,2.252 10.701,2.21Q10.534,2.168 10.366,2.135Q10.197,2.101 10.027,2.076Q9.857,2.051 9.686,2.034Q9.515,2.017 9.343,2.008Q9.172,2 9,2Q8.828,2 8.657,2.008Q8.485,2.017 8.314,2.034Q8.143,2.051 7.973,2.076Q7.803,2.101 7.634,2.135Q7.466,2.168 7.299,2.21Q7.132,2.252 6.968,2.301Q6.804,2.351 6.642,2.409Q6.48,2.467 6.321,2.533Q6.162,2.599 6.007,2.672Q5.852,2.746 5.7,2.827Q5.549,2.908 5.401,2.996Q5.254,3.084 5.111,3.18Q4.968,3.275 4.83,3.378Q4.692,3.48 4.559,3.589Q4.426,3.698 4.299,3.813Q4.172,3.929 4.05,4.05Q3.929,4.172 3.813,4.299Q3.698,4.426 3.589,4.559Q3.48,4.692 3.378,4.83Q3.275,4.968 3.18,5.111Q3.084,5.254 2.996,5.401Q2.908,5.549 2.827,5.7Q2.746,5.852 2.672,6.007Q2.599,6.162 2.533,6.321Q2.467,6.48 2.409,6.642Q2.351,6.804 2.301,6.968Q2.252,7.132 2.21,7.299Q2.168,7.466 2.135,7.634Q2.101,7.803 2.076,7.973Q2.051,8.143 2.034,8.314Q2.017,8.485 2.008,8.657Q2,8.828 2,9Q2,9.172 2.008,9.343Q2.017,9.515 2.034,9.686Q2.051,9.857 2.076,10.027Q2.101,10.197 2.135,10.366Q2.168,10.534 2.21,10.701Q2.252,10.868 2.301,11.032Q2.351,11.196 2.409,11.358Q2.467,11.52 2.533,11.679Q2.599,11.838 2.672,11.993Q2.746,12.148 2.827,12.3Q2.908,12.451 2.996,12.599Q3.084,12.746 3.18,12.889Q3.275,13.032 3.378,13.17Q3.48,13.308 3.589,13.441Q3.698,13.574 3.813,13.701Q3.929,13.828 4.05,13.95Q4.172,14.071 4.299,14.187Q4.426,14.302 4.559,14.411Q4.692,14.52 4.83,14.622Q4.968,14.725 5.111,14.82Q5.254,14.916 5.401,15.004Q5.549,15.092 5.7,15.173Q5.852,15.254 6.007,15.328Q6.162,15.401 6.321,15.467Q6.48,15.533 6.642,15.591Q6.804,15.649 6.968,15.699Q7.132,15.748 7.299,15.79Q7.466,15.832 7.634,15.865Q7.803,15.899 7.973,15.924Q8.143,15.949 8.314,15.966Q8.485,15.983 8.657,15.992Q8.828,16 9,16Q9.172,16 9.343,15.992Q9.515,15.983 9.686,15.966Q9.857,15.949 10.027,15.924Q10.197,15.899 10.366,15.865Q10.534,15.832 10.701,15.79Q10.868,15.748 11.032,15.699Q11.196,15.649 11.358,15.591Q11.52,15.533 11.679,15.467Q11.838,15.401 11.993,15.328Q12.148,15.254 12.3,15.173Q12.451,15.092 12.599,15.004Q12.746,14.916 12.889,14.82Q13.032,14.725 13.17,14.622Q13.308,14.52 13.441,14.411Q13.574,14.302 13.701,14.187Q13.828,14.071 13.95,13.95Q14.071,13.828 14.187,13.701Q14.302,13.574 14.411,13.441Q14.52,13.308 14.622,13.17Q14.725,13.032 14.82,12.889Q14.916,12.746 15.004,12.599Q15.092,12.451 15.173,12.3Q15.254,12.148 15.328,11.993Q15.401,11.838 15.467,11.679Q15.533,11.52 15.591,11.358Q15.649,11.196 15.699,11.032Q15.748,10.868 15.79,10.701Q15.832,10.534 15.865,10.366Q15.899,10.197 15.924,10.027Q15.949,9.857 15.966,9.686Q15.983,9.515 15.992,9.343Q16,9.172 16,9Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_unchecked.xml"
line="10"
column="27"/>
</issue>
<issue
id="VectorPath"
severity="Warning"
message="Very long vector path (973 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
category="Performance"
priority="5"
summary="Long vector paths"
explanation="Using long vector paths is bad for performance. There are several ways to make the `pathData` shorter:&#xA;* Using less precision&#xA;* Removing some minor details&#xA;* Using the Android Studio vector conversion tool&#xA;* Rasterizing the image (converting to PNG)"
errorLine1=" android:pathData=&quot;M20.5,20.839Q20.5,21.497 20.239,22.064Q19.978,22.63 19.521,23.065Q19.064,23.499 18.451,23.75Q17.838,24 17.133,24L7.867,24Q7.162,24 6.549,23.75Q5.936,23.499 5.479,23.065Q5.022,22.63 4.761,22.064Q4.5,21.497 4.5,20.839L4.5,3.188Q4.5,2.529 4.761,1.95Q5.022,1.37 5.479,0.935Q5.936,0.501 6.549,0.25Q7.162,0 7.867,0L17.133,0Q17.838,0 18.451,0.25Q19.064,0.501 19.521,0.935Q19.978,1.37 20.239,1.95Q20.5,2.529 20.5,3.188L20.5,20.839ZM18.386,4.452L6.588,4.452L6.588,19.548L18.386,19.548L18.386,4.452ZM12.487,20.285Q11.939,20.285 11.534,20.681Q11.13,21.076 11.13,21.655Q11.13,22.209 11.534,22.617Q11.939,23.025 12.487,23.025Q13.061,23.025 13.453,22.617Q13.844,22.209 13.844,21.655Q13.844,21.076 13.453,20.681Q13.061,20.285 12.487,20.285ZM14.575,2.213Q14.575,2.002 14.445,1.884Q14.314,1.765 14.157,1.765L10.843,1.765Q10.712,1.765 10.569,1.884Q10.425,2.002 10.425,2.213Q10.425,2.424 10.555,2.542Q10.686,2.661 10.843,2.661L14.157,2.661Q14.314,2.661 14.445,2.542Q14.575,2.424 14.575,2.213Z&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_upload_local.xml"
line="10"
column="27"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableIntStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var tapCount by remember { mutableStateOf(0) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="474"
column="48"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableLongStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var lastTapTime by remember { mutableStateOf(0L) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="475"
column="51"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableIntStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var tapCount by remember { mutableStateOf(0) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="549"
column="48"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableLongStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var lastTapTime by remember { mutableStateOf(0L) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="550"
column="51"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableIntStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var servicePhoneTapCount by remember { mutableStateOf(0) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="833"
column="44"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableLongStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var servicePhoneLastTapTime by remember { mutableStateOf(0L) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/home/view/HomeScreen.kt"
line="834"
column="47"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableIntStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var refreshKey by remember { mutableStateOf(0) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/MainActivity.kt"
line="143"
column="42"/>
</issue>
<issue
id="AutoboxingStateCreation"
severity="Hint"
message="Prefer `mutableIntStateOf` instead of `mutableStateOf`"
category="Performance"
priority="3"
summary="`State&lt;T>` will autobox values assigned to this state. Use a specialized state type instead."
explanation="Calling `mutableStateOf&lt;T>()` when `T` is either backed by a primitive type on the JVM or is a value class results in a state implementation that requires all state values to be boxed. This usually causes an additional allocation for each state write, and adds some additional work to auto-unbox values when reading the value of the state. Instead, prefer to use a specialized primitive state implementation for `Int`, `Long`, `Float`, and `Double` when the state does not need to track null values and does not override the default `SnapshotMutationPolicy`. See `mutableIntStateOf()`, `mutableLongStateOf()`, `mutableFloatStateOf()`, and `mutableDoubleStateOf()` for more information."
errorLine1=" var dotCount by remember { mutableStateOf(1) }"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/upload/view/PrintingScreen.kt"
line="105"
column="44"/>
</issue>
<issue
id="Overdraw"
severity="Warning"
message="Possible overdraw: Root element paints background `@color/white` with a theme that also paints a background (inferred theme is `@style/Theme_FULL`)"
category="Performance"
priority="3"
summary="Overdraw: Painting regions more than once"
explanation="If you set a background drawable on a root view, then you should use a custom theme where the theme background is null. Otherwise, the theme background will be painted first, only to have your custom background completely cover it; this is called &quot;overdraw&quot;.&#xA;&#xA;NOTE: This detector relies on figuring out which layouts are associated with which activities based on scanning the Java code, and it&apos;s currently doing that using an inexact pattern matching algorithm. Therefore, it can incorrectly conclude which activity the layout is associated with and then wrongly complain that a background-theme is hidden.&#xA;&#xA;If you want your custom background on multiple pages, then you should consider making a custom theme with your custom background and just using that theme instead of a root element background.&#xA;&#xA;Of course it&apos;s possible that your custom drawable is translucent and you want it to be mixed with the background. However, you will get better performance if you pre-mix the background with your drawable and use that resulting image or color as a custom theme background instead."
errorLine1=" android:background=&quot;@color/white&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/activity_splash.xml"
line="6"
column="5"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.btn_pay_success` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/btn_pay_success.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.purple_200` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;purple_200&quot;>#FFBB86FC&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="3"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.purple_500` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;purple_500&quot;>#FF6200EE&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="4"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.purple_700` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;purple_700&quot;>#FF3700B3&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="5"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.teal_200` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;teal_200&quot;>#FF03DAC5&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="6"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.teal_700` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;teal_700&quot;>#FF018786&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="7"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.black` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;black&quot;>#FF000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="8"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.splash_dark` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;splash_dark&quot;>#FF111111&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="10"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.ordertask_btn_bg` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;ordertask_btn_bg&quot;>#E6F0FF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="12"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.ordertask_btn_text` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;ordertask_btn_text&quot;>#4080FF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="13"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.agree_green` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;agree_green&quot;>#6AA966&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="19"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.teal_link` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;teal_link&quot;>#1EC9B9&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="20"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.location_bg` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;location_bg&quot;>#B2D5FF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/colors.xml"
line="21"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_accept_orders` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_accept_orders.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_access_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_access_time.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_alive_details_duration` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/ic_alive_details_duration.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_alive_details_watch` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/ic_alive_details_watch.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_alive_pause` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_alive_pause.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_alive_play` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_alive_play.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_alive_stop` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_alive_stop.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_area_authority` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_area_authority.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_arrow_upward` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_arrow_upward.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_assignment` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_assignment.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_attach_money` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_attach_money.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_camera_alt` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_camera_alt.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_checked` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_checked.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_close_round` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_close_round.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_delete_img` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_delete_img.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_edit` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_edit.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_face_large` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_face_large.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_free_traffic` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_free_traffic.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_fun_add` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_fun_add.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_fun_remove` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_fun_remove.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_home_menu_location` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_location.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_home_menu_more` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_menu_more.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_home_scenic_more` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_home_scenic_more.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_img_transfer` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_img_transfer.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_benefit_free_cloud` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_benefit_free_cloud.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_benefit_free_editing` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_benefit_free_editing.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_consultation` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_invite_consultation.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_earnings` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_earnings.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_link` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_link.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_record` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_record.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_invite_share` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_invite_share.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.color.ic_launcher_background` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;color name=&quot;ic_launcher_background&quot;>#FFFFFF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/ic_launcher_background.xml"
line="3"
column="12"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_launcher_foreground` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_launcher_round` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_location` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_location.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_location_report` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_location_report.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_map_location` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_map_location.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_map_zoom_in` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_map_zoom_in.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_map_zoom_out` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_map_zoom_out.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_marketing` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_marketing.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_material_num` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_material_num.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_more_scenic` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_more_scenic.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_no_commission` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_no_commission.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_note_printer` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_note_printer.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_online` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_online.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_open_scenic` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_open_scenic.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_order_failed` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_order_failed.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_order_successful` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_order_successful.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_order_tools` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_order_tools.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_outline` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_outline.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_pause` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_pause.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_pay_success` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_pay_success.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_photo_num` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_photo_num.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_point_markers` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/ic_point_markers.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_preview_close` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_preview_close.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_print_end` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_print_end.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_print_failed` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_print_failed.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_pro_player_pause` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_pro_player_pause.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_pro_player_play` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_pro_player_play.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_profile_business_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_profile_business_time.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_project_person` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_project_person.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_punch_point_code` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_punch_point_code.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_punch_point_delete` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_punch_point_delete.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_punch_point_location` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_punch_point_location.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_qrcode_scanner` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_qrcode_scanner.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_report_location` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_report_location.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_scenic_identity` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_scenic_identity.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_schedule_item_paper` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_schedule_item_paper.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_schedule_item_shop` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_schedule_item_shop.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_schedule_item_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_schedule_item_time.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_search` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_search.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_setting_menu_upgrade` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_setting_menu_upgrade.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_data_select` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_data_select.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_data_unselect` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_data_unselect.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_home_selected` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_home_selected.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_home_unselect` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_home_unselect.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_me_select` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_me_select.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_me_unselect` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_me_unselect.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_order_select` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_order_select.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_tab_order_unselect` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_tab_order_unselect.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_task_user_phone` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_task_user_phone.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_unchecked` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_unchecked.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_upload_large` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_upload_large.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_user_benefits` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_user_benefits.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.ic_video_number` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/ic_video_number.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_video_play` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_video_play.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.drawable.ic_video_transfer` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_video_transfer.xml"
line="1"
column="1"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_chang_role` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_chang_role.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_add_folder` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_add_folder.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_current_path_arrow` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_current_path_arrow.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_delete` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_delete.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_details` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_details.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_download` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_download.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_filter` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_filter.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_item_details` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_item_details.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_move` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_move.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_play` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_play.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_search` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_search.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_file_share` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_file_share.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_folder_type` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_folder_type.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_go_home` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_go_home.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_list_sort` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_list_sort.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_show_type_list` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_show_type_list.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_show_type_table` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_show_type_table.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_cloud_storage_transit` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_cloud_storage_transit.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_data_statistics_average_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_data_statistics_average_amount.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_data_statistics_get_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_data_statistics_get_amount.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_data_statistics_refund_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_data_statistics_refund_amount.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_data_statistics_total_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_data_statistics_total_amount.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_data_statistics_total_order` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_data_statistics_total_order.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_input_clear` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_input_clear.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_payment_code_refresh` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/icon_payment_code_refresh.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.icon_splash` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-hdpi/icon_splash.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.img_login_bg` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/img_login_bg.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.img_qr_admin` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xhdpi/img_qr_admin.webp"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.img_splash` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/img_splash.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.mipmap.img_square_error_big` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/img_square_error_big.png"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.raw.pay_success_select_photo_print_page` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/raw/pay_success_select_photo_print_page.wav"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.phone_code` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;phone_code&quot;>+86&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="9"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.account_hint` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;account_hint&quot;>请输入账号&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="11"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.login` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;login&quot;>登录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="12"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.login_by_code` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;login_by_code&quot;>验证码登录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="13"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.login_by_account` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;login_by_account&quot;>账号密码登录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="14"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_title&quot;>输入邀请码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="16"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_desc` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_desc&quot;>为了给您更好的产品体验,请输入邀请码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="17"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_placeholder` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_placeholder&quot;>请输入邀请码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="18"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_confirm` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_confirm&quot;>确认绑定&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="19"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_get` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_get&quot;>获取邀请码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="20"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_scan_tip` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_scan_tip&quot;>扫码添加管理员企业微信&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="21"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_save_tip` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_save_tip&quot;>长按保存为图片&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="22"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_save_success` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_save_success&quot;>二维码已保存至相册&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="23"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_save_fail` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_save_fail&quot;>保存失败,请稍后重试&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="24"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_code_permission_denied` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_code_permission_denied&quot;>未授予存储权限,无法保存二维码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="25"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.register_subtitle` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;register_subtitle&quot;>注册成功后将自动生成邀请码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="27"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.register_invite_placeholder` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;register_invite_placeholder&quot;>邀请码(选填)&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="28"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.register_confirm` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;register_confirm&quot;>注册并登录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="29"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.register_has_account` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;register_has_account&quot;>已有账号?&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="30"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.register_login` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;register_login&quot;>去登录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="31"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_selection_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_selection_title&quot;>景区选择&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="33"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_banner_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_banner_title&quot;>希望开通更多景区权限&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="34"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_banner_apply` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_banner_apply&quot;>立即申请&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="35"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_search_hint` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_search_hint&quot;>搜索景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="36"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_top_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_top_title&quot;>没有找到心仪的景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="37"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_top_content` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_top_content&quot;>申请平台开通新景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="38"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_search_content_desc` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_search_content_desc&quot;>搜索&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="39"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_current_location_label` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_current_location_label&quot;>当前定位地址&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="40"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_tag_nearest` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_tag_nearest&quot;>距离最近&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="41"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_tag_closed` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_tag_closed&quot;>暂未营业&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="42"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_title&quot;>景区入驻申请&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="44"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_select_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_select_title&quot;>选择景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="45"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_multi_select` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_multi_select&quot;>可多选&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="46"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_select_tip` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_select_tip&quot;>请选择您需要申请权限的景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="47"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_select_placeholder` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_select_placeholder&quot;>请选择景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="48"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_new_section` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_new_section&quot;>新增景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="49"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_existing_section` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_existing_section&quot;>已有景区&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="50"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_submit` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_submit&quot;>提交审核&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="51"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_submitting` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_submitting&quot;>提交中…&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="52"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_no_more` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_no_more&quot;>没有更多景区了&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="53"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_status_pending` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_status_pending&quot;>审核中&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="54"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_submit_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_submit_time&quot;>提交时间:&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="55"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_approve_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_approve_time&quot;>审核时间:&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="56"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_reviewer` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_reviewer&quot;>审核人:&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="57"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_remark_prefix` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_remark_prefix&quot;>审核备注:&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="58"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_empty_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_empty_title&quot;>暂无审核信息&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="59"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_empty_subtitle` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_empty_subtitle&quot;>提交资料后可在此查看审核进度&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="60"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_settlement_review_entry` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_settlement_review_entry&quot;>查看审核进度&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="61"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.scenic_relocate` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;scenic_relocate&quot;>重新定位&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="62"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_title&quot;>我的钱包&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="63"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_withdrawable_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_withdrawable_amount&quot;>可提现金额&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="64"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_total_amount` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_total_amount&quot;>累计金额&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="65"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_current_balance` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_current_balance&quot;>当前余额&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="66"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_tab_withdraw` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_tab_withdraw&quot;>提现记录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="67"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_tab_transaction` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_tab_transaction&quot;>收益明细&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="68"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_total_income` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_total_income&quot;>总收益:&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="69"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_day_income` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_day_income&quot;>当日收益:%1$s&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="70"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_filter_last_7_days` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_filter_last_7_days&quot;>最近7天&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="71"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_filter_last_30_days` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_filter_last_30_days&quot;>最近30天&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="72"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_filter_last_180_days` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_filter_last_180_days&quot;>最近180天&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="73"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_withdraw_button` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_withdraw_button&quot;>提现到银行卡&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="74"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_empty_withdraw` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_empty_withdraw&quot;>暂无提现记录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="75"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_empty_transaction` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_empty_transaction&quot;>暂无收益明细&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="76"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_expected_arrival` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_expected_arrival&quot;>预计到账时间&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="77"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_audit_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_audit_time&quot;>审核时间&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="78"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_audit_remark` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_audit_remark&quot;>备注信息&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="79"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_arrival_time` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_arrival_time&quot;>到账时间&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="80"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_step_submit` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_step_submit&quot;>提交申请&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="81"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_step_audit` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_step_audit&quot;>审核中&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="82"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_step_payment` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_step_payment&quot;>打款中&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="83"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.wallet_step_done` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;wallet_step_done&quot;>已完成&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="84"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.common_back` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;common_back&quot;>返回&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="85"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.punch_point_list_empty` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;punch_point_list_empty&quot;>暂无打卡点,点击下方按钮即可添加&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="86"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.punch_point_list_empty_action` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;punch_point_list_empty_action&quot;>立即添加&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="87"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.project_list_empty` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;project_list_empty&quot;>暂无项目,点击下方按钮即可添加&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="89"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_title` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_title&quot;>摄影师邀请&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="92"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_record` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_record&quot;>邀请记录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="93"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_consultation` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_consultation&quot;>在线咨询&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="94"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_qr_code_desc` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_qr_code_desc&quot;>邀请二维码&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="95"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_code_label` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_code_label&quot;>邀请码: &lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="96"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_copy` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_copy&quot;>复制&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="97"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_share` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_share&quot;>分享&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="98"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_link_desc` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_link_desc&quot;>链接&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="99"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_copy_link` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_copy_link&quot;>复制链接&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="100"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_earnings_rules` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_earnings_rules&quot;>收益规则&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="101"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_new_user_benefits` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_new_user_benefits&quot;>新人福利&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="102"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_free_editing` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_free_editing&quot;>免费剪辑修图&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="103"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_free_cloud` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_free_cloud&quot;>免费云盘相册&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="104"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_free_traffic` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_free_traffic&quot;>免费线上流量&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="105"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_scenic_identity` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_scenic_identity&quot;>景区运营身份&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="106"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_order_tools` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_order_tools&quot;>接单软件工具&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="107"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_benefit_no_commission` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_benefit_no_commission&quot;>免佣金特权&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="108"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_activity_validity` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_activity_validity&quot;>活动有效期: 2026年9月1日&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="109"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.photographer_invite_commission_validity` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;photographer_invite_commission_validity&quot;>佣金有效期: 2028年1月1日&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="110"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_record_invited_photographers` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_record_invited_photographers&quot;>已邀请摄影师&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="112"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_record_empty` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_record_empty&quot;>暂无邀请记录&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="113"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_record_no_more` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_record_no_more&quot;>没有更多&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="114"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.string.invite_record_go_to_wallet` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,"
errorLine1=" &lt;string name=&quot;invite_record_go_to_wallet&quot;>去钱包提现&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/values/strings.xml"
line="115"
column="13"/>
</issue>
<issue
id="UnusedResources"
severity="Warning"
message="The resource `R.raw.wechat_qrcode_dialog_page` appears to be unused"
category="Performance"
priority="3"
summary="Unused resources"
explanation="Unused resources make applications larger and slow down builds.&#xA;&#xA;&#xA;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.&#xA;&#xA;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.&#xA;,">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/raw/wechat_qrcode_dialog_page.wav"/>
</issue>
<issue
id="UseOfNonLambdaOffsetOverload"
severity="Warning"
message="State backed values should use the lambda overload of Modifier.offset"
category="Performance"
priority="3"
summary="Modifier.offset{ } is preferred over Modifier.offset() for `State` backed arguments."
explanation="`Modifier.offset()` is recommended to be used with static arguments only to avoid unnecessary recompositions. `Modifier.offset{ }` is preferred in the cases where the arguments are backed by a `State`."
errorLine1=" .offset(x = thumbOffsetX)"
errorLine2=" ~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/component/checkbox/IosSwitch.kt"
line="75"
column="18"/>
</issue>
<issue
id="UselessParent"
severity="Warning"
message="This `LinearLayout` layout or its `FrameLayout` parent is unnecessary; transfer the `background` attribute to the other view"
category="Performance"
priority="2"
summary="Unnecessary parent layout"
explanation="A layout with children that has no siblings, is not a scrollview or a root layout, and does not have a background, can be removed and have its children moved directly into the parent for a flatter and more efficient layout hierarchy."
errorLine1=" &lt;LinearLayout"
errorLine2=" ~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/dialog_privacy_policy.xml"
line="8"
column="6"/>
</issue>
<issue
id="IconXmlAndPng"
severity="Warning"
message="The following images appear both as density independent `.xml` files and as bitmap files: src/main/res/drawable/ic_face_large.xml, src/main/res/mipmap-xxxhdpi/ic_face_large.webp"
category="Usability:Icons"
priority="7"
summary="Icon is specified both as `.xml` file and as a bitmap"
explanation="If a drawable resource appears as an `.xml` file in the `drawable/` folder, it&apos;s usually not intentional for it to also appear as a bitmap using the same name; generally you expect the drawable XML file to define states and each state has a corresponding drawable bitmap.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_face_large.webp"/>
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_face_large.xml"/>
</issue>
<issue
id="IconXmlAndPng"
severity="Warning"
message="The following images appear both as density independent `.xml` files and as bitmap files: src/main/res/drawable/ic_upload_large.xml, src/main/res/mipmap-xxxhdpi/ic_upload_large.webp"
category="Usability:Icons"
priority="7"
summary="Icon is specified both as `.xml` file and as a bitmap"
explanation="If a drawable resource appears as an `.xml` file in the `drawable/` folder, it&apos;s usually not intentional for it to also appear as a bitmap using the same name; generally you expect the drawable XML file to define states and each state has a corresponding drawable bitmap.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_upload_large.webp"/>
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/drawable/ic_upload_large.xml"/>
</issue>
<issue
id="IconLauncherShape"
severity="Warning"
message="Launcher icon used as round icon did not have a circular shape"
category="Usability:Icons"
priority="6"
summary="The launcher icon shape should use a distinct silhouette"
explanation="According to the Android Design Guide (https://d.android.com/r/studio-ui/designer/material/iconography) your launcher icons should &quot;use a distinct silhouette&quot;, a &quot;three-dimensional, front view, with a slight perspective as if viewed from above, so that users perceive some depth.&quot;&#xA;&#xA;The unique silhouette implies that your launcher icon should not be a filled square.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxhdpi/ic_launcher.png"/>
</issue>
<issue
id="IconLauncherShape"
severity="Warning"
message="Launcher icons should not fill every pixel of their square region; see the design guide for details"
category="Usability:Icons"
priority="6"
summary="The launcher icon shape should use a distinct silhouette"
explanation="According to the Android Design Guide (https://d.android.com/r/studio-ui/designer/material/iconography) your launcher icons should &quot;use a distinct silhouette&quot;, a &quot;three-dimensional, front view, with a slight perspective as if viewed from above, so that users perceive some depth.&quot;&#xA;&#xA;The unique silhouette implies that your launcher icon should not be a filled square.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/logo.png"/>
</issue>
<issue
id="GifUsage"
severity="Warning"
message="Using the `.gif` format for bitmaps is discouraged"
category="Usability:Icons"
priority="5"
summary="Using `.gif` format for bitmaps is discouraged"
explanation="The `.gif` file format is discouraged. Consider using `.png` (preferred) or `.jpg` (acceptable) instead."
url="https://developer.android.com/guide/topics/resources/drawable-resource.html#Bitmap"
urls="https://developer.android.com/guide/topics/resources/drawable-resource.html#Bitmap">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/res_printend.gif"/>
</issue>
<issue
id="IconDuplicates"
severity="Warning"
message="The following unrelated icon files have identical contents: ic_print_end.webp, ic_top_print_end.webp"
category="Usability:Icons"
priority="3"
summary="Duplicated icons under different names"
explanation="If an icon is repeated under different names, you can consolidate and just use one of the icons and delete the others to make your application smaller. However, duplicated icons usually are not intentional and can sometimes point to icons that were accidentally overwritten or accidentally not updated.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_top_print_end.webp"/>
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_print_end.webp"/>
</issue>
<issue
id="IconDuplicates"
severity="Warning"
message="The following unrelated icon files have identical contents: ic_print_failed.webp, ic_top_print_err.webp"
category="Usability:Icons"
priority="3"
summary="Duplicated icons under different names"
explanation="If an icon is repeated under different names, you can consolidate and just use one of the icons and delete the others to make your application smaller. However, duplicated icons usually are not intentional and can sometimes point to icons that were accidentally overwritten or accidentally not updated.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_top_print_err.webp"/>
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_print_failed.webp"/>
</issue>
<issue
id="IconDuplicates"
severity="Warning"
message="The following unrelated icon files have identical contents: ic_note_printer.webp, ic_top_printting.webp"
category="Usability:Icons"
priority="3"
summary="Duplicated icons under different names"
explanation="If an icon is repeated under different names, you can consolidate and just use one of the icons and delete the others to make your application smaller. However, duplicated icons usually are not intentional and can sometimes point to icons that were accidentally overwritten or accidentally not updated.">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_top_printting.webp"/>
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/mipmap-xxxhdpi/ic_note_printer.webp"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" val mediaItem = MediaItem.fromUri(Uri.parse(audioUrl))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/audio/AudioPlayService.kt"
line="120"
column="47"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" path.startsWith(&quot;content://&quot;) -> android.net.Uri.parse(path)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/view/DeviceConfigScreen.kt"
line="699"
column="62"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" path.startsWith(&quot;file://&quot;) -> android.net.Uri.parse(path)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/view/DeviceConfigScreen.kt"
line="700"
column="59"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" android.net.Uri.parse(&quot;file://$path&quot;)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/view/DeviceConfigScreen.kt"
line="706"
column="37"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" setMediaItem(MediaItem.fromUri(Uri.parse(poster.url)))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/device/view/DeviceConfigScreen.kt"
line="876"
column="68"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" setMediaItem(MediaItem.fromUri(Uri.parse(url)))"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/poster/view/PosterScreen.kt"
line="178"
column="44"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" setMediaItem(MediaItem.fromUri(Uri.parse(url)))"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/ui/poster/view/PosterScreenWithLiveOrSlideshow.kt"
line="122"
column="44"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `Bitmap.get` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" decoded.getPixel(decoded.width / 2, decoded.height / 2)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/priter/PrintImageIntegrityValidator.kt"
line="88"
column="13"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `Bitmap.scale` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" scaledBitmap = Bitmap.createScaledBitmap(workingBitmap, scaledWidth, scaledHeight, true)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/priter/PrinterService.kt"
line="152"
column="28"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX function `createBitmap` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" val outputBitmap = Bitmap.createBitmap("
errorLine2=" ^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/priter/PrinterService.kt"
line="155"
column="32"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX function `createBitmap` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" bitmap = android.graphics.Bitmap.createBitmap("
errorLine2=" ^">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/websocket/PrivacyPrintService.kt"
line="553"
column="26"/>
</issue>
<issue
id="UseKtx"
severity="Warning"
message="Use the KTX extension function `String.toUri` instead?"
category="Productivity"
priority="6"
summary="Use KTX extension function"
explanation="The Android KTX libraries decorates the Android platform SDK as well as various libraries with more convenient extension functions available from Kotlin, allowing you to use default parameters, named parameters, and more."
errorLine1=" Uri.parse(&quot;package:${context.packageName}&quot;)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/java/com/yzx/kiosk/utils/VersionUpdateManager.kt"
line="658"
column="21"/>
</issue>
<issue
id="HardcodedText"
severity="Warning"
message="Hardcoded string &quot;用户协议和隐私政策&quot;, should use `@string` resource"
category="Internationalization"
priority="5"
summary="Hardcoded text"
explanation="Hardcoding text attributes directly in layout files is bad for several reasons:&#xA;&#xA;* When creating configuration variations (for example for landscape or portrait) you have to repeat the actual text (and keep it up to date when making changes)&#xA;&#xA;* The application cannot be translated to other languages by just adding new translations for existing string resources.&#xA;&#xA;There are quickfixes to automatically extract this hardcoded string into a resource lookup."
errorLine1=" android:text=&quot;用户协议和隐私政策&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/dialog_privacy_policy.xml"
line="21"
column="13"/>
</issue>
<issue
id="HardcodedText"
severity="Warning"
message="Hardcoded string &quot;在您使用本应用之前,请您务必审慎阅读、充分理解“用户协议”和“隐私政策”各条款内容。&quot;, should use `@string` resource"
category="Internationalization"
priority="5"
summary="Hardcoded text"
explanation="Hardcoding text attributes directly in layout files is bad for several reasons:&#xA;&#xA;* When creating configuration variations (for example for landscape or portrait) you have to repeat the actual text (and keep it up to date when making changes)&#xA;&#xA;* The application cannot be translated to other languages by just adding new translations for existing string resources.&#xA;&#xA;There are quickfixes to automatically extract this hardcoded string into a resource lookup."
errorLine1=" android:text=&quot;在您使用本应用之前,请您务必审慎阅读、充分理解“用户协议”和“隐私政策”各条款内容。&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/dialog_privacy_policy.xml"
line="33"
column="13"/>
</issue>
<issue
id="HardcodedText"
severity="Warning"
message="Hardcoded string &quot;退出应用&quot;, should use `@string` resource"
category="Internationalization"
priority="5"
summary="Hardcoded text"
explanation="Hardcoding text attributes directly in layout files is bad for several reasons:&#xA;&#xA;* When creating configuration variations (for example for landscape or portrait) you have to repeat the actual text (and keep it up to date when making changes)&#xA;&#xA;* The application cannot be translated to other languages by just adding new translations for existing string resources.&#xA;&#xA;There are quickfixes to automatically extract this hardcoded string into a resource lookup."
errorLine1=" android:text=&quot;退出应用&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/dialog_privacy_policy.xml"
line="52"
column="17"/>
</issue>
<issue
id="HardcodedText"
severity="Warning"
message="Hardcoded string &quot;已阅读并同意&quot;, should use `@string` resource"
category="Internationalization"
priority="5"
summary="Hardcoded text"
explanation="Hardcoding text attributes directly in layout files is bad for several reasons:&#xA;&#xA;* When creating configuration variations (for example for landscape or portrait) you have to repeat the actual text (and keep it up to date when making changes)&#xA;&#xA;* The application cannot be translated to other languages by just adding new translations for existing string resources.&#xA;&#xA;There are quickfixes to automatically extract this hardcoded string into a resource lookup."
errorLine1=" android:text=&quot;已阅读并同意&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="/Users/hanqiu/Desktop/KIOSK/app/src/main/res/layout/dialog_privacy_policy.xml"
line="68"
column="17"/>
</issue>
</issues>