File: AndroidManifest.xml

package info (click to toggle)
android-platform-development 7.0.0%2Br33-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 30,092 kB
  • sloc: ansic: 161,291; java: 15,681; cpp: 7,721; xml: 6,419; python: 5,456; sh: 1,748; lisp: 261; ruby: 183; asm: 132; perl: 88; makefile: 22
file content (62 lines) | stat: -rw-r--r-- 2,809 bytes parent folder | download | duplicates (4)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.fallback">
    <application android:label="@string/appTitle">

        <activity android:name="Fallback" android:label="@string/title"
				android:theme="@android:style/Theme.Dialog">
<!-- for debugging on non-SDK builds
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
-->
			<!-- SMS intents -->
            <intent-filter android:priority="-1000">
                <action android:name="android.intent.action.VIEW" />
				<category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.item/sms-chat" />
            </intent-filter>
            <intent-filter android:priority="-1000">
                <action android:name="android.intent.action.VIEW" />
                <action android:name="android.intent.action.SENDTO" />
				<category android:name="android.intent.category.DEFAULT" />
                <data android:scheme="sms" />
            </intent-filter>
            <intent-filter android:priority="-1000">
	            <action android:name="android.intent.action.VIEW" />
				<category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
	            <data android:mimeType="vnd.android.cursor.item/sms" />
            </intent-filter>

			<!-- Mail intents -->
            <intent-filter android:priority="-1000">
                <action android:name="android.intent.action.VIEW" />
                <action android:name="android.intent.action.SENDTO" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="mailto" />
            </intent-filter>

			<!-- Wallpaper intents -->
            <intent-filter android:priority="-1000">
                <action android:name="android.intent.action.WALLPAPER_SETTINGS" />
				<category android:name="android.intent.category.DEFAULT" />
			</intent-filter>
			
			<!-- Camera intents -->
			<intent-filter android:priority="-1000">
			    <action android:name="android.intent.action.GET_CONTENT" />
                <category android:name="android.intent.category.DEFAULT" />
			    <data android:mimeType="image/*" />
			</intent-filter>
			
			<!-- Settings Intent -->
			<intent-filter android:priority="-1000">
				<action android:name="android.settings.SETTINGS" />
				<category android:name="android.intent.category.DEFAULT" />
			</intent-filter>
        </activity>
                                
    </application>

</manifest>