mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-31 22:35:17 +00:00
OpenPGP API v9 #143
This commit is contained in:
@@ -60,7 +60,7 @@ dependencies {
|
||||
compile 'com.android.support:recyclerview-v7:23.0.1'
|
||||
compile 'com.android.support:cardview-v7:23.0.1'
|
||||
compile 'com.android.support:design:23.0.1'
|
||||
compile 'org.sufficientlysecure:openpgp-api:7.0'
|
||||
compile 'org.sufficientlysecure:openpgp-api:9.0'
|
||||
compile ('org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r') {
|
||||
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
||||
}
|
||||
|
@@ -28,7 +28,7 @@ import com.zeapo.pwdstore.utils.PasswordItem;
|
||||
import com.zeapo.pwdstore.utils.PasswordRepository;
|
||||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.openintents.openpgp.IOpenPgpService;
|
||||
import org.openintents.openpgp.IOpenPgpService2;
|
||||
import org.openintents.openpgp.OpenPgpError;
|
||||
import org.openintents.openpgp.util.OpenPgpApi;
|
||||
import org.openintents.openpgp.util.OpenPgpServiceConnection;
|
||||
@@ -214,7 +214,7 @@ public class AutofillService extends AccessibilityService {
|
||||
|
||||
private class onBoundListener implements OpenPgpServiceConnection.OnBound {
|
||||
@Override
|
||||
public void onBound(IOpenPgpService service) {
|
||||
public void onBound(IOpenPgpService2 service) {
|
||||
decryptAndVerify();
|
||||
}
|
||||
@Override
|
||||
|
@@ -33,7 +33,7 @@ import com.zeapo.pwdstore.pwgenDialogFragment;
|
||||
import com.zeapo.pwdstore.utils.PasswordRepository;
|
||||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.openintents.openpgp.IOpenPgpService;
|
||||
import org.openintents.openpgp.IOpenPgpService2;
|
||||
import org.openintents.openpgp.OpenPgpError;
|
||||
import org.openintents.openpgp.util.OpenPgpApi;
|
||||
import org.openintents.openpgp.util.OpenPgpServiceConnection;
|
||||
@@ -561,7 +561,7 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBound(IOpenPgpService service) {
|
||||
public void onBound(IOpenPgpService2 service) {
|
||||
Log.i("PGP", "ISBOUND!!");
|
||||
|
||||
Bundle extra = getIntent().getExtras();
|
||||
|
Reference in New Issue
Block a user