3e6ab33b04
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.
20 lines
416 B
Plaintext
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,
|
|
},
|
|
}
|