diff options
| author | 2024-01-31 16:40:07 +0100 | |
|---|---|---|
| committer | 2024-01-31 16:40:07 +0100 | |
| commit | 86791cac9a6b74b6f67cb92b9487717ec2bde08d (patch) | |
| tree | cbf8f08c238cf757b787335cd9391c111afa51ce | |
| parent | 8bbff97a70071305df2cb7f7083e2b4c86733b74 (diff) | |
Add deviceId to AttributionSource#toString
Bug: 291737188
Test: n/a
Change-Id: Id4589742e63e587b8caba12b6db9c015242744cd
| -rw-r--r-- | core/java/android/content/AttributionSource.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/content/AttributionSource.java b/core/java/android/content/AttributionSource.java index bde562dbf95b..33b1134a3b54 100644 --- a/core/java/android/content/AttributionSource.java +++ b/core/java/android/content/AttributionSource.java @@ -409,6 +409,7 @@ public final class AttributionSource implements Parcelable { "packageName = " + mAttributionSourceState.packageName + ", " + "attributionTag = " + mAttributionSourceState.attributionTag + ", " + "token = " + mAttributionSourceState.token + ", " + + "deviceId = " + mAttributionSourceState.deviceId + ", " + "next = " + (mAttributionSourceState.next != null && mAttributionSourceState.next.length > 0 ? mAttributionSourceState.next[0] : null) + |