Back to project page meets-android.
The source code is released under:
MIT License
If you think the Android project meets-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.
package com.theagilemonkeys.meets; //ww w.ja v a 2 s . com import android.util.Log; import com.octo.android.robospice.Jackson2GoogleHttpClientSpiceService; import roboguice.util.temp.Ln; /** * Android Meets SDK * Original work Copyright (c) 2014 [TheAgileMonkeys] * * @author ??lvaro Lpez Espinosa */ public class MeetsSpiceService extends Jackson2GoogleHttpClientSpiceService { @Override public void onCreate() { super.onCreate(); // Logging really causes the app to chug with this many requests Ln.getConfig().setLoggingLevel(Log.ERROR); } @Override public int getThreadCount() { return 8; } }