13Poker by gametower unlimited gems v0.4版本的 MD5 值为:51324fc0f195c34821074948ab266846

以下内容为反编译后的 InstallClientListener.java 源代码,内容仅作参考


package com.revmob.client;

import android.app.Activity;
import com.revmob.android.StoredData;
import com.revmob.internal.RMLog;
import org.json.JSONException;
public class InstallClientListener implements RevMobClientListener {
    private static final String ERROR_MESSAGE = "Install not registered on server. Did you set a valid App ID? If not, collect one at http://revmob.com.";
    private StoredData data;

    public InstallClientListener(Activity activity) {
        this.data = new StoredData(activity);
    }

    @Override
    public void handleResponse(String response) throws JSONException {
        this.data.markAsTracked();
        RMLog.i("Install registered on server");
    }

    @Override
    public void handleError(String message) {
        RMLog.w(ERROR_MESSAGE);
    }
}