Fix didnt work, new fix and tests
This commit is contained in:
@@ -24,7 +24,7 @@ import android.database.Cursor;
|
||||
import android.net.Uri;
|
||||
import android.widget.Toast;
|
||||
|
||||
public class ContentProviderHelper {
|
||||
public class ApgContentProviderHelper {
|
||||
public static final String AUTHORITY = Constants.APG_PACKAGE_NAME;
|
||||
|
||||
public static final Uri CONTENT_URI_PUBLIC_KEY_RING_BY_KEY_ID = Uri.parse("content://"
|
||||
@@ -39,7 +39,7 @@ public class ContentProviderHelper {
|
||||
|
||||
private Context activity;
|
||||
|
||||
public ContentProviderHelper(Activity activity) {
|
||||
public ApgContentProviderHelper(Activity activity) {
|
||||
this.activity = activity;
|
||||
}
|
||||
|
||||
@@ -293,7 +293,7 @@ public class ApgIntentHelper {
|
||||
long[] initialKeyIds = null;
|
||||
if (apgData == null || !apgData.hasEncryptionKeys()) {
|
||||
|
||||
ContentProviderHelper cPHelper = new ContentProviderHelper(activity);
|
||||
ApgContentProviderHelper cPHelper = new ApgContentProviderHelper(activity);
|
||||
|
||||
initialKeyIds = cPHelper.getPublicKeyIdsFromEmail(emails);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user