1package { 2 default_team: "trendy_team_android_profile_experiences", 3 default_applicable_licenses: ["packages_apps_PrivateSpace_license"], 4} 5 6license { 7 name: "packages_apps_PrivateSpace_license", 8 visibility: [":__subpackages__"], 9 license_kinds: [ 10 "SPDX-license-identifier-Apache-2.0", 11 ], 12 license_text: [ 13 "NOTICE", 14 ], 15} 16 17android_app { 18 name: "PrivateSpace", 19 certificate: "platform", 20 platform_apis: true, 21 privileged: true, 22 optimize: { 23 enabled: true, 24 }, 25 srcs: [ 26 "src/**/*.kt", 27 ], 28 resource_dirs: ["res"], 29 static_libs: [ 30 "androidx.appcompat_appcompat", 31 "androidx.compose.foundation_foundation", 32 "androidx.compose.ui_ui", 33 "androidx.compose.material3_material3", 34 "androidx.compose.runtime_runtime", 35 ], 36} 37