Files
app_PawletSettings/Android.bp
T
oxmc 3e6ab33b04 Initial scaffold: PawletOS Settings app
Privileged system app that registers with Settings via
com.android.settings.action.EXTRA_SETTINGS, appearing under
the Device category. Provides an empty PreferenceScreen
ready for PawletOS-specific toggles.
2026-06-09 05:20:11 -07:00

20 lines
416 B
Plaintext

android_app {
name: "PawletSettings",
srcs: ["src/**/*.kt"],
manifest: "AndroidManifest.xml",
platform_apis: true,
privileged: true,
certificate: "platform",
product_specific: true,
static_libs: [
"androidx.appcompat_appcompat",
"androidx.preference_preference",
],
optimize: {
enabled: false,
},
dex_preopt: {
enabled: false,
},
}