diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-08-28 17:03:15 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-08-28 17:03:15 +0200 |
commit | 820e183ca76d0f7feb5d7584d5eddcd49a4e7d57 (patch) | |
tree | 3b86322e52d2f6589a3cb0e33559f2b862ac79f9 /example | |
parent | 3433d1297dc095eaf2a004c761af89aef6ce5dd7 (diff) | |
download | openpgp-api-820e183ca76d0f7feb5d7584d5eddcd49a4e7d57.tar.gz openpgp-api-820e183ca76d0f7feb5d7584d5eddcd49a4e7d57.tar.bz2 openpgp-api-820e183ca76d0f7feb5d7584d5eddcd49a4e7d57.zip |
Fix and improve OpenPgpService2 code
Diffstat (limited to 'example')
-rw-r--r-- | example/src/main/java/org/openintents/openpgp/example/OpenPgpApiActivity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/src/main/java/org/openintents/openpgp/example/OpenPgpApiActivity.java b/example/src/main/java/org/openintents/openpgp/example/OpenPgpApiActivity.java index 1c3ab1e..823c202 100644 --- a/example/src/main/java/org/openintents/openpgp/example/OpenPgpApiActivity.java +++ b/example/src/main/java/org/openintents/openpgp/example/OpenPgpApiActivity.java @@ -30,7 +30,7 @@ import android.widget.Button; import android.widget.EditText; import android.widget.Toast; -import org.openintents.openpgp.IOpenPgpService; +import org.openintents.openpgp.IOpenPgpService2; import org.openintents.openpgp.OpenPgpDecryptionResult; import org.openintents.openpgp.OpenPgpError; import org.openintents.openpgp.OpenPgpSignatureResult; @@ -148,7 +148,7 @@ public class OpenPgpApiActivity extends Activity { providerPackageName, new OpenPgpServiceConnection.OnBound() { @Override - public void onBound(IOpenPgpService service) { + public void onBound(IOpenPgpService2 service) { Log.d(OpenPgpApi.TAG, "onBound!"); } |