Use android.util.Base64 will resolve your problem its available from API 8
data = android.util.Base64.decode(str, android.util.Base64.DEFAULT);
Example usage:
Log.i(TAG, "data: " + new String(data));
Use android.util.Base64 will resolve your problem its available from API 8
data = android.util.Base64.decode(str, android.util.Base64.DEFAULT);
Example usage:
Log.i(TAG, "data: " + new String(data));