The AccountKitConfigurationBuilder
object offers multiple UI and behavior customization points for your use of Account Kit via methods that allow you to override default properties at runtime.
Method | Description |
---|---|
| (Optional) A developer-generated nonce used to verify that the received response matches the request. Fill this with a random value at runtime; when the login call returns, check that the corresponding param in the response matches the one you set in this method. |
| (Optional) Pre-fill the user's email address in the email login flow. Note: By default, the email field provides a dropdown list of the user's email addresses if the |
| (Optional) Set the default country code shown in the SMS login flow. |
| (Optional) Pre-fill the user's phone number in the SMS login flow. |
| (Optional) If this flag is set, Account Kit offers the user the option to receive their confirmation message via a Facebook notification in the event of an SMS failure, if their phone number is associated with their Facebook account. The associated phone number must be the primary phone number for that Facebook account. Default: |
| (Optional) Set to Default: |
| (Optional) Pass in a resource identifier for a theme to have that theme used for the login screen. See Customizing the UI for Android for more information. Note: If you specify both a theme and an Advanced UI Manager object (see below), the Advanced UI Manager will take precedence and overwrite theme elements. |
| (Optional) Pass in an object that implements the |
| (Optional) If the Default: |
| (Optional) If the Default: |
| (Optional) Use this to specify a list of permitted country codes for use in the SMS login flow. The value is an array of short country codes as defined by ISO 3166-1 Alpha 2. To restrict availability to just the US (+1) and The Netherlands (+31), pass in |
| (Optional) Use this to specify a list of country codes to exclude during the SMS login flow. Only the country codes in the blacklist are unavailable. People can still use the rest of Account Kit's supported country codes. If a country code appears in both the whitelist and the blacklist, the blacklist takes precedence and the country code is not available. Just like the whitelist, the value is an array of short country codes as defined by ISO 3166-1 Alpha 2. |
When you whitelist and blacklist country codes, you can use the following combinations of lists with the described results.
Lists | Result |
---|---|
No whitelist or blacklist | All country codes supported by Account Kit are available. |
Whilelist | Only country codes in the whitelist are available. |
Blacklist | All country codes supported by Account Kit except those in the blacklist are available. |
Whitelist and blacklist | Only the country codes in the whitelist that are not also in the blacklist are available. Note that the blacklist takes priority for codes that that are in both lists. |