pawlet-system is now a java_library; reference it by name instead of the .stubs.system stub variant.
45 lines
1006 B
Plaintext
45 lines
1006 B
Plaintext
//
|
|
// SPDX-FileCopyrightText: The LineageOS Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
android_app {
|
|
name: "PawletSetupWizard",
|
|
|
|
srcs: [
|
|
"src/**/*.java",
|
|
"src/**/*.kt",
|
|
],
|
|
|
|
kotlincflags: ["-Xjvm-default=all"],
|
|
|
|
certificate: "platform",
|
|
privileged: true,
|
|
privapp_allowlist: "me.pawlet.setupwizard.xml",
|
|
system_ext_specific: true,
|
|
platform_apis: true,
|
|
|
|
overrides: ["Provision"],
|
|
|
|
optimize: {
|
|
proguard_flags_files: ["proguard.flags"],
|
|
},
|
|
|
|
static_libs: [
|
|
"androidx.activity_activity",
|
|
"androidx.activity_activity-compose",
|
|
"androidx.compose.runtime_runtime",
|
|
"androidx.compose.ui_ui",
|
|
"androidx.compose.foundation_foundation",
|
|
"androidx.compose.material3_material3",
|
|
"androidx.compose.ui_ui-graphics",
|
|
"SettingsLib",
|
|
"setupcompat",
|
|
"setupdesign",
|
|
"SystemUISharedLib",
|
|
"pawlet-system",
|
|
],
|
|
|
|
libs: ["telephony-common"],
|
|
}
|