api-impl: misc stubs for WhatsApp support

This commit is contained in:
Julian Winkler
2025-04-21 10:19:48 +02:00
parent f2065e31a4
commit 5de2c27abf
20 changed files with 96 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
package android.transition;
public class Fade extends Transition {
}

View File

@@ -11,4 +11,8 @@ public class Transition {
public Transition addListener(TransitionListener listener) {
return this;
}
public Transition excludeTarget(int targetId, boolean exclude) {
return this;
}
}