diff options
| author | 2020-04-06 10:15:10 +0100 | |
|---|---|---|
| committer | 2020-04-06 10:15:10 +0100 | |
| commit | f88af4ca03271ed56119c52d0542b7328705747d (patch) | |
| tree | abcc82246d0d1b41ae052fdcdac0b03d8a0f35c9 | |
| parent | a3ea3e1895f33af526370c5e64c44561ea9f3deb (diff) | |
Stop system server depending on the stubs of itself
It should have the stubs of the modules it depends on in its
classpath instead, so link against service-permission-stubs
which is the only module it currently depends on.
Bug: 152864915
Test: m
Change-Id: I4ca19b9ed0db5b9bd61d67e37f5de2e61253bc95
| -rw-r--r-- | service/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/Android.bp b/service/Android.bp index 5cdcdd335..2eb7e99a9 100644 --- a/service/Android.bp +++ b/service/Android.bp @@ -48,5 +48,5 @@ java_library { name: "service-permission-stubs", srcs: [":service-permission-stubs-srcs"], defaults: ["service-module-stubs-defaults"], - visibility: ["//visibility:private"] + visibility: ["//frameworks/base/services/core"] } |