Forked from LineageOS android_packages_apps_SetupWizard. Changes from upstream: - Package renamed from org.lineageos.setupwizard to me.pawlet.setupwizard - Module renamed from LineageSetupWizard to PawletSetupWizard - Source tree moved from src/org/lineageos/ to src/me/pawlet/ - WelcomeActivity and FinishActivity migrated to Kotlin/Compose - PawletTheme: Material3 lavender color scheme with Ubuntu font family - WelcomeScreen and FinishScreen Compose composables - Added Ubuntu font assets (regular/medium/bold) - Added missing strings: setup_welcome_description, setup_complete_title, setup_complete_description; os_name set to PawletOS - Android.bp: added Compose deps, pawlet-system framework API - Privapp-permissions file renamed to me.pawlet.setupwizard.xml - Helper scripts renamed from start_lineage_wizard to start_pawlet_wizard - Removed unused org.lineageos.platform.internal dependency
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2014 Google Inc. All rights reserved.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<resources>
|
|
<declare-styleable name="ScrimInsetsView">
|
|
<attr name="insetForeground" format="reference|color" />
|
|
</declare-styleable>
|
|
|
|
<attr name="localePickerStyle" format="reference" />
|
|
|
|
<declare-styleable name="LocalePicker">
|
|
<attr name="solidColor" format="color|reference" />
|
|
<attr name="selectionDivider" format="reference" />
|
|
<attr name="selectionDividerHeight" format="dimension" />
|
|
<attr name="selectionDividersDistance" format="dimension" />
|
|
<attr name="internalMinHeight" format="dimension" />
|
|
<attr name="internalMaxHeight" format="dimension" />
|
|
<attr name="internalMinWidth" format="dimension" />
|
|
<attr name="internalMaxWidth" format="dimension" />
|
|
<attr name="internalLayout" format="reference" />
|
|
<attr name="virtualButtonPressedDrawable" format="reference" />
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="NavigationLayout">
|
|
<attr name="showSkipButton" format="boolean" />
|
|
</declare-styleable>
|
|
</resources>
|