Server Connection

When your admin panel already configured properly, you can connect it to your android app, login to your admin panel, navigate to settings menu, copy your Server Key and Rest API Key then put the keys to java/<your_package_name>/config/AppConfig.java in the SERVER KEY & REST_API_KEY string tag for server connection and security purpose.

//your Server Key obtained from the admin panel
public static final String SERVER_KEY = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX";

//your Rest API Key obtained from the admin panel
public static final String REST_API_KEY = "xxxxxxxxxxxxxxxxxxx";

Last updated