No-Display Activity to handle SIM Activation intent.
New Activity handles the new SIM_ACTIVATION_REQUEST intent and prints
out a log statement when received.
Change-Id: I155b27eb4540a3af280cd840b357f4efe1290c55
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b802dee..88a017d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -276,6 +276,18 @@
</intent-filter>
</activity>
+ <!-- Trampoline activity that handles the SIM_ACTIVATION_REQUEST intent. -->
+ <activity android:name="com.android.services.telephony.activation.SimActivationActivity"
+ android:permission="android.permission.PERFORM_SIM_ACTIVATION"
+ android:label="@string/phoneIconLabel"
+ android:theme="@android:style/Theme.NoDisplay"
+ android:excludeFromRecents="true">
+ <intent-filter>
+ <action android:name="android.intent.action.SIM_ACTIVATION_REQUEST" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
<!-- "Mobile network settings" screen, used on both
non-voice-capable tablets and regular phone devices. -->
<activity android:name="MobileNetworkSettings"