Android Open Source - SMSTester S M S Tester Constants






From Project

Back to project page SMSTester.

License

The source code is released under:

GNU General Public License

If you think the Android project SMSTester listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

////////////////////////////////////////////////////////////////////
// SMSTester - https://lab.safermobile.org
// Copyright (c) 2011, SaferMobile / MobileActive
// See LICENSE for licensing information 
////from w w  w . j  ava2  s  . co  m
// SMSTesterConstants: globals!
//
////////////////////////////////////////////////////////////////////

package org.safermobile.sms;

public interface SMSTesterConstants {

  public final static String TAG = "SMSTester";

  public final static String KEYWORD_FILE = "keywords.txt";

  // messages to confirm that the recipient does indeed want to receive a deluge of messages
  public final static String REQUEST_START_MSG = "REQUEST_START_MSG";
  public final static String ALLOW_START_MSG = "ALLOW_START_MSG";
  public final static String DENY_START_MSG = "DENY_START_MSG";

  public final static String EXTRAS_BASE_PATH = "basePath";
  public final static short SMS_DATA_PORT = 7027;

  public final static String SENT = "SMS_SENT";
  public final static String DELIVERED = "SMS_DELIVERED";

}




Java Source Code List

org.safermobile.sms.EditKeywordActivity.java
org.safermobile.sms.LogViewActivity.java
org.safermobile.sms.MainTabActivity.java
org.safermobile.sms.SMSDataReceiver.java
org.safermobile.sms.SMSErrorStatusReceiver.java
org.safermobile.sms.SMSLogger.java
org.safermobile.sms.SMSReceiver.java
org.safermobile.sms.SMSSenderActivity.java
org.safermobile.sms.SMSTesterConstants.java
org.safermobile.sms.SettingsActivity.java
org.safermobile.sms.Utils.java