Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Section 3

...

          3.   SDK Implementation (Download this SDK version http://engage.appoxee.com/eula)

This SDK version (and beyond) doesn't require implementing the Configuration or Application classes, only a call from your main activity to ignite the SDK, resume/pause is handled in the micro level, the only use of that in your activity is for wiring your broadcaster per extra push fields.

       Calling the SDK from your main activity has been altered to (see example code in download link):  

This Code Block should be a part of your onCreate() and onNewIntent methods, in the activity defined to receive the push notification bundle. 

 

Code Block
boolean inboxEnabledBundle bundle = intent.getExtras();
Set<String> keys = falsebundle.keySet();
// true is not supported for this version
new initAsync("SDK KEY", "SECRET KEY", "DEFAULT ACTIVITY CLASS",  inboxEnabled,”PUSH_DRIVEN_ACTIVITY_CLASS”).execute();	for (String key : keys) {
			Object o = bundle.get(key);
			//Do what you need with object (as String)
		} 

 

        3.2 For further information feel free to contact your support team at support@appoxee.com