Export the DSULoader activity

Test: adb shell am start-activity \
  -n com.android.settings/com.android.settings.development.DSULoader\
  -a android.settings.development.START_DSU_LOADER
Bug: 245029263
Change-Id: I0f3afd92b4c896823ebfa4729397d38bf853bbbe
This commit is contained in:
Howard Chen
2022-09-29 16:33:34 +08:00
parent d7d1d9451b
commit 5d7f3e6c4d

View File

@@ -2701,9 +2701,15 @@
<activity android:name=".development.AdbQrCodeActivity" />
<activity android:name=".development.DSULoader"
<activity android:name="com.android.settings.development.DSULoader"
android:label="Select DSU Package"
android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" />
android:theme="@android:style/Theme.DeviceDefault.Light.Dialog"
android:exported="true" >
<intent-filter>
<action android:name="android.settings.development.START_DSU_LOADER"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".development.DSUTermsOfServiceActivity"
android:label="Terms of Service"
android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" />