summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f2dac1256..f5415a00c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -173,16 +173,18 @@
</intent-filter>
</activity-alias>
- <!-- This activity receives USB_DEVICE_ATTACHED Intents and springboards to main Gallery activity. -->
- <activity android:name="com.android.gallery3d.app.UsbDeviceActivity" android:label="@string/app_name"
- android:taskAffinity=""
- android:launchMode="singleInstance">
+ <!-- This activity receives USB_DEVICE_ATTACHED intents and allows importing
+ media from attached MTP devices, like cameras and camera phones -->
+ <activity android:launchMode="singleInstance"
+ android:taskAffinity="" android:name="com.android.gallery3d.ingest.IngestActivity"
+ android:label="@string/app_name">
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
</activity>
+ <service android:name="com.android.gallery3d.ingest.IngestService" />
<activity android:name="com.android.gallery3d.app.Wallpaper"
android:configChanges="keyboardHidden|orientation|screenSize"