summaryrefslogtreecommitdiffstats
path: root/media/tests/CameraBrowser/AndroidManifest.xml
blob: 1b1c146e2d5d6157be110f88f77c6c1116974a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.camerabrowser">

    <uses-permission android:name="android.permission.ACCESS_USB" />

    <application android:label="@string/app_label">
        <activity android:name="CameraBrowser" android:label="Camera Browser">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name="StorageBrowser" />
        <activity android:name="ObjectBrowser" />
        <activity android:name="ObjectViewer" />

        <receiver android:name="UsbReceiver">
            <intent-filter>
                <action android:name="android.hardware.action.USB_CAMERA_ATTACHED" />
                <data android:scheme="content"/>
            </intent-filter>
        </receiver>

    </application>


</manifest>