summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2015-04-13 14:15:26 -0700
committerJeff Sharkey <jsharkey@android.com>2015-04-13 21:45:39 -0700
commit94635995e49ee2ab0f3640dd83b2fe680b7bd589 (patch)
treeb8f2fc3d9a272e2271c0a0ae9c3bc57305da22b1 /AndroidManifest.xml
parentfc3bd5c0c2bb0aa8f701d3df4980a76ef6de9801 (diff)
downloadpackages_apps_Settings-94635995e49ee2ab0f3640dd83b2fe680b7bd589.zip
packages_apps_Settings-94635995e49ee2ab0f3640dd83b2fe680b7bd589.tar.gz
packages_apps_Settings-94635995e49ee2ab0f3640dd83b2fe680b7bd589.tar.bz2
Checkpoint of new storage wizards.
Use frameworks/opt/setupwizard/library/ for consistent behavior and styling on phones and tablets. Implement every step of wizard flow and connect them together, even though some steps are currently non-functional. All strings to match UX spec, with some adjustment. Wizards inherit from helper base class. New interstitials before unmounting or formatting private storage to confirm user knows consequences. Bug: 19993667 Change-Id: I2c774e1718d513805ee8aecfc96d066d4730450c
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 66a081d..e8c3f6e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1441,6 +1441,37 @@
android:resource="@id/storage_settings" />
</activity>
+ <!-- Exported for SystemUI to launch into -->
+ <activity android:name=".deviceinfo.StorageWizardInit"
+ android:theme="@style/SuwThemeMaterial.Light"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="true" />
+ <activity android:name=".deviceinfo.StorageWizardFormatConfirm"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardFormatProgress"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardMigrate"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardMigrateConfirm"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardMigrateProgress"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardReady"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+
+ <activity android:name=".deviceinfo.StorageWizardMoveConfirm"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+ <activity android:name=".deviceinfo.StorageWizardMoveProgress"
+ android:taskAffinity="com.android.settings.storage_wizard"
+ android:exported="false" />
+
<activity android:name="ApnEditor"
android:label="@string/apn_edit">
<intent-filter>