Skip to content

Set the text within the SDK

1. Effect show

1-1-1.png

2. Coverage

PhizClip supports replacing the "applet" text in the SDK with any other name.

This setting is implemented by the App, once set, all the applets in the App will be implemented according to this effect

3. iOS setup method

This is done through the SDK initialization configuration parameters as follows:

// Replace the "applet" text in the SDK with "X app"
[FATClient sharedClient].uiConfig.appletText = @"X Applications";

4.Android setup method

This is done through the SDK initialization configuration parameters as follows:

java
FinAppConfig finAppConfig = new FinAppConfig.Builder()
        .setAppletText("X Applications") // Replace the "applet" text in the SDK with "X app"
        .build();