Back to project page MiReversi.
The source code is released under:
MIT License
If you think the Android project MiReversi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (c) 2011 Makoto Ishida/*from ww w . j a va2s . co m*/ * Please see the file MIT-LICENSE.txt for copying permission. */ package com.example.mireversi; import android.util.Log; public class Utils { public static final String TAG = "MiReversi"; public static void d(String msg){ Log.d(TAG, msg); } }