Fix bug with Mixpanel on Android

This commit is contained in:
Scott Kyle 2016-02-18 14:55:28 -08:00
parent cac3d09bcb
commit 9b55ac9a59
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ public class RealmAnalytics {
* @throws UnsupportedEncodingException * @throws UnsupportedEncodingException
*/ */
private static String base64Encode(String data) throws UnsupportedEncodingException { private static String base64Encode(String data) throws UnsupportedEncodingException {
return Base64.encodeToString(data.getBytes("UTF-8"), Base64.DEFAULT); return Base64.encodeToString(data.getBytes("UTF-8"), Base64.NO_WRAP);
} }
/** /**