Fix bug with Mixpanel on Android
This commit is contained in:
parent
cac3d09bcb
commit
9b55ac9a59
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue