diff options
-rw-r--r-- | apex/Android.bp | 2 | ||||
-rw-r--r-- | service/Android.bp | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index 530a1468ef..3026a4ce01 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -21,6 +21,7 @@ apex { manifest: "apex_manifest.json", bootclasspath_fragments: ["com.android.btservices-bootclasspath-fragment"], systemserverclasspath_fragments: ["com.android.btservices-systemserverclasspath-fragment"], + compat_configs: ["bluetooth-compat-config"], apps: ["Bluetooth"], multilib: { @@ -55,6 +56,7 @@ apex { manifest: "apex_manifest.json", bootclasspath_fragments: ["com.android.btservices-bootclasspath-fragment"], systemserverclasspath_fragments: ["com.android.btservices-systemserverclasspath-fragment"], + compat_configs: ["bluetooth-compat-config"], apps: ["Bluetooth"], multilib: { diff --git a/service/Android.bp b/service/Android.bp index 79f3156885..ca76812d25 100644 --- a/service/Android.bp +++ b/service/Android.bp @@ -134,3 +134,9 @@ gensrcs { ], output_extension: "srcjar", } + +platform_compat_config +{ + name: "bluetooth-compat-config", + src: ":service-bluetooth-pre-jarjar", +} |