Push Messaging
Elevate your app's communication for impactful user engagement and interactions
import com.antsomi.AntsomiSdk;
public class MainActivity {
// ... other fields and methods
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Init Antsomi SDK instance
try {
String portalId = "<YOUR_PORTAL_ID>";
String sourceId = "<YOUR_SOURCE_ID>";
String appId = "<YOUR_APPLICATION_ID>";
new AntsomiSdk.Builder(this, portalId, sourceId, appId).build();
} catch (Exception e) {
Log.e(TAG, e.getMessage(), e);
}
}
}Key
Description
Example
Last updated