Merge "Renaming intent action for unknown sources" into oc-dev

am: 3fa963b28e

Change-Id: I16886b1a1975e06c5593aa513ab09425a302475e
This commit is contained in:
Suprabh Shukla
2017-04-12 04:45:58 +00:00
committed by android-build-merger
2 changed files with 3 additions and 3 deletions

View File

@@ -2853,7 +2853,7 @@
android:label="@string/install_other_apps" android:label="@string/install_other_apps"
android:taskAffinity=""> android:taskAffinity="">
<intent-filter android:priority="1"> <intent-filter android:priority="1">
<action android:name="android.settings.action.MANAGE_EXTERNAL_SOURCES" /> <action android:name="android.settings.action.MANAGE_UNKNOWN_APP_SOURCES" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS" <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
@@ -2864,7 +2864,7 @@
android:label="@string/install_other_apps" android:label="@string/install_other_apps"
android:taskAffinity=""> android:taskAffinity="">
<intent-filter android:priority="1"> <intent-filter android:priority="1">
<action android:name="android.settings.action.MANAGE_EXTERNAL_SOURCES" /> <action android:name="android.settings.action.MANAGE_UNKNOWN_APP_SOURCES" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:scheme="package" /> <data android:scheme="package" />
</intent-filter> </intent-filter>

View File

@@ -93,7 +93,7 @@ public class ExternalSourcesSettingsTest {
private Intent createManageExternalSourcesListIntent() { private Intent createManageExternalSourcesListIntent() {
final Intent manageExternalSourcesIntent = new Intent(); final Intent manageExternalSourcesIntent = new Intent();
manageExternalSourcesIntent.setAction(Settings.ACTION_MANAGE_EXTERNAL_SOURCES); manageExternalSourcesIntent.setAction(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES);
return manageExternalSourcesIntent; return manageExternalSourcesIntent;
} }