Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.util.Log;

public class Main {
    private static String tag = "";

    public static void error(String message, Throwable t) {
        Log.e(tag, message, t);
    }
}