PackageManager.InvokeIsAutoRevokeWhitelisted(String) Method

Definition

Checks whether an application is exempt from having its permissions be automatically revoked when the app is unused for an extended period of time.

[Android.Runtime.Register("isAutoRevokeWhitelisted", "(Ljava/lang/String;)Z", "GetInvokeIsAutoRevokeWhitelisted_Ljava_lang_String_Handler", ApiSince=30)]
[Android.Runtime.RequiresPermission("android.permission.WHITELIST_AUTO_REVOKE_PERMISSIONS")]
public virtual bool InvokeIsAutoRevokeWhitelisted (string packageName);
[<Android.Runtime.Register("isAutoRevokeWhitelisted", "(Ljava/lang/String;)Z", "GetInvokeIsAutoRevokeWhitelisted_Ljava_lang_String_Handler", ApiSince=30)>]
[<Android.Runtime.RequiresPermission("android.permission.WHITELIST_AUTO_REVOKE_PERMISSIONS")>]
abstract member InvokeIsAutoRevokeWhitelisted : string -> bool
override this.InvokeIsAutoRevokeWhitelisted : string -> bool

Parameters

packageName
String

The app for which to set exemption.

Returns

Whether the app is whitelisted.

Attributes

Remarks

Checks whether an application is exempt from having its permissions be automatically revoked when the app is unused for an extended period of time.

Only the installer on record that installed the given package, or a holder of WHITELIST_AUTO_REVOKE_PERMISSIONS is allowed to call this.

<strong>Note: </strong>In retrospect it would have been preferred to use more inclusive terminology when naming this API. Similar APIs added will refrain from using the term "whitelist".

Java documentation for android.content.pm.PackageManager.isAutoRevokeWhitelisted(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to