Back to project page LicenseModuleChecker-Client-Android.
The source code is released under:
<?xml version="1.0" encoding="UTF-8"?> <module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4"> <comp...
If you think the Android project LicenseModuleChecker-Client-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.asynhkm.productchecker.Checker; /*from www . j a va 2 s.co m*/ /** * Created by Hesk on 30/12/2014. */ public class param { private static final String production_domain = "http://async777.com"; private static final String dev_domain = "http://async777.com"; private static final String request_check = "/api/license/check/"; private static final String request_registration = "/api/license/registration/"; public static String devReg() { return dev_domain + request_registration; } public static String proReg() { return production_domain + request_registration; } public static String devCheck() { return dev_domain + request_check; } public static String proCheck() { return production_domain + request_check; } public static final String SAVE_ACH = "license_key"; public static final String DATAGROUP = "license_data_acm"; public static enum request_status { registration, check } }