diff options
author | Christian Loehle <cloehle@mail.ru> | 2015-09-29 12:31:42 +0200 |
---|---|---|
committer | Christian Loehle <cloehle@mail.ru> | 2015-09-29 12:31:42 +0200 |
commit | ed329b693da92f77b939eaff7721fc5e672359db (patch) | |
tree | 9c5aafa3bbc5f90047dc655dd54efdca5804aa1e | |
parent | 0ba25696981a4c4d5aef01e4a1d683c8adf7522a (diff) | |
download | openpgp-api-ed329b693da92f77b939eaff7721fc5e672359db.tar.gz openpgp-api-ed329b693da92f77b939eaff7721fc5e672359db.tar.bz2 openpgp-api-ed329b693da92f77b939eaff7721fc5e672359db.zip |
fix typo a actvity
Signed-off-by: Christian Loehle <cloehle@posteo.de>
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ Intent result = api.executeApi(data, is, os); * ``OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED`` If ``RESULT_CODE_USER_INTERACTION_REQUIRED`` is returned, an additional ``PendingIntent`` is returned to the client, which must be used to get user input required to process the request. - A ``PendingIntent`` is executed with ``startIntentSenderForResult``, which starts a activity, originally belonging to OpenKeychain, on the [task stack](http://developer.android.com/guide/components/tasks-and-back-stack.html) of the client. + A ``PendingIntent`` is executed with ``startIntentSenderForResult``, which starts an activity, originally belonging to OpenKeychain, on the [task stack](http://developer.android.com/guide/components/tasks-and-back-stack.html) of the client. Only if ``RESULT_CODE_SUCCESS`` is returned, ``os`` actually contains data. A nearly complete example looks like this: ```java |