Merge "Fix potential null package name" into tm-qpr-dev

This commit is contained in:
Anthony Stange
2022-08-23 21:42:05 +00:00
committed by Android (Google) Code Review

View File

@@ -322,6 +322,17 @@ public class ContextHubClientBroker extends IContextHubClient.Stub
} else {
mPendingIntentRequest = new PendingIntentRequest(pendingIntent, nanoAppId);
}
if (packageName == null) {
String[] packages = mContext.getPackageManager().getPackagesForUid(
Binder.getCallingUid());
if (packages != null && packages.length > 0) {
packageName = packages[0];
}
Log.e(TAG, "createClient: Provided package name null. Using first package name "
+ packageName);
}
mPackage = packageName;
mAttributionTag = attributionTag;
mTransactionManager = transactionManager;