Back to project page gameapi-android.
The source code is released under:
MIT License
If you think the Android project gameapi-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.playtomic.android; // ww w .ja v a 2 s . c o m public class Playtomic { /** * Initializes the API * @param publickey The public key you configured in your database * @param privatekey The private key you configured in your database * @param apiurl The path to your API server, http://example.com/ */ public static void initialize(String publickey, String privatekey, String apiurl) { PRequest.initialize(publickey, privatekey, apiurl); } }