Back to project page lildebi.
The source code is released under:
GNU General Public License
If you think the Android project lildebi 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 info.guardianproject.lildebi; /*from ww w. j a v a 2s .c o m*/ import android.app.Application; public class LilDebiApplication extends Application { public static final String TAG = "LilDebiApplication"; public void onCreate() { super.onCreate(); NativeHelper.setup(getApplicationContext()); // TODO move this code from NativeHelper to here } }