Android Open Source - appservices-android-push-example Settings






From Project

Back to project page appservices-android-push-example.

License

The source code is released under:

Apache License

If you think the Android project appservices-android-push-example 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.ganyo.pushtest;
/*from   www . j  av  a2s. c  om*/
/** Change these values to match your setup! */
public class Settings {

  // Google Client Id from Google API Console
  static final String GCM_SENDER_ID = "854525328487";

  // Notifier Name in App Services
  static final String NOTIFIER = "google";

  static final String API_URL = "https://api.usergrid.com";

  static final String ORG = "<<your org name here>>";
  static final String APP = "sandbox";

  // set these if you want to use a user login
  static final String USER = null;
  static final String PASSWORD = null;
}




Java Source Code List

com.ganyo.pushtest.AlertDialogManager.java
com.ganyo.pushtest.AppServices.java
com.ganyo.pushtest.GCMIntentService.java
com.ganyo.pushtest.MainActivity.java
com.ganyo.pushtest.Settings.java
com.ganyo.pushtest.Util.java
com.ganyo.pushtest.WakeLocker.java