diff options
author | 2025-01-03 10:39:56 +0000 | |
---|---|---|
committer | 2025-01-03 03:01:09 -0800 | |
commit | 2b7a47a72198a3db9cfce447f05e446f68dfe960 (patch) | |
tree | cd6406399af3e667379ec87bc03abaee8c3df8b7 /libs/appfunctions/java | |
parent | 51710b696b5fdb6753025f90079a4b1c204f845e (diff) |
Add the missing SdkConstant annotation
Flag: android.app.appfunctions.flags.enable_app_function_manager
Test: Treehugger
Bug: 357551503
Change-Id: I75369cd3d7254b2195b379124801c487a12dd215
Diffstat (limited to 'libs/appfunctions/java')
-rw-r--r-- | libs/appfunctions/java/com/android/extensions/appfunctions/AppFunctionService.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/appfunctions/java/com/android/extensions/appfunctions/AppFunctionService.java b/libs/appfunctions/java/com/android/extensions/appfunctions/AppFunctionService.java index 55f579138218..9f3c34575b94 100644 --- a/libs/appfunctions/java/com/android/extensions/appfunctions/AppFunctionService.java +++ b/libs/appfunctions/java/com/android/extensions/appfunctions/AppFunctionService.java @@ -22,6 +22,7 @@ import static com.android.extensions.appfunctions.SidecarConverter.getPlatformEx import android.annotation.MainThread; import android.annotation.NonNull; import android.annotation.Nullable; +import android.annotation.SdkConstant; import android.app.Service; import android.content.Intent; import android.os.Binder; @@ -64,6 +65,7 @@ public abstract class AppFunctionService extends Service { * service must also require the {@link BIND_APP_FUNCTION_SERVICE} permission so that other * applications can not abuse it. */ + @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION) @NonNull public static final String SERVICE_INTERFACE = "android.app.appfunctions.AppFunctionService"; |