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
Follow up o android tutorials and unit test notes while you need just Unit tests without use of some android libs
In your case you're depending on android.Base64. I had similar issue and moving test classes from src/test
-> src/androidTest
worked. Those tests are run on virtual machine or real android device. I didn't notice the diff at the first look.