Android Open Source - groceryviewer Grocery Viewer Constants






From Project

Back to project page groceryviewer.

License

The source code is released under:

GNU General Public License

If you think the Android project groceryviewer 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

package com.github.knrajago.groceryviewer.constants;
// w  w w  . j  ava2  s .  c o m
import android.provider.BaseColumns;

public class GroceryViewerConstants {
  public static final String CREDENTIAL_KEY = "cred_key";
  
  public static final String LAST_UPDATE_DATE_TIME_KEY = "last_upd_time";
  public static final String MALIGAI_LIST_XLS_TITLE = "maligaiList";
  public static final String SPREADSHEETS_API_URL = "https://spreadsheets.google.com/feeds/spreadsheets/private/full";
  public static final String CONTENT_PROVIDER_URI = "content://com.github.knrajago.groceryviewer.provider/MaligaiListProvider";
  public static final String AUTHORITIES_STRING = "com.github.knrajago.groceryviewer.provider";
  public static final String PREF_NAME = "groceryViewer";
  public static final String SPREADSHEET_SCOPE = "oauth2:https://spreadsheets.google.com/feeds";//"oauth2:https://docs.google.com/feeds/ https://docs.googleusercontent.com/ https://spreadsheets.google.com/feeds/";
  
  public static final String APPLICATION_TAG = "GroceryViewer";
  public static final String APPLICATION_SHARD_TAG = "GroceryViewer";
  
  public static final String USER_NAME_KEY = "user_key";
  public static final String USER_TYPE_KEY = "user_type";
  
  public static final int MAX_NUM_OF_AUTH = 2;
  
  public static final String TOKEN_KEY = "token_key";
  
  public static final int ALL_TABLE = 1;
  public static final int ONE_ROW = 2;
  
  public static final String TABLE_NAME = "GroceryList";
  public static final String ITEM_COL = "item";
  
  public static final String[] COL_SELECTION = new String[] {BaseColumns._ID, ITEM_COL};
}




Java Source Code List

android.UnusedStub.java
com.github.knrajago.groceryviewer.GroceryViewerActivity.java
com.github.knrajago.groceryviewer.constants.GroceryViewerConstants.java
com.github.knrajago.groceryviewer.listadapters.GroceryListAdapter.java
com.github.knrajago.groceryviewer.localdb.GroceryListHelper.java
com.github.knrajago.groceryviewer.observers.GroceryViewerObserver.java
com.github.knrajago.groceryviewer.providers.GroceryViewerContentProvider.java
com.github.knrajago.groceryviewer.services.GroceryViewerSyncService.java
com.github.knrajago.groceryviewer.syncadapters.GoogleSpreadsheetRefresher.java
com.github.knrajago.groceryviewer.threadedutils.GoogleAuthTokenRetriever.java
com.github.knrajago.groceryviewer.utils.GroceryViewerUtils.java