]>
Commit | Line | Data |
---|---|---|
0763e16d JW |
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
42aa7dfd | 3 | package="com.joshuawise.dumload" |
4 | android:versionCode="1" | |
5 | android:versionName="1.0" > | |
6 | ||
7 | <uses-permission android:name="android.permission.INTERNET" > | |
8 | </uses-permission> | |
9 | <uses-permission android:name="android.permission.STATUS_BAR" > | |
10 | </uses-permission> | |
11 | <uses-permission android:name="android.permission.VIBRATE" > | |
12 | </uses-permission> | |
13 | ||
14 | <application | |
113e5e9f | 15 | android:icon="@drawable/dumload" |
42aa7dfd | 16 | android:label="Dumload" > |
17 | <activity | |
18 | android:name=".Dumload" | |
19 | android:label="@string/app_name" > | |
0763e16d | 20 | <intent-filter> |
42aa7dfd | 21 | <category android:name="android.intent.category.DEFAULT" /> |
0763e16d | 22 | |
42aa7dfd | 23 | <action android:name="android.intent.action.SEND" > |
24 | </action> | |
0763e16d | 25 | |
42aa7dfd | 26 | <data android:mimeType="image/jpeg" > |
27 | </data> | |
28 | </intent-filter> | |
29 | </activity> | |
30 | ||
31 | <service android:name=".Uploader" > | |
32 | <intent-filter> | |
33 | <action android:name="com.joshuawise.dumload.Uploader" /> | |
34 | </intent-filter> | |
35 | </service> | |
0763e16d | 36 | |
42aa7dfd | 37 | <activity android:name=".NotifSlave" > |
38 | <intent-filter> | |
39 | <action android:name="com.joshuawise.dumload.NotifSlave" /> | |
40 | </intent-filter> | |
41 | </activity> | |
42 | <activity android:name=".Preferences" > | |
43 | <intent-filter> | |
44 | <category android:name="android.intent.category.LAUNCHER" /> | |
0763e16d | 45 | |
42aa7dfd | 46 | <action android:name="android.intent.action.MAIN" /> |
47 | </intent-filter> | |
48 | </activity> | |
49 | </application> | |
0763e16d | 50 | |
42aa7dfd | 51 | </manifest> |