I am attempting to decode a Base64 encoded string in Android using the http://developer.android.com/reference/android/util/Base64.html class.
Both the encodeToString and decode methods are returning null, and I have no idea what's wrong, here's my code for the decode:
// Should decode to "GRC"
String friendlyNameBase64Encoded = "R1JD";
// This returns null
byte[] friendlyNameByteArray = Base64.decode(friendlyNameBase64Encoded, Base64.DEFAULT);
// Fails with NullPointerException
String friendlyName = new String(friendlyNameByteArray, "UTF-8");
I'm running Android API 23.1.0
I had the same problem in my unit tests. I didn't realize the Base64 class I'm using is a part of the Android API, therefore
You can't use android.util.Base64 in a regular JUnit test, it must be an Instrumentation test.
However, if you really want it as a unit test, you could use the Apache Commons Base64 class instead. Include it in Gradle build:
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
And then slightly different usage,