Add AttributionSource stub
The class was not present in older Android SDKs.
This commit is contained in:
15
server/src/main/stubs/android/content/AttributionSource.java
Normal file
15
server/src/main/stubs/android/content/AttributionSource.java
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user