1package { 2 // See: http://go/android-license-faq 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6android_app { 7 name: "MediaProviderLegacy", 8 manifest: "AndroidManifest.xml", 9 10 static_libs: [ 11 "mediaprovider-database", 12 "androidx.appcompat_appcompat", 13 "androidx.core_core", 14 ], 15 16 libs: [ 17 "app-compat-annotations", 18 "framework-mediaprovider.stubs.module_lib", 19 ], 20 21 srcs: [ 22 "src/**/*.aidl", 23 "src/**/*.java", 24 ], 25 26 platform_apis: true, 27 certificate: "media", 28 privileged: true, 29} 30