forked from mika/pentabarf-android
-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
71 lines (67 loc) · 2.94 KB
/
AndroidManifest.xml
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
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.linuxwochen.wien13"
android:versionName="1.0"
android:versionCode="1" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/>
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<meta-data android:name="android.app.default_searchable"
android:value="org.fosdem.schedules.Main" />
<uses-library android:name="android.test.runner"/>
<activity android:name="org.fosdem.schedules.Main"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Receives the search request. -->
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- Points to searchable meta data. -->
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
<activity android:name="org.fosdem.schedules.DisplayEvent"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="org.fosdem.schedules.DISPLAY_EVENT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="org.fosdem.schedules.TrackListActivity"/>
<activity android:name="org.fosdem.schedules.EventListActivity"/>
<activity android:name="org.fosdem.schedules.Preferences"/>
<receiver android:name="org.fosdem.broadcast.NotificationReceiver" android:exported="false">
<intent-filter>
<action android:name="org.fosdem.action.favorites_update" />
</intent-filter>
<intent-filter>
<action android:name="org.fosdem.action.favorites_initial_load"/>
</intent-filter>
<intent-filter>
<action android:name="org.fosdem.action.favorites_alarm" />
<data android:scheme="event" />
</intent-filter>
</receiver>
<provider android:name="org.fosdem.db.DBAdapter" android:authorities="gltdb"/>
<!-- Provides search suggestions for words and their definitions. -->
<provider android:name="org.fosdem.providers.SearchProvider"
android:authorities="wien13search"
android:syncable="false" />
<activity android:name="org.fosdem.schedules.SortPreferences"></activity>
</application>
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="FOSDEM JUnit" android:targetPackage="at.linuxwochen.wien13"/>
</manifest>