Back to project page PocketLantern.
The source code is released under:
GNU General Public License
If you think the Android project PocketLantern 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 cc.co.techzealous.pl.utils; //ww w .j av a 2 s . com public class PLConstants extends Object { private PLConstants() { super(); } /** boolean preference indicating if the eula was accepted */ public static final String PREF_EULA = "eula"; /** int preference indicating the x position */ public static final String PREF_POSX = "x"; /** int preference indicating the y position */ public static final String PREF_POSY = "y"; /** int preference indicating the size of the light */ public static final String PREF_SIZE = "size"; public static final int DEFAULT_SIZE = 250; public static final String PREF_COLOR_GREEN = "-16711936"; public static final String MY_STORE_PAGE = "market://search?q=pub:Emil Todorov"; }