AboutAppConfig

fun AboutAppConfig(    @ColorInt backgroundColor: Int? = null,     @ColorInt iconsColor: Int? = null,     @DrawableOrDrawableRes appIcon: Any?,     @StringOrStringRes appName: Any,     @StringOrStringRes appVersionName: Any,     @StringOrStringRes authorName: Any,     @StringOrStringRes authorLink: Any?,     @DrawableOrDrawableRes companyLogo: Any?,     @StringOrStringRes companyName: Any,     @StringOrStringRes companyLink: Any?,     @StringOrStringRes termsAndPrivacyPolicyLink: Any?,     @ColorInt termsAndPrivacyPolicyTextColor: Int? = null,     showOpenSourceLicenses: Boolean,     taskDescriptionConfig: TaskDescriptionConfig? = null)

Parameters

backgroundColor

Background color for the activity, if null, the default value is used, which is the background color of the theme.

iconsColor

Color for icons, if null, the default value is used, which is the color defined in the theme.

appIcon

App icon or logo.

appName

App name.

appVersionName

App version.

authorName

App author name.

authorLink

URL that opens when clicking on the author's name, null to not open any link.

companyLogo

Developer company logo.

companyName

Developer company name.

companyLink

URL that opens when clicking on the company logo, null to not open any link.

termsAndPrivacyPolicyLink

URL of the terms of use and privacy policy, leave null if you do not want to show them.

termsAndPrivacyPolicyTextColor

Color for the text of the terms of use and privacy policy, if it is null, the default value is used, which is the color defined in the theme.

showOpenSourceLicenses

Determines whether a button is shown to view the app open source licenses. If true, these https://developers.google.com/android/guides/opensource instructions must be followed in order to can shown open source licenses.

taskDescriptionConfig

Object with the configuration for the activity TaskDescription, leave null if it is not required.