Package com.adgem.android
Interface OfferwallCallback
-
- All Implemented Interfaces:
public interface OfferwallCallbackCallback to receive updates from AdGem Offer Wall. Use registerOfferwallCallback to register.
-
-
Method Summary
Modifier and Type Method Description voidonOfferwallLoadingStarted()Notifies that the offer wall loading has started. voidonOfferwallLoadingFinished()Notifies that the offer wall has been loaded. voidonOfferwallLoadingFailed(String error)Notifies that the offer wall has failed to load. voidonOfferwallRewardReceived(int amount)Notifies to reward user for the action they performed in the offer wall. voidonOfferwallClosed()Notifies that the offer wall has been closed. -
-
Method Detail
-
onOfferwallLoadingStarted
void onOfferwallLoadingStarted()
Notifies that the offer wall loading has started.
-
onOfferwallLoadingFinished
void onOfferwallLoadingFinished()
Notifies that the offer wall has been loaded.
-
onOfferwallLoadingFailed
void onOfferwallLoadingFailed(String error)
Notifies that the offer wall has failed to load.
-
onOfferwallRewardReceived
void onOfferwallRewardReceived(int amount)
Notifies to reward user for the action they performed in the offer wall.
-
onOfferwallClosed
void onOfferwallClosed()
Notifies that the offer wall has been closed.
-
-
-
-