Back to project page Gamework.
The source code is released under:
Apache License
If you think the Android project Gamework 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 cz.robyer.gamework.constants; /* ww w . j a v a 2 s. c o m*/ /** * Contains different constants. * @author Robert P?sel */ public class Constants { /** Game notification id */ public static final int NOTIFICATION_GAMEPLAY = 1; /** Scanner constants */ public static final int SCANNER_CODE = 0; public static final String SCANNER_SCAN = "la.droid.qr.scan"; public static final String SCANNER_RESULT = "la.droid.qr.result"; public static final String SCANNER_MISSING = "QRDroid is required but not installed. Install now?"; public static final String SCANNER_URL_MARKET = "market://details?id=la.droid.qr"; public static final String SCANNER_URL_DIRECT = "http://q.qr.ai/"; }