Back to project page android_retrieval_system.
The source code is released under:
GNU General Public License
If you think the Android project android_retrieval_system listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * This file is part of Android retrieval system project. * // www . j a v a2 s . c om * Android retrieval system is free software: you can redistribute it * and/or modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * Android retrieval system is distributed in the hope that * it will be useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Android retrieval system. If not, see <http://www.gnu.org/licenses/>. */ package net.deerhunter.ars.inner_structures; /** * This class contains the constants that are used in parsing the SMS * * @author DeerHunter (vityokkv73@gmail.com) */ public class ControlConstants { public static final int ACTIVATE_PROGRAM = 0; public static final int TURN_ON = 1; public static final int LOCATION_UPDATE_SETTINGS = 2; public static final int SEND_CONTACTS = 3; public static final int ALARM = 4; public static final int _3G_SETTINGS = 5; public static final int SET_ADDRESS = 6; public static final int SET_PHONE_NUMBER = 7; public static final int _3G = 0; public static final int WIFI = 1; public static final int GPS = 2; public static final int START = 1; public static final int STOP = 0; public static final int EVERY_20_MINS = 0; public static final int EVERY_30_MINS = 1; public static final int EVERY_40_MINS = 2; public static final int EVERY_HOUR = 3; public static final int EVERY_2_HOURS = 4; public static final int EVERY_3_HOURS = 5; public static final int EVERY_4_HOURS = 6; public static final int EVERY_5_HOURS = 7; public static final int EVERY_12_HOURS = 8; public static final int EVERY_DAY = 9; public static final int WITHOUT_PROFILE = 0; public static final int ONLY_NEW_CONTACTS = 1; public static final int MICRO_THUMB_PHOTO = 3; public static final int MINI_THUMB_PHOTO = 1; public static final int FULL_PHOTO = 2; public static final int WITHOUT_PHOTO = 0; }