For the complete documentation index, see llms.txt. This page is also available as Markdown.

User Explorer

Recommended for Debug builds only

This guide explains how to check User Identifiers and force-assign users to A/B Tests and Feature Flags.

Add the following code.

@Override
public void onCreate(Bundle savedInstanceState) {
  //...
  hackleApp.showUserExplorer();
  //...
}
@Override
public void onCreate(Bundle savedInstanceState) {
  //...
  hackleApp.showUserExplorer(this);
  //...
}

A Hackle logo button is displayed at the bottom of the screen. Clicking the button takes you to the settings screen.

Check User Identifier

You can view and copy the User Identifier at the top of the screen.

If the SDK version supports Push Messages, you can also view the push token information for this device.

Force Assignment

  • You can view the distribution results for A/B Tests and Feature Flags at the bottom of the screen.

  • Click a SelectBox to force-assign to a specific variation.

  • Click the RESET button to remove the force assignment.

  • Click RESET ALL to remove all force assignments.

  • Force assignments made in the app only apply when distribution is performed in the app. (They are not registered as Test Devices in the Dashboard.)

  • If a force assignment is not applied, fully close the app and relaunch it.

Last updated