diff options
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 52ea3abe3..188b314e1 100644 --- a/Android.bp +++ b/Android.bp @@ -86,6 +86,30 @@ bootclasspath_fragment { additional_stubs: [ "android-non-updatable", ], + + hidden_api: { + // The following packages contain classes from other modules on the + // bootclasspath. That means that the hidden API flags for this module + // has to explicitly list every single class this module provides in + // that package to differentiate them from the classes provided by other + // modules. That can include private classes that are not part of the + // API. + split_packages: [ + "android.permission", + ], + + // The following packages and all their subpackages currently only + // contain classes from this bootclasspath_fragment. Listing a package + // here won't prevent other bootclasspath modules from adding classes in + // any of those packages but it will prevent them from adding those + // classes into an API surface, e.g. public, system, etc.. Doing so will + // result in a build failure due to inconsistent flags. + package_prefixes: [ + "android.app.role", + "android.safetycenter", + "com.android.permission", + ], + }, } // Encapsulate the contributions made by the com.android.permission to the systemserverclasspath. |