com.google.android.gms.safetynet.HarmfulAppsData Java Examples
The following examples show how to use
com.google.android.gms.safetynet.HarmfulAppsData.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FirstLaunchAnalytics.java From aptoide-client-v8 with GNU General Public License v3.0 | 5 votes |
private String getCategoryFlaggedByPlayProtect(List<HarmfulAppsData> list) { for (HarmfulAppsData app : list) { if (app.apkPackageName.equals(packageName)) { return getPlayProtectCategoryName(app.apkCategory); } } return null; }
Example #2
Source File: SafetyNetClientServiceImpl.java From android_packages_apps_GmsCore with Apache License 2.0 | 4 votes |
@Override public void getHarmfulAppsList(ISafetyNetCallbacks callbacks) throws RemoteException { Log.d(TAG, "dummy Method: unknown4"); callbacks.onHarmfulAppsData(Status.SUCCESS, new ArrayList<HarmfulAppsData>()); }