ServiceManager: doc comment

A couple words on this for ya!

Fixes: 197629711
Test: N/A
Change-Id: I4fbaacb6e123c042919c03f11a0403e041d23a56
This commit is contained in:
Steven Moreland
2021-09-08 11:33:27 -07:00
parent 44233c693c
commit dc7cae65cf

View File

@@ -29,7 +29,14 @@ import com.android.internal.util.StatLogger;
import java.util.Map;
/** @hide */
/**
* Manage binder services as registered with the binder context manager. These services must be
* declared statically on an Android device (SELinux access_vector service_manager, w/ service
* names in service_contexts files), and they do not follow the activity lifecycle. When
* building applications, android.app.Service should be preferred.
*
* @hide
**/
@SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
public final class ServiceManager {
private static final String TAG = "ServiceManager";