Back to project page SMSAlive.
The source code is released under:
Apache License
If you think the Android project SMSAlive 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.futuretech.app.smsalive.utils; // w w w.j a v a 2s . c o m /** * Created by ironhulk on 2014/11/27. */ public class Constants { //database public static int DB_VERSION = 1; public static String DB_NAME = "alive.db"; public static String COL_ACCOUNT_TYPE = "account_type"; public static String COL_ACCOUNT_NUMBER = "account_number"; public static String COL_ACCOUNT_BALANCE = "account_balance"; public static String TABLE_NAME_TRANS = "user_transaction"; public static String COL_TRANS_ID = "_id"; public static String COL_TRANS_DATE = "transaction_date"; public static String COL_TRANS_PLACE = "transaction_place"; public static String COL_TRANS_TYPE = "transaction_type"; public static String COL_TRANS_AMOUNT = "transaction_amount"; }