Added in API level 37

AppFunctionRegistration


public interface AppFunctionRegistration

android.app.appfunctions.AppFunctionRegistration


Result of AppFunctionManager.registerAppFunction.

The caller should retain a reference to this object and call unregister() when the app function is no longer relevant (e.g., in Activity.onStop() or before Service.stopForeground(boolean)).

Failing to unregister the app function can lead to memory leaks and unexpected behavior, as the system will continue to hold a reference to the AppFunction object.

Summary

Public methods

abstract void unregister()

Unregisters the app function previously registered with AppFunctionManager.registerAppFunction.

Public methods

unregister

Added in API level 37
public abstract void unregister ()

Unregisters the app function previously registered with AppFunctionManager.registerAppFunction.

If the app function was already unregistered, this method has no effect.