Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.util.Base64;

public class Main {
    private static byte[] fromBase64(String src) {
        return Base64.decode(src, Base64.NO_WRAP);
    }
}