Package com.soomla.store.events

Examples of com.soomla.store.events.GoodUpgradeEvent


    public void pushEventGoodUpgrade(String message) {
        try {
            JSONObject eventJSON = new JSONObject(message);

            BusProvider.getInstance().post(new GoodUpgradeEvent(eventJSON.getString("itemId"), eventJSON.getString("upgradeItemId"), this));
        } catch (JSONException e) {
            SoomlaUtils.LogError(TAG, "(when pushing event) This is BAD! couldn't create JSON for onGoodUpgrade event.");
        }
    }
View Full Code Here

TOP

Related Classes of com.soomla.store.events.GoodUpgradeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.