Back to project page DialQuick_Android.
The source code is released under:
GNU General Public License
If you think the Android project DialQuick_Android 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.blogspot.techzealous.dialquick; /*from ww w . j ava 2 s . c o m*/ public class DialQuickConstants extends Object { /** This class is not intended to be instantiated*/ private DialQuickConstants() { } /** boolean indicating if it is first start of the app, default value - true */ public static final String PREF_FIRST_START = "firstStart"; /** String to hold the phone number to dial/call */ public static final String PREF_TEL_NUMBER = "tel"; /** boolean indicating what action to take with the PREF_TEL_NUMBER. * true - initiate a call, false - dial on the phone dialer */ public static final String PREF_CALL = "call"; public static final String TAP_FOR_TAP_ID = "6de3e740-b00d-012f-f38f-4040d804a637"; public static final String PREF_EULA = "eula"; /** Message to be shown when the mode is set */ public static final String MODE_SET = "Mode is set !"; }