excludeMatchingSettingsKeys

abstract fun excludeMatchingSettingsKeys(): Array<String>

Provide here regex patterns to be evaluated on each android.provider.Settings.System, android.provider.Settings.Secure and android.provider.Settings.Global key to exclude KV pairs from being collected.This allows you to exclude sensitive data from being collected.If you only want to include some keys, you may use regular expressions to do so:

only keys foo and bar
"^(?!foo|bar).*$"
only keys containing foo and bar
"^((?!foo|bar).)*$"

Return

regex patterns, every matching key is not collected.