diff options
author | 2020-03-27 15:09:26 +0000 | |
---|---|---|
committer | 2020-03-27 15:09:26 +0000 | |
commit | a3ea3e1895f33af526370c5e64c44561ea9f3deb (patch) | |
tree | b7bbe17ed95f5950206a0b84a0b376d6440592c1 | |
parent | 323a6026285fcfc218356aebda9f97466d4d2268 (diff) |
Add package filter for system_server stubs
Should prevent accidental addition of APIs outside com.android,
which is where we want these APIs to be.
Also fix a bug in the permission filegroup where it wasn't
specifying the subpath of its code.
Bug: 149293194
Test: m update-api
Change-Id: I144ce6dbfe524106fc7de87318f66390c31b45af
-rw-r--r-- | service/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/Android.bp b/service/Android.bp index 679c98ddc..5cdcdd335 100644 --- a/service/Android.bp +++ b/service/Android.bp @@ -17,6 +17,7 @@ filegroup { srcs: [ "java/**/*.java", ], + path: "java", } java_library { |