Snapdragon® Telematics Application Framework (TelAF) Interface Specification
Application Management Service

API Reference


The Application Management service APIs help to control and obtain information about applications.

IPC interfaces binding

All functions of this API are provided by the tafUpdateSvc service.

The following example shows how to bind to the application management service.

bindings:
{
    clientExe.clientComponent.taf_appMgmt -> tafUpdateSvc.taf_appMgmt
}

Application Control

Application Information Query

Users can get application information through the app list using the following functions.

The following example illustrates how to obtain application information.

// Create list.
// Traverse list
appRef = taf_appMgmt_GetFirstApp(listRef);
while (appRef != nullptr) {
taf_appMgmt_GetAppDetails(appRef, appInfoPtr);
// Do something with appInfoPtr.
appRef = taf_appMgmt_GetNextApp(listRef);
}
// Delete list.