implement more APIs

This commit is contained in:
Julian Winkler
2024-03-20 23:05:17 +01:00
parent e8dc6e2f0d
commit 494605932c
18 changed files with 119 additions and 36 deletions

View File

@@ -294,4 +294,9 @@ public class Intent {
public String getType() {
return type;
}
public Intent setData(Uri uri) {
this.data = uri;
return this;
}
}