Back to project page Apocalypse-Defense.
The source code is released under:
MIT License
If you think the Android project Apocalypse-Defense listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.apocalypsedefense.app.gameplay_visuals; // w w w .ja va 2 s . co m import android.util.Log; import com.apocalypsedefense.core.LogAdapter; public class AndroidLogAdapter implements LogAdapter { public void d(String tag, String msg) { Log.d(tag, msg); } }