Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Since Appoxee SDK v2.3 you can use the following methods to get , open and delete inApp messages from the inApp Inbox. This will allow you to build your own inApp Inbox, using your own resources, and to populate it using the inApp Messages API.

Each method can be called with "Appoxee.methodName()".

Make sure you import "com.appoxee.inbox.Message" when building your own custom inApp Messages Inbox.

 

1. public static ArrayList<Message> getInboxMessages() ; 

 

2. public static void deleteMessage(long id);

 

3. public static Message getMessageByID(long id);

 

4. public static void openAppoxeeMessage(Message msgToOpen);

 

 

  • No labels