Android Open Source - LicenseModuleChecker-Client-Android param






From Project

Back to project page LicenseModuleChecker-Client-Android.

License

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.

Java Source Code

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
    }
}




Java Source Code List

com.asynhkm.example.ApplicationTest.java
com.asynhkm.example.MainExample.java
com.asynhkm.productchecker.ApplicationTest.java
com.asynhkm.productchecker.PreferenceControl.java
com.asynhkm.productchecker.Checker.CheckerCB.java
com.asynhkm.productchecker.Checker.CheckerTask.java
com.asynhkm.productchecker.Checker.HKMCheckerPlugable.java
com.asynhkm.productchecker.Checker.param.java
com.asynhkm.productchecker.Util.JSONReader.java
com.asynhkm.productchecker.Util.RootDialog.java
com.asynhkm.productchecker.Util.Tool.java
com.asynhkm.productchecker.schema.DataProductVersion.java
com.asynhkm.productchecker.schema.RDataDeserialize.java
com.asynhkm.productchecker.schema.RRDeserialize.java
com.asynhkm.productchecker.schema.ReturnData.java
com.asynhkm.productchecker.schema.ReturnResult.java
com.asynhkm.productchecker.schema.requestCheck.java