Back to project page ScoponeDaPolso.
The source code is released under:
GNU General Public License
If you think the Android project ScoponeDaPolso 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 org.gdg.bari.entities; /* w ww . j a v a 2s . c om*/ import android.content.Context; import android.util.Log; import com.mariux.teleport.lib.TeleportClient; /** * Created by tiziano on 18/11/14. */ public class TeleportClientManager { private static final String TAG = TeleportClientManager.class.getSimpleName(); private static TeleportClient mInstance = null; public static TeleportClient getInstance(Context context) { Log.d(TAG, TAG + " getInstance() method"); if (mInstance == null) { Log.d(TAG, TAG + " : TeleportClient == null"); // Create the Google API Client with access to Plus and Games mInstance = new TeleportClient(context); } return mInstance; } }