(Context context)
| 3336 | } |
| 3337 | |
| 3338 | static boolean isSignedByFDroid(Context context) { |
| 3339 | String signed = getFingerprint(context); |
| 3340 | String fingerprint = context.getString(R.string.fingerprint_fdroid); |
| 3341 | return Objects.equals(signed, fingerprint); |
| 3342 | } |
| 3343 | |
| 3344 | static boolean canAuthenticate(Context context) { |
| 3345 | try { |
no test coverage detected