[Feature] Scan for Play Integrity checks
Is your feature request related to a problem?
Some applications require Google Play Integrity which custom Roms can hardly fulfill or not at all for high level requirements. Knowing about this anti-feature before hand would help to make an informed decisio
Describe the solution you'd like
Exodus checks the scanned apps for calls to: https://developer.android.com/google/play/integrity/verdicts
This should be listed similar to a tracker so that we can see all apps that require STRONG_Integrity or BASIC_Integrity and similar Google API Calls.
I don't really understand how Exodus can check this? Is it a simple call to an API we need to make with the app handle to see this? Do you have an example?
Ingress for example uses
/* compiled from: com.google.android.play:integrity@@1.1.0 */
/* loaded from: classes2.dex */
public abstract class IntegrityTokenResponse {
public abstract String token();
}
I think static analysis of used code fragments like checking for ad sdks should be enough.