Back to project page XposedMenuBeGone.
The source code is released under:
GNU General Public License
If you think the Android project XposedMenuBeGone 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 ro.epb.menubegone.core; //from w w w. j av a 2 s . c o m import android.util.Log; import de.robv.android.xposed.XposedBridge; public class Logger { public static void Log(String message) { try { XposedBridge.log("1133:" + message); } catch (NoClassDefFoundError e) { Log.i("1133", message); } } }