Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 206e3e1e authored by Steve Kondik's avatar Steve Kondik
Browse files

telephony-msim: Fix package errors

Change-Id: I64f0d59812fa6f9b8bd9ad5d9969ba7e352a27ac
parent fede1828
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1136,7 +1136,7 @@
        </service>

        <!-- Runs in the phone process since it needs access to the Phone object -->
        <activity android:name=".deviceinfo.MSimSubscriptionStatus"
        <activity android:name=".deviceinfo.msim.MSimSubscriptionStatus"
                android:label="@string/device_status_activity_title"
                android:theme="@android:style/Theme.Holo.DialogWhenLarge"
                android:process="com.android.phone">
@@ -1148,7 +1148,7 @@
        </activity>

        <!-- Runs in the phone process since it needs access to the Phone object -->
        <activity android:name=".deviceinfo.MSimStatus"
        <activity android:name=".deviceinfo.msim.MSimStatus"
                android:label="@string/device_status_activity_title"
                android:theme="@android:style/Theme.Holo.DialogWhenLarge"
                android:process="com.android.phone">
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ public class DeviceInfoSettings extends SettingsPreferenceFragment {

        if (MSimTelephonyManager.getDefault().isMultiSimEnabled()) {
            findPreference(KEY_STATUS).getIntent().setClassName(
                    "com.android.settings","com.android.settings.deviceinfo.MSimStatus");
                    "com.android.settings","com.android.settings.deviceinfo.msim.MSimStatus");
        }

        // Remove selinux information if property is not present
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
 * limitations under the License.
 */

package com.android.settings.deviceinfo;
package com.android.settings.deviceinfo.msim;

import android.bluetooth.BluetoothAdapter;
import android.content.BroadcastReceiver;
@@ -163,7 +163,7 @@ public class MSimStatus extends PreferenceActivity {
            Intent intent = selectSub.getIntent();
            intent.putExtra(SelectSubscription.PACKAGE, "com.android.settings");
            intent.putExtra(SelectSubscription.TARGET_CLASS,
                    "com.android.settings.deviceinfo.MSimSubscriptionStatus");
                    "com.android.settings.deviceinfo.msim.MSimSubscriptionStatus");
        }

        mRes = getResources();
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
 * limitations under the License.
 */

package com.android.settings.deviceinfo;
package com.android.settings.deviceinfo.msim;

import android.content.BroadcastReceiver;
import android.content.Context;