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
106 lines
3.5 KiB
XML
106 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
|
SPDX-FileCopyrightText: The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<WizardScript xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard"
|
|
wizard:firstAction="bluetooth_setup">
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BLUETOOTH_SETUP;end"
|
|
id="bluetooth_setup">
|
|
<result wizard:action="welcome" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_WELCOME;end"
|
|
id="welcome">
|
|
<result wizard:name="skip" wizard:resultCode="1" />
|
|
<result wizard:action="locale" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCALE;end"
|
|
id="locale">
|
|
<result wizard:action="sim_missing" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SIM_MISSING;end"
|
|
id="sim_missing">
|
|
<result wizard:action="network_setup" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_NETWORK_SETUP;end"
|
|
id="network_setup">
|
|
<result wizard:action="datetime" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_DATETIME;end"
|
|
id="datetime">
|
|
<result wizard:action="restore" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP;end"
|
|
id="restore">
|
|
<result wizard:action="location_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCATION_SETTINGS;end"
|
|
id="location_settings">
|
|
<result wizard:action="device_specific" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.DEVICE_SPECIFIC;end"
|
|
id="device_specific">
|
|
<result wizard:action="recovery_update" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RECOVERY_UPDATE;end"
|
|
id="recovery_update">
|
|
<result wizard:action="lineage_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETTINGS;end"
|
|
id="lineage_settings">
|
|
<result wizard:action="biometric_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BIOMETRIC_SETTINGS;end"
|
|
id="biometric_settings">
|
|
<result wizard:action="lockscreen_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCKSCREEN_SETTINGS;end"
|
|
id="lockscreen_settings">
|
|
<result wizard:action="theme_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.THEME_SETTINGS;end"
|
|
id="theme_settings">
|
|
<result wizard:action="navigation_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.NAVIGATION_SETTINGS;end"
|
|
id="navigation_settings">
|
|
<result wizard:action="finish" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end"
|
|
id="finish" />
|
|
|
|
</WizardScript>
|