(Context context)
| 160 | } |
| 161 | |
| 162 | static String getPackageName(Context context) { |
| 163 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); |
| 164 | return prefs.getString("openpgp_provider", Helper.PGP_OPENKEYCHAIN_PACKAGE); |
| 165 | } |
| 166 | |
| 167 | static boolean isOpenKeychainInstalled(Context context) { |
| 168 | String provider = getPackageName(context); |
no test coverage detected