diff --git a/framework/Android.bp b/framework/Android.bp index 73a1ed0a9a..10acbd0c39 100644 --- a/framework/Android.bp +++ b/framework/Android.bp @@ -268,7 +268,7 @@ java_genrule { ":framework-connectivity-t-pre-jarjar{.jar}", ":framework-connectivity.stubs.module_lib{.jar}", ":framework-connectivity-t.stubs.module_lib{.jar}", - ":framework-connectivity-flagged-apis{.jar}", + ":framework-connectivity-module-api-stubs-including-flagged{.jar}", "jarjar-excludes.txt", ], tools: [ @@ -281,7 +281,7 @@ java_genrule { "--prefix android.net.connectivity " + "--apistubs $(location :framework-connectivity.stubs.module_lib{.jar}) " + "--apistubs $(location :framework-connectivity-t.stubs.module_lib{.jar}) " + - "--apistubs $(location :framework-connectivity-flagged-apis{.jar}) " + + "--apistubs $(location :framework-connectivity-module-api-stubs-including-flagged{.jar}) " + // Make a ":"-separated list. There will be an extra ":" but empty items are ignored. "--unsupportedapi $$(printf ':%s' $(locations :connectivity-hiddenapi-files)) " + "--excludes $(location jarjar-excludes.txt) " + @@ -294,7 +294,7 @@ java_genrule { } droidstubs { - name: "framework-connectivity-flagged-apis-droidstubs", + name: "framework-connectivity-module-api-stubs-including-flagged-droidstubs", srcs: [ ":framework-connectivity-sources", ":framework-connectivity-tiramisu-updatable-sources", @@ -302,7 +302,6 @@ droidstubs { ":framework-thread-sources", ], flags: [ - "--show-annotation android.annotation.FlaggedApi", "--show-for-stub-purposes-annotation android.annotation.SystemApi" + "\\(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS\\)", "--show-for-stub-purposes-annotation android.annotation.SystemApi" + @@ -317,8 +316,8 @@ droidstubs { } java_library { - name: "framework-connectivity-flagged-apis", - srcs: [":framework-connectivity-flagged-apis-droidstubs"], + name: "framework-connectivity-module-api-stubs-including-flagged", + srcs: [":framework-connectivity-module-api-stubs-including-flagged-droidstubs"], } // Library providing limited APIs within the connectivity module, so that R+ components like diff --git a/thread/tests/cts/Android.bp b/thread/tests/cts/Android.bp index 38e0697d41..d91c9db496 100644 --- a/thread/tests/cts/Android.bp +++ b/thread/tests/cts/Android.bp @@ -44,7 +44,7 @@ android_test { libs: [ "android.test.base", "android.test.runner", - "framework-connectivity-flagged-apis" + "framework-connectivity-module-api-stubs-including-flagged" ], // Test coverage system runs on different devices. Need to // compile for all architectures.