Missing import for fixing base64 saving
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/commit/d755df75 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/tree/d755df75 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/diff/d755df75 Branch: refs/heads/master Commit: d755df7565753526b019600894f78309550cc4da Parents: 367f04b Author: Benjamin <[email protected]> Authored: Thu Nov 3 22:06:34 2016 -0400 Committer: filmaj <[email protected]> Committed: Tue Apr 25 17:08:58 2017 -0700 ---------------------------------------------------------------------- src/android/ContactAccessorSdk5.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/blob/d755df75/src/android/ContactAccessorSdk5.java ---------------------------------------------------------------------- diff --git a/src/android/ContactAccessorSdk5.java b/src/android/ContactAccessorSdk5.java index 5ae5368..ac3b965 100644 --- a/src/android/ContactAccessorSdk5.java +++ b/src/android/ContactAccessorSdk5.java @@ -61,7 +61,8 @@ import android.provider.ContactsContract.CommonDataKinds.Email; import android.provider.ContactsContract.CommonDataKinds.Website; import android.provider.ContactsContract.CommonDataKinds.Im; import android.text.TextUtils; - +import android.util.Base64; +import android.util.Base64InputStream; /** * An implementation of {@link ContactAccessor} that uses current Contacts API. * This class should be used on Eclair or beyond, but would not work on any earlier --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
