Back to project page android-rest-client.
The source code is released under:
Apache License
If you think the Android project android-rest-client 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.dg.examples.restclientdemo.communication; //from w w w. ja v a2s .co m public class RestConstants { public static final String TAG = RestConstants.class.getSimpleName(); public static final String BASE_URL = "https://ajax.googleapis.com"; public static final String LOG_SERVICE_URL = "http://log-requests.herokuapp.com/"; public static final String HTTP_BIN_URL = "http://httpbin.org/"; public static final String GOOGLE_BLOGS = BASE_URL + "/ajax/services/feed/find"; }