Back to project page FisgoDroid.
The source code is released under:
The smiley icons bundled with this application belong to Meneame.NET and are licensed under the Creative Commons by-sa 3.0 license. For more information, please visit http://creativecommons.org/licens...
If you think the Android project FisgoDroid 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 net.meneame.fisgodroid; /* w w w . j a v a 2 s. c o m*/ import android.app.Application; import android.content.pm.ApplicationInfo; import com.bugsense.trace.BugSenseHandler; public class FisgodroidApplication extends Application { @Override public void onCreate() { if ( 0 == (getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) ) { BugSenseHandler.initAndStartSession(this, getResources().getString(R.string.bugsense_api_key)); } super.onCreate(); } }