How to find and add Screen Names for Entrypoints

Check where you are using the below methods and verify the screen names. We will add the screen names that can be configured for the app in the dashboard in the next steps

Find Screen Name in App Code

Check in your code where you are using the below method and verify the screen names. We will add the screen names that we can configure for app in dashboard in next steps.

The given function should be used on every Activity's onResume Method

@Override
protected void onResume() {
    super.onResume();
    customerGlu.showEntryPoint(MainActivity.this,"screenName");
} 

Add Screen Names to dashboard

  • Open the CustomerGlu dashboard

  • Go to Nudges section and create a new nudge

  • In the Trigger Criteria Section , add the screen name in the Allowed Screen field.

    • If screen name exists then select the screen name

    • If not then you can Add Custom Screen name that is configured on app code

  • Enter the Screen Name and click on SAVE. Screen Name will be added in list.

  • Select the newly added screen name and launch a nudge.

Make sure Screen Name present in app needs to be same in dashboard

Last updated