I am integrating appsweep on my Application. While building the application and put it in Appsweep for testing I found Insecure biometric class used
which shows from androidx.core.hardware.fingerprint.FingerprintManagerCompat
,
I tried by adding the below line of codes on my dexguard rules, but its not working for me.
-keep class -dontwarn androidx.core.hardware.fingerprint.**
-dontwarn -dontwarn androidx.core.hardware.fingerprint.**
The finding you are seeing is very likely a false positive, since the
FingerprintManagerCompat
class in question is actually not being used to check actual biometric fingerprints but instead is trying to identify the hardware of the device. The AppSweep team is aware of this now and we are looking into this. Thank you for pointing it out!As far as the second part of your question goes: In cases like these, where you think a finding is a false positive or otherwise not relevant, the most efficient way of handling this is doing the following two steps:
The DexGuard rules you mentioned are completely separate from AppSweep, so adding any rules there won't suppress findings in AppSweep.
If you would like to ask any more questions or just want to talk, also feel free to use the chat function inside AppSweep itself, in the lower right corner of the browser window!