Back to project page StatusShare-Android.
The source code is released under:
Apache License
If you think the Android project StatusShare-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (c) 2014 Kinvey Inc./* ww w . ja v a 2 s. com*/ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. * */ package com.kinvey.samples.statusshare; import android.app.Application; import android.util.Log; import com.google.api.client.http.HttpTransport; import com.kinvey.android.Client; import com.kinvey.java.cache.CachePolicy; import com.kinvey.java.cache.InMemoryLRUCache; import com.kinvey.samples.statusshare.model.UpdateEntity; import java.util.Calendar; import java.util.TimeZone; import java.util.logging.Level; import java.util.logging.Logger; /** * @author edwardf * @since 2.0 */ public class StatusShareApplication extends Application{ private static final Level LOGGING_LEVEL = Level.FINEST; private Client client = null; @Override public void onCreate() { super.onCreate(); // run the following comamnd to turn on verbose logging: // // adb shell setprop log.tag.HttpTransport DEBUG // Logger.getLogger(HttpTransport.class.getName()).setLevel(LOGGING_LEVEL); } public Client getClient() { if (client == null){ client = new Client.Builder(getApplicationContext()).build(); } return client; } }