Push Messaging

Elevate your app's communication for impactful user engagement and interactions

Antsomi's App Push feature empowers you to deliver impactful notifications to your mobile app users, fostering effective engagement and communication. These push notifications provide a dynamic avenue for timely, personalized, and efficient information delivery, enhancing user interactions with your mobile application.

Important

Before continuing, please ensure that you've added the Antsomi Android SDK to your app.

For Android integration, you'll need to ensure you have the correct Application ID. Once you have it, provide it in the Antsomi SDK configuration and we will handle the rest for you.

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);
        }
    }
}

In which:

KeyDescriptionExample

YOUR_PORTAL_ID

Your CDP365 portal ID.

564890637

YOUR_SOURCE_ID

Your CDP365 event source ID.

564993464

YOUR_APPLICATION_ID

Your CDP365 application ID.

e4e8d06e-4d97-43df-93e8-c36238147ca0

If you're unsure how to obtain your Application ID, kindly follow these instructions.

Finally, you can go back to the integration process to continue initing the Anstomi SDK.

Last updated