- Rename LineageSettingsActivity -> PawletSettingsActivity - Rename all LINEAGE_* intent action names to drop the LINEAGE_ prefix (BLUETOOTH_SETUP, WELCOME, LOCALE, SIM_MISSING, NETWORK_SETUP, DATETIME, RESTORE_BACKUP, LOCATION_SETTINGS, RECOVERY_UPDATE, PAWLET_SETTINGS, BIOMETRIC_SETTINGS, LOCKSCREEN_SETTINGS, SETUP_COMPLETE) - Rename lineage_wizard_script* raw resources to pawlet_wizard_script* - Rename setup_lineage_settings layout to setup_pawlet_settings - Update wizard_script.xml and wizard_script_user.xml action names - Fix DeviceSpecificActivity SUW_SETTINGS action to me.pawlet.settings.device - Update user-visible strings: "Lineage Recovery", "LineageOS features" - Update privacy policy URI from lineageos.org to pawletos.oxmc.me
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
|
SPDX-FileCopyrightText: 2021 The Calyx Institute
|
|
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="welcome">
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.WELCOME;end"
|
|
id="welcome">
|
|
<result wizard:name="skip" wizard:resultCode="1" />
|
|
<result wizard:action="restore" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.RESTORE_BACKUP;end"
|
|
id="restore">
|
|
<result wizard:action="location_settings" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LOCATION_SETTINGS;end"
|
|
id="location_settings">
|
|
<result wizard:action="finish" />
|
|
</WizardAction>
|
|
|
|
<WizardAction
|
|
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.SETUP_COMPLETE;end"
|
|
id="finish" />
|
|
|
|
</WizardScript>
|