Android Branding Strings

The Sensibill SDK uses String resources to set text content used in native UI. To customize Strings in the SDK:

  1. Add the desired string resource to the host application’s strings.xml file (typically strings.xml in the values folder)
  2. Make sure the added string resource has the same name as the string resource that is to be overridden in the SDK. We can provide specific string key values upon request.
<resources>
    ...
    <!--Sensibill String value to be overridden-->
    <string name="sb__sensibill_string_resource_to_override">My Customized string value</string>
</resources>

Note: For localization, make sure to add the string resource to the string resources file in the correct localized values folder. (ie, values-es/string.xml for Spanish translations)