Fill in partial cherry-pick
The cherry-pick of ag/9513538 to AOSP didn't include the manifest parts
and broke the 4636 menu in AOSP. Finishing the cherry-pick so that we
can use the debug menu again.
Bug: 123598192
Test: verify that the *#*#4636#*#* menu works
Change-Id: If1005e9175422f4ef64d9c810b06345987d3deea
Merged-In: I45ee1fc310274cd60e4a7af4728e6487555c11d8
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 6ddfe94..27deca3 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -638,5 +638,25 @@
android:multiprocess="false"
android:singleUser="true"
android:writePermission="android.permission.MODIFY_PHONE_STATE"/>
+
+ <activity
+ android:name=".settings.RadioInfo"
+ android:label="@string/phone_info_label"
+ android:theme="@style/Theme.AppCompat.DayNight">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".settings.BandMode"
+ android:label="@string/band_mode_title"
+ android:theme="@style/Theme.AppCompat.DayNight">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.VOICE_LAUNCH" />
+ </intent-filter>
+ </activity>
</application>
</manifest>