Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import android.util.Base64;

public class Main {
    public static byte[] encodedStringToBytes(String encoded) {
        return Base64.decode(encoded, Base64.NO_WRAP);
    }
}