Add AttributionSource stub

The class was not present in older Android SDKs.
This commit is contained in:
Romain Vimont
2023-03-31 00:24:01 +02:00
parent 2f9396e24a
commit ce3d7507ce
2 changed files with 29 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
package android.content;
public class AttributionSource {
public static class Builder {
public Builder(int uid) {
throw new UnsupportedOperationException();
}
public Builder setPackageName(String value) {
throw new UnsupportedOperationException();
}
public AttributionSource build() {
throw new UnsupportedOperationException();
}
}
}