mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 09:37:24 +00:00
1511 lines
61 KiB
XML
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-wallet/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=" <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />"
|
|
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=" <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />"
|
|
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("yyyy-MM-dd HH:mm:ss")"
|
|
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("com.google.guava:guava:27.0.1-android")"
|
|
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=""successfull" is a common misspelling; did you mean "successful"?"
|
|
errorLine1=" <string name="feature_editpassword_password_changed_successfully">Password changed successfull</string>"
|
|
errorLine2=" ^">
|
|
<location
|
|
file="src/main/res/values/strings.xml"
|
|
line="12"
|
|
column="88"/>
|
|
</issue>
|
|
|
|
<issue
|
|
id="Typos"
|
|
message=""Gine" is a common misspelling; did you mean "Yine"?"
|
|
errorLine1=" <string name="guinea">Gine</string>"
|
|
errorLine2=" ^">
|
|
<location
|
|
file="src/main/res/values-tr-rTR/strings.xml"
|
|
line="102"
|
|
column="27"/>
|
|
</issue>
|
|
|
|
<issue
|
|
id="Typos"
|
|
message=""Gine" is a common misspelling; did you mean "Yine"?"
|
|
errorLine1=" <string name="guinea_bissau">Gine-bissau </string>"
|
|
errorLine2=" ^">
|
|
<location
|
|
file="src/main/res/values-tr-rTR/strings.xml"
|
|
line="103"
|
|
column="34"/>
|
|
</issue>
|
|
|
|
<issue
|
|
id="Typos"
|
|
message=""Gine" is a common misspelling; did you mean "Yine"?"
|
|
errorLine1=" <string name="papua_new_guinea">Papua Yeni Gine </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'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="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="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="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" />"
|
|
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="<layer-list xmlns:android="http://schemas.android.com/apk/res/android">"
|
|
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=" <color name="feature_accounts_colorBlack87">#DE000000</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=" <color name="feature_kyc_colorAccent">#000000</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=" <color name="colorPrimary">#ffffff</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=" <color name="feature_accounts_colorTextPrimary">@color/feature_accounts_colorBlack87</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=" <color name="feature_kyc_colorBlack54">#8A000000</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=" <color name="colorPrimaryDark">#FFFFFF</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=" <color name="feature_kyc_colorBlack87">#DE000000</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=" <color name="colorAccent">#000000</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=" <color name="feature_kyc_colorAccentYellow">#FFF700</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=" <color name="changedBackgroundColour">#ecf0f1 </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=" <color name="feature_kyc_colorTextPrimary">@color/feature_kyc_colorBlack87</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=" <color name="clickedblue">#00bfff</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=" <color name="feature_kyc_colorTextSecondary">@color/feature_kyc_colorBlack54</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=" <color name="colorBlack100">#000000</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=" <color name="feature_accounts_colorBlack87">#DE000000</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=" <color name="colorBlack70">#B3000000</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=" <color name="colorBlack54">#8A000000</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=" <color name="colorBlack50">#80000000</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=" <color name="colorBlack38">#61000000</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=" <color name="colorBlack12">#1F000000</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=" <color name="feature_accounts_colorTextPrimary">@color/feature_accounts_colorBlack87</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=" <color name="colorTextSecondary">@color/colorBlack54</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=" <color name="colorTextDisabled">@color/colorBlack38</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=" <color name="colorAccentBlue">#000AFF</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=" <color name="colorAccentBlue50">#80000AFF</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=" <color name="colorAccentBlack">#2F3542</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=" <color name="colorAccentYellow">#FFF700</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=" <color name="colorListImageBackground">#E6E6E6</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=" <color name="colorListImageIcon">#B8B8B8</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=" <color name="colorDebit">#F10606</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=" <color name="colorCredit">#009688</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=" <color name="colorExpandableBottomSheetDialogGrip">@color/colorBlack38</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=" <color name="colorDivider">@color/colorBlack12</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=" <color name="colorFABBackground">@color/colorAccentBlack</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=" <color name="colorFABContent">@color/colorPrimary</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=" <color name="colorChangeProfileImageShapeBackground">@color/colorAccentBlack</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=" <color name="colorChangeProfileImageShapeText">@color/colorPrimary</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=" <color name="colorBottomViewNotFocusedIcon">@color/colorAccentBlue50</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=" <color name="primaryBlue">#3F51B5</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=" <color name="windowBackground">#f5f5f5</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=" <color name="white">@android:color/white</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=" <color name="gray">#ffdfdfdf</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=" <color name="grey_50">#fafafa</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=" <color name="grey_100">#f5f5f5</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=" <color name="grey_200">#eeeeee</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=" <color name="grey_300">#e0e0e0</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=" <color name="grey_900">#212121</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=" <color name="gray_0">#d3d3d3</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=" <color name="gray_1">#bdbdbd</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=" <color name="gray_2">#a8a8a8</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=" <color name="gray_3">#939393</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=" <color name="gray_4">#7e7e7e</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=" <color name="gray_5">#696969</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=" <color name="gray_6">#545454</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=" <color name="gray_7">#3f3f3f</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=" <color name="gray_8">#2a2a2a</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=" <color name="gray_9">#151515</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=" <color name="colorUpiPinScreenTitle">#1E90FF</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=" <dimen name="feature_kyc_value_40dp">40dp</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=" <dimen name="feature_kyc_value_15sp">15sp</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=" <dimen name="feature_kyc_value_70dp">70dp</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=" <dimen name="feature_kyc_value_100dp">100dp</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=" <dimen name="feature_kyc_value_50dp">50dp</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=" <dimen name="feature_kyc_value_20dp">20dp</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=" <dimen name="feature_kyc_value_13sp">13sp</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=" <dimen name="feature_kyc_emptyStateImageSize">64dp</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=" <dimen name="feature_kyc_value_20sp">20sp</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=" <dimen name="feature_kyc_marginItemsInSectionLarge">24dp</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=" <dimen name="feature_kyc_textBody1">16sp</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=" <dimen name="feature_kyc_textBody2">14sp</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="<vector xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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="<vector xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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="<vector xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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="<vector xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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="<vector xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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="<vector android:height="24dp" android:tint="#000000""
|
|
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=" <style name="AppTheme" parent="Theme.AppCompat.NoActionBar">"
|
|
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="<layer-list xmlns:android="http://schemas.android.com/apk/res/android">"
|
|
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=" <string name="lib_mifos_passcode_title">Passcode will be reset, are you sure?</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=" <string name="feature_kyc_level_1">Level 1</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=" <string name="feature_kyc_level_2">Level 2</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=" <string name="lib_mifos_passcode_yes">Yes</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=" <string name="feature_kyc_level_3">Level 3</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=" <string name="feature_kyc_content_description_placeholder">Placeholder</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=" <string name="andora">Andorra</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=" <string name="feature_editpassword_old_password">Old Password</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=" <string name="lib_mifos_passcode_has_drag_passcode">hasDragPasscode</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=" <string name="feature_auth_default_web_client_id">650844498895-eq3lvn274d8el5auf8q02n184om82eu5.apps.googleusercontent.com</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=" <string name="lib_mifos_passcode_drag_passcode">drag_passcode</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=" <string name="feature_kyc_error_kyc_details">Couldn\'t fetch KYC details. Please try again.</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=" <string name="library_mifos_passcode_forgot_passcode">Forgot Passcode</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=" <string name="feature_savedcards_edit_clicked">Edit Clicked</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=" <string name="library_mifos_passcode_delete_passcode">Delete Passcode Key Button</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=" <string name="library_mifos_passcode_drag_guide">Drag your finger here only in one direction.</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=" <string name="library_mifos_passcode_drag_your_pattern">Drag your Pattern</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=" <string name="invalid_number">Invalid Phone Number</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=" <shape xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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=" <shape xmlns:android="http://schemas.android.com/apk/res/android""
|
|
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>
|