Back to project page bugsTracker.
The source code is released under:
GNU General Public License
If you think the Android project bugsTracker 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.example.bugstracker.app; // ww w . j av a 2 s .c om import java.io.File; import android.app.Application; public class BugTrackerApp extends Application { public File imageFile; public static String reviewTitle; public static String reviewBody; public static BugTrackerApp app ; @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); app = this; } }