mifos-mobile/cmp-android/lint-baseline.xml
2025-02-07 21:29:59 +05:30

1511 lines
61 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 Mifos Initiative
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file,
You can obtain one at https://mozilla.org/MPL/2.0/.
See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
-->
<issues format="6" by="lint 8.5.2" type="baseline" client="gradle" dependencies="true" name="AGP (8.5.2)" variant="all" version="8.5.2">
<issue
id="ScopedStorage"
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`."
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.READ_EXTERNAL_STORAGE&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="20"
column="36"/>
</issue>
<issue
id="ScopedStorage"
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."
errorLine1=" &lt;uses-permission android:name=&quot;android.permission.WRITE_EXTERNAL_STORAGE&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="21"
column="36"/>
</issue>
<issue
id="SimpleDateFormat"
message="To get local formatting use `getDateInstance()`, `getDateTimeInstance()`, or `getTimeInstance()`, or use `new SimpleDateFormat(String template, Locale locale)` with for example `Locale.US` for ASCII dates."
errorLine1=" val format = SimpleDateFormat(&quot;yyyy-MM-dd HH:mm:ss&quot;)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/java/org/mifospay/utils/NotificationUtils.kt"
line="247"
column="26"/>
</issue>
<issue
id="GradleDependency"
message="A newer version of com.google.guava:guava than 27.0.1-android is available: 33.0.0-android"
errorLine1=" implementation(&quot;com.google.guava:guava:27.0.1-android&quot;)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="build.gradle.kts"
line="25"
column="20"/>
</issue>
<issue
id="VisibleForTests"
message="This method should only be accessed from tests or within private scope"
errorLine1=" private val assets: LocalAssetManager = JvmLocalAssetManager,"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/org/mifospay/core/network/localAssets/MifosLocalAssetDataSource.kt"
line="30"
column="45"/>
</issue>
<issue
id="Typos"
message="&quot;successfull&quot; is a common misspelling; did you mean &quot;successful&quot;?"
errorLine1=" &lt;string name=&quot;feature_editpassword_password_changed_successfully&quot;>Password changed successfull&lt;/string>"
errorLine2=" ^">
<location
file="src/main/res/values/strings.xml"
line="12"
column="88"/>
</issue>
<issue
id="Typos"
message="&quot;Gine&quot; is a common misspelling; did you mean &quot;Yine&quot;?"
errorLine1=" &lt;string name=&quot;guinea&quot;>Gine&lt;/string>"
errorLine2=" ^">
<location
file="src/main/res/values-tr-rTR/strings.xml"
line="102"
column="27"/>
</issue>
<issue
id="Typos"
message="&quot;Gine&quot; is a common misspelling; did you mean &quot;Yine&quot;?"
errorLine1=" &lt;string name=&quot;guinea_bissau&quot;>Gine-bissau &lt;/string>"
errorLine2=" ^">
<location
file="src/main/res/values-tr-rTR/strings.xml"
line="103"
column="34"/>
</issue>
<issue
id="Typos"
message="&quot;Gine&quot; is a common misspelling; did you mean &quot;Yine&quot;?"
errorLine1=" &lt;string name=&quot;papua_new_guinea&quot;>Papua Yeni Gine &lt;/string>"
errorLine2=" ^">
<location
file="src/main/res/values-tr-rTR/strings.xml"
line="179"
column="48"/>
</issue>
<issue
id="TrustAllX509TrustManager"
message="`checkClientTrusted` is empty, which could cause insecure network traffic due to trusting arbitrary TLS/SSL certificates presented by peers"
errorLine1=" override fun checkClientTrusted("
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/org/mifospay/core/network/MifosWalletOkHttpClient.kt"
line="34"
column="38"/>
</issue>
<issue
id="TrustAllX509TrustManager"
message="`checkServerTrusted` is empty, which could cause insecure network traffic due to trusting arbitrary TLS/SSL certificates presented by peers"
errorLine1=" override fun checkServerTrusted("
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/org/mifospay/core/network/MifosWalletOkHttpClient.kt"
line="41"
column="38"/>
</issue>
<issue
id="CustomX509TrustManager"
message="Implementing a custom `X509TrustManager` is error-prone and likely to be insecure. It is likely to disable certificate validation altogether, and is non-trivial to implement correctly without calling Android&apos;s default implementation."
errorLine1=" object : X509TrustManager {"
errorLine2=" ~~~~~~">
<location
file="src/main/kotlin/org/mifospay/core/network/MifosWalletOkHttpClient.kt"
line="32"
column="21"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="Unnecessary; SDK_INT is always >= 26"
errorLine1=" VERSION.SDK_INT >= VERSION_CODES.M ->"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/java/org/mifospay/core/data/util/ConnectivityManagerNetworkMonitor.kt"
line="77"
column="9"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="Unnecessary; SDK_INT is always >= 26"
errorLine1=" if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT_WATCH) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/java/org/mifospay/utils/NotificationUtils.kt"
line="215"
column="17"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="Unnecessary; SDK_INT is always >= 26"
errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/org/mifos/library/passcode/utility/VibrationFeedback.kt"
line="35"
column="21"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="This folder configuration (`v21`) is unnecessary; `minSdkVersion` is 26. Merge all the resources in this folder into `values`.">
<location
file="src/main/res/values-v21"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (1801 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData=&quot;M444.875,109.792 L338.167,3.125 C336.167,1.125,333.459,0,330.625,0 L106.667,0"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/feature_accounts_sim_card_selected.xml"
line="19"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (887 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData=&quot;M128,224 L128,416 C128,433.646,142.354,448,160,448 L352,448"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/feature_accounts_sim_card_unselected.xml"
line="29"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (1076 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData=&quot;M7.2485,0.6685C7.4857,0.4023 7.8253,0.25 8.1818,0.25H20.5909C21.4216,0.25 22.2226,0.5739 22.8167,1.1574C23.4116,1.7416 23.75,2.5389 23.75,3.375V14.625C23.75,15.4611 23.4116,16.2584 22.8167,16.8426C22.2226,17.4261 21.4216,17.75 20.5909,17.75H8.1818C7.8253,17.75 7.4857,17.5977 7.2485,17.3315L0.5667,9.8315C0.1444,9.3576 0.1444,8.6424 0.5667,8.1685L7.2485,0.6685ZM8.7423,2.75L3.1741,9L8.7423,15.25H20.5909C20.7729,15.25 20.943,15.1788 21.065,15.059C21.1861,14.94 21.25,14.7834 21.25,14.625V3.375C21.25,3.2166 21.1861,3.06 21.065,2.941C20.943,2.8212 20.7729,2.75 20.5909,2.75H8.7423ZM11.1082,5.3116C11.5919,4.8191 12.3834,4.812 12.8759,5.2957L14.8636,7.248L16.8514,5.2957C17.3439,4.812 18.1353,4.8191 18.6191,5.3116C19.1028,5.8042 19.0957,6.5956 18.6032,7.0793L16.6475,9L18.6032,10.9207C19.0957,11.4044 19.1028,12.1959 18.6191,12.6884C18.1353,13.1809 17.3439,13.188 16.8514,12.7043L14.8636,10.7521L12.8759,12.7043C12.3834,13.188 11.5919,13.1809 11.1082,12.6884C10.6245,12.1959 10.6316,11.4044 11.1241,10.9207L13.0797,9L11.1241,7.0793C10.6316,6.5956 10.6245,5.8042 11.1082,5.3116Z&quot; />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/lib_mifos_passcode_ic_delete.xml"
line="19"
column="27"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.bg_splash` appears to be unused"
errorLine1="&lt;layer-list xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
errorLine2="^">
<location
file="src/main/res/drawable/bg_splash.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_accounts_colorBlack87` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_accounts_colorBlack87&quot;>#DE000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/accounts/src/main/res/values/colors.xml"
line="12"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorAccent` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorAccent&quot;>#000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="12"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorPrimary` appears to be unused"
errorLine1=" &lt;color name=&quot;colorPrimary&quot;>#ffffff&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="13"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_accounts_colorTextPrimary` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_accounts_colorTextPrimary&quot;>@color/feature_accounts_colorBlack87&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/accounts/src/main/res/values/colors.xml"
line="13"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorBlack54` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorBlack54&quot;>#8A000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="13"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorPrimaryDark` appears to be unused"
errorLine1=" &lt;color name=&quot;colorPrimaryDark&quot;>#FFFFFF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="14"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorBlack87` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorBlack87&quot;>#DE000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="14"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorAccent` appears to be unused"
errorLine1=" &lt;color name=&quot;colorAccent&quot;>#000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="15"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorAccentYellow` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorAccentYellow&quot;>#FFF700&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="15"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.changedBackgroundColour` appears to be unused"
errorLine1=" &lt;color name=&quot;changedBackgroundColour&quot;>#ecf0f1 &lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="16"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorTextPrimary` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorTextPrimary&quot;>@color/feature_kyc_colorBlack87&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="16"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.clickedblue` appears to be unused"
errorLine1=" &lt;color name=&quot;clickedblue&quot;>#00bfff&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="17"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_kyc_colorTextSecondary` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_kyc_colorTextSecondary&quot;>@color/feature_kyc_colorBlack54&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/colors.xml"
line="17"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack100` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack100&quot;>#000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="19"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_accounts_colorBlack87` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_accounts_colorBlack87&quot;>#DE000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="20"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack70` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack70&quot;>#B3000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="21"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack54` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack54&quot;>#8A000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="22"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack50` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack50&quot;>#80000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="23"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack38` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack38&quot;>#61000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="24"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBlack12` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBlack12&quot;>#1F000000&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="25"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.feature_accounts_colorTextPrimary` appears to be unused"
errorLine1=" &lt;color name=&quot;feature_accounts_colorTextPrimary&quot;>@color/feature_accounts_colorBlack87&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="27"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorTextSecondary` appears to be unused"
errorLine1=" &lt;color name=&quot;colorTextSecondary&quot;>@color/colorBlack54&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="28"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorTextDisabled` appears to be unused"
errorLine1=" &lt;color name=&quot;colorTextDisabled&quot;>@color/colorBlack38&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="29"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorAccentBlue` appears to be unused"
errorLine1=" &lt;color name=&quot;colorAccentBlue&quot;>#000AFF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="31"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorAccentBlue50` appears to be unused"
errorLine1=" &lt;color name=&quot;colorAccentBlue50&quot;>#80000AFF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="32"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorAccentBlack` appears to be unused"
errorLine1=" &lt;color name=&quot;colorAccentBlack&quot;>#2F3542&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="33"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorAccentYellow` appears to be unused"
errorLine1=" &lt;color name=&quot;colorAccentYellow&quot;>#FFF700&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="34"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorListImageBackground` appears to be unused"
errorLine1=" &lt;color name=&quot;colorListImageBackground&quot;>#E6E6E6&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="35"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorListImageIcon` appears to be unused"
errorLine1=" &lt;color name=&quot;colorListImageIcon&quot;>#B8B8B8&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="36"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorDebit` appears to be unused"
errorLine1=" &lt;color name=&quot;colorDebit&quot;>#F10606&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="37"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorCredit` appears to be unused"
errorLine1=" &lt;color name=&quot;colorCredit&quot;>#009688&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="38"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorExpandableBottomSheetDialogGrip` appears to be unused"
errorLine1=" &lt;color name=&quot;colorExpandableBottomSheetDialogGrip&quot;>@color/colorBlack38&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="40"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorDivider` appears to be unused"
errorLine1=" &lt;color name=&quot;colorDivider&quot;>@color/colorBlack12&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="42"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorFABBackground` appears to be unused"
errorLine1=" &lt;color name=&quot;colorFABBackground&quot;>@color/colorAccentBlack&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="44"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorFABContent` appears to be unused"
errorLine1=" &lt;color name=&quot;colorFABContent&quot;>@color/colorPrimary&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="45"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorChangeProfileImageShapeBackground` appears to be unused"
errorLine1=" &lt;color name=&quot;colorChangeProfileImageShapeBackground&quot;>@color/colorAccentBlack&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="47"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorChangeProfileImageShapeText` appears to be unused"
errorLine1=" &lt;color name=&quot;colorChangeProfileImageShapeText&quot;>@color/colorPrimary&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="48"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorBottomViewNotFocusedIcon` appears to be unused"
errorLine1=" &lt;color name=&quot;colorBottomViewNotFocusedIcon&quot;>@color/colorAccentBlue50&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="50"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.primaryBlue` appears to be unused"
errorLine1=" &lt;color name=&quot;primaryBlue&quot;>#3F51B5&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="57"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.windowBackground` appears to be unused"
errorLine1=" &lt;color name=&quot;windowBackground&quot;>#f5f5f5&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="60"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.white` appears to be unused"
errorLine1=" &lt;color name=&quot;white&quot;>@android:color/white&lt;/color>"
errorLine2=" ~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="62"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray` appears to be unused"
errorLine1=" &lt;color name=&quot;gray&quot;>#ffdfdfdf&lt;/color>"
errorLine2=" ~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="65"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.grey_50` appears to be unused"
errorLine1=" &lt;color name=&quot;grey_50&quot;>#fafafa&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="66"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.grey_100` appears to be unused"
errorLine1=" &lt;color name=&quot;grey_100&quot;>#f5f5f5&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="67"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.grey_200` appears to be unused"
errorLine1=" &lt;color name=&quot;grey_200&quot;>#eeeeee&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="68"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.grey_300` appears to be unused"
errorLine1=" &lt;color name=&quot;grey_300&quot;>#e0e0e0&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="69"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.grey_900` appears to be unused"
errorLine1=" &lt;color name=&quot;grey_900&quot;>#212121&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="70"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_0` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_0&quot;>#d3d3d3&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="72"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_1` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_1&quot;>#bdbdbd&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="73"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_2` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_2&quot;>#a8a8a8&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="74"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_3` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_3&quot;>#939393&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="75"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_4` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_4&quot;>#7e7e7e&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="76"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_5` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_5&quot;>#696969&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="77"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_6` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_6&quot;>#545454&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="78"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_7` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_7&quot;>#3f3f3f&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="79"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_8` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_8&quot;>#2a2a2a&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="80"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.gray_9` appears to be unused"
errorLine1=" &lt;color name=&quot;gray_9&quot;>#151515&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="81"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.color.colorUpiPinScreenTitle` appears to be unused"
errorLine1=" &lt;color name=&quot;colorUpiPinScreenTitle&quot;>#1E90FF&lt;/color>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/colors.xml"
line="82"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_40dp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_40dp&quot;>40dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="12"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_15sp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_15sp&quot;>15sp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="13"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_70dp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_70dp&quot;>70dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="14"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_100dp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_100dp&quot;>100dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="15"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_50dp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_50dp&quot;>50dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="16"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_20dp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_20dp&quot;>20dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="17"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_13sp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_13sp&quot;>13sp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="18"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_emptyStateImageSize` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_emptyStateImageSize&quot;>64dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="19"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_value_20sp` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_value_20sp&quot;>20sp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="20"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_marginItemsInSectionLarge` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_marginItemsInSectionLarge&quot;>24dp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="21"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_textBody1` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_textBody1&quot;>16sp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="22"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.feature_kyc_textBody2` appears to be unused"
errorLine1=" &lt;dimen name=&quot;feature_kyc_textBody2&quot;>14sp&lt;/dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/dimens.xml"
line="23"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.feature_kyc_ic_error_state` appears to be unused"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="../feature/kyc/src/main/res/drawable/feature_kyc_ic_error_state.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.ic_finance` appears to be unused"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="src/main/res/drawable/ic_finance.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.ic_home` appears to be unused"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="src/main/res/drawable/ic_home.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.ic_person` appears to be unused"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="src/main/res/drawable/ic_person.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.ic_swap_horiz` appears to be unused"
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2="^">
<location
file="src/main/res/drawable/ic_swap_horiz.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.lib_mifos_passcode_delete_forever` appears to be unused"
errorLine1="&lt;vector android:height=&quot;24dp&quot; android:tint=&quot;#000000&quot;"
errorLine2="^">
<location
file="../libs/mifos-passcode/src/main/res/drawable/lib_mifos_passcode_delete_forever.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_axis` appears to be unused">
<location
file="src/main/res/drawable/logo_axis.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_hdfc` appears to be unused">
<location
file="src/main/res/drawable/logo_hdfc.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_icici` appears to be unused">
<location
file="src/main/res/drawable/logo_icici.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_pnb` appears to be unused">
<location
file="src/main/res/drawable/logo_pnb.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_rbl` appears to be unused">
<location
file="src/main/res/drawable/logo_rbl.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.logo_sbi` appears to be unused">
<location
file="src/main/res/drawable/logo_sbi.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.mifospay_round_logo` appears to be unused">
<location
file="src/main/res/drawable/mifospay_round_logo.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.money_in` appears to be unused">
<location
file="src/main/res/drawable/money_in.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.money_out` appears to be unused">
<location
file="src/main/res/drawable/money_out.png"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.style.AppTheme` appears to be unused"
errorLine1=" &lt;style name=&quot;AppTheme&quot; parent=&quot;Theme.AppCompat.NoActionBar&quot;>"
errorLine2=" ~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/splash.xml"
line="19"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.splash_screen_background` appears to be unused"
errorLine1="&lt;layer-list xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
errorLine2="^">
<location
file="src/main/res/drawable/splash_screen_background.xml"
line="11"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.lib_mifos_passcode_title` appears to be unused"
errorLine1=" &lt;string name=&quot;lib_mifos_passcode_title&quot;>Passcode will be reset, are you sure?&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="12"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_kyc_level_1` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_kyc_level_1&quot;>Level 1&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/strings.xml"
line="13"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_kyc_level_2` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_kyc_level_2&quot;>Level 2&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/strings.xml"
line="14"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.lib_mifos_passcode_yes` appears to be unused"
errorLine1=" &lt;string name=&quot;lib_mifos_passcode_yes&quot;>Yes&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="14"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_kyc_level_3` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_kyc_level_3&quot;>Level 3&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/strings.xml"
line="15"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_kyc_content_description_placeholder` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_kyc_content_description_placeholder&quot;>Placeholder&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/strings.xml"
line="16"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.andora` appears to be unused"
errorLine1=" &lt;string name=&quot;andora&quot;>Andorra&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="../libs/country-code-picker/src/main/res/values/strings.xml"
line="17"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_editpassword_old_password` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_editpassword_old_password&quot;>Old Password&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/editpassword/src/main/res/values/strings.xml"
line="17"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.lib_mifos_passcode_has_drag_passcode` appears to be unused"
errorLine1=" &lt;string name=&quot;lib_mifos_passcode_has_drag_passcode&quot;>hasDragPasscode&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="17"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_auth_default_web_client_id` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_auth_default_web_client_id&quot;>650844498895-eq3lvn274d8el5auf8q02n184om82eu5.apps.googleusercontent.com&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/auth/src/main/res/values/strings.xml"
line="18"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.lib_mifos_passcode_drag_passcode` appears to be unused"
errorLine1=" &lt;string name=&quot;lib_mifos_passcode_drag_passcode&quot;>drag_passcode&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="19"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_kyc_error_kyc_details` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_kyc_error_kyc_details&quot;>Couldn\&apos;t fetch KYC details. Please try again.&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/kyc/src/main/res/values/strings.xml"
line="23"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.library_mifos_passcode_forgot_passcode` appears to be unused"
errorLine1=" &lt;string name=&quot;library_mifos_passcode_forgot_passcode&quot;>Forgot Passcode&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="24"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.feature_savedcards_edit_clicked` appears to be unused"
errorLine1=" &lt;string name=&quot;feature_savedcards_edit_clicked&quot;>Edit Clicked&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../feature/savedcards/src/main/res/values/strings.xml"
line="25"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.library_mifos_passcode_delete_passcode` appears to be unused"
errorLine1=" &lt;string name=&quot;library_mifos_passcode_delete_passcode&quot;>Delete Passcode Key Button&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="25"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.library_mifos_passcode_drag_guide` appears to be unused"
errorLine1=" &lt;string name=&quot;library_mifos_passcode_drag_guide&quot;>Drag your finger here only in one direction.&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="26"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.library_mifos_passcode_drag_your_pattern` appears to be unused"
errorLine1=" &lt;string name=&quot;library_mifos_passcode_drag_your_pattern&quot;>Drag your Pattern&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/mifos-passcode/src/main/res/values/strings.xml"
line="27"
column="13"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.string.invalid_number` appears to be unused"
errorLine1=" &lt;string name=&quot;invalid_number&quot;>Invalid Phone Number&lt;/string>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="../libs/country-code-picker/src/main/res/values/strings.xml"
line="258"
column="13"/>
</issue>
<issue
id="RedundantNamespace"
message="This namespace declaration is redundant"
errorLine1=" &lt;shape xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/feature_make_transfer_transfer_failure.xml"
line="13"
column="16"/>
</issue>
<issue
id="RedundantNamespace"
message="This namespace declaration is redundant"
errorLine1=" &lt;shape xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/feature_make_transfer_transfer_success.xml"
line="14"
column="16"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/core_ui_money_in.png` in densityless folder">
<location
file="src/main/res/drawable/core_ui_money_in.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/core_ui_money_out.png` in densityless folder">
<location
file="src/main/res/drawable/core_ui_money_out.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_axis.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_axis.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_hdfc.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_hdfc.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_icici.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_icici.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_pnb.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_pnb.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_rbl.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_rbl.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_accounts_logo_sbi.png` in densityless folder">
<location
file="src/main/res/drawable/feature_accounts_logo_sbi.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/feature_receipt_mifospay_round_logo.png` in densityless folder">
<location
file="src/main/res/drawable/feature_receipt_mifospay_round_logo.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/lib_mifos_passcode_mifos_logo.jpg` in densityless folder">
<location
file="src/main/res/drawable/lib_mifos_passcode_mifos_logo.jpg"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_axis.png` in densityless folder">
<location
file="src/main/res/drawable/logo_axis.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_hdfc.png` in densityless folder">
<location
file="src/main/res/drawable/logo_hdfc.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_icici.png` in densityless folder">
<location
file="src/main/res/drawable/logo_icici.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_pnb.png` in densityless folder">
<location
file="src/main/res/drawable/logo_pnb.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_rbl.png` in densityless folder">
<location
file="src/main/res/drawable/logo_rbl.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/logo_sbi.png` in densityless folder">
<location
file="src/main/res/drawable/logo_sbi.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/mifospay_round_logo.png` in densityless folder">
<location
file="src/main/res/drawable/mifospay_round_logo.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/money_in.png` in densityless folder">
<location
file="src/main/res/drawable/money_in.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/money_out.png` in densityless folder">
<location
file="src/main/res/drawable/money_out.png"/>
</issue>
<issue
id="IconLocation"
message="Found bitmap drawable `res/drawable/splash_icon.png` in densityless folder">
<location
file="src/main/res/drawable/splash_icon.png"/>
</issue>
</issues>