Back to project page Wardrobe_app.
The source code is released under:
Apache License
If you think the Android project Wardrobe_app 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.android.busolo.apps.wardrobe; /* w w w . j a v a 2 s . co m*/ /** * Created by s-brian on 5/24/2014. */ public class Config { // Log tag public static final String LOG_TAG = "wardrobe_2014"; // OAuth 2.0 related config public static final String APP_NAME = "Wardrobe"; // Conference hashtag public static final String CONFERENCE_HASHTAG = "#wardrobe"; // GCM config // TODO: Add your GCM information here. public static final String GCM_SERVER_URL = "https://YOUR_GCM_APP_ID_HERE.appspot.com"; public static final String GCM_SENDER_ID = "YOUR_GCM_SENDER_ID_HERE"; public static final String GCM_API_KEY = "YOUR_GCM_API_KEY_HERE"; //api endpoint urls public static final String API_LOGIN_URL = "http://qwerty.com/api/v1/login"; //api endpoint args public static final String ARG_USERNAME = "username"; public static final String ARG_PASSWORD = "password"; public static final String ARG_EMAIL = "email"; }