AI-generated Key Takeaways
-
IVerifyAppsDataCallback is a callback object used to return results from the getVerifyAppsData API in IPackageVerificationApiService.
-
It has known indirect subclasses IVerifyAppsDataCallback.Stub and IVerifyAppsDataCallback.Stub.Proxy.
-
The main method is onGetVerifyAppsDataResult, which is called with a boolean indicating success and a Bundle containing the results.
| Known Indirect Subclasses |
This is a callback object to return the results from the getVerifyAppsData API in IPackageVerificationApiService.
Nested Class Summary
| class | IVerifyAppsDataCallback.Stub | ||
Public Method Summary
| abstract void |
onGetVerifyAppsDataResult(boolean success, Bundle result)
This will be called with the results of the getVerifyAppsData API.
|
Inherited Method Summary
Public Methods
public abstract void onGetVerifyAppsDataResult (boolean success, Bundle result)
This will be called with the results of the getVerifyAppsData API.
Parameters
| success | false if there was an error while getting the list of harmful apps, otherwise true. |
|---|---|
| result | A Bundle containing the requested data. Can be null if success is false |
Throws
| RemoteException |
|---|