]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" encoding="utf-8"?> | |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 | package="com.joshuawise.dumload" | |
4 | android:versionCode="1" | |
5 | android:versionName="1.0"> | |
6 | <application android:icon="@drawable/icon" android:label="Dumload"> | |
7 | <activity android:name=".Dumload" | |
8 | android:label="@string/app_name"> | |
9 | <intent-filter> | |
10 | <action android:name="android.intent.action.MAIN" /> | |
11 | <category android:name="android.intent.category.LAUNCHER" /> | |
12 | ||
13 | ||
14 | </intent-filter> | |
15 | <intent-filter><action android:name="android.intent.action.SEND"></action> | |
16 | <category android:name="android.intent.category.DEFAULT" /> | |
17 | <data android:mimeType="image/jpeg"></data> | |
18 | </intent-filter> | |
19 | </activity> | |
20 | ||
21 | <service android:name=".Uploader"><intent-filter><action android:name="com.joshuawise.dumload.Uploader" /></intent-filter></service> | |
22 | <activity android:name=".NotifSlave"><intent-filter><action android:name="com.joshuawise.dumload.NotifSlave" /></intent-filter></activity> | |
23 | </application> | |
24 | ||
25 | ||
26 | ||
27 | <uses-permission android:name="android.permission.INTERNET"></uses-permission> | |
28 | <uses-permission android:name="android.permission.STATUS_BAR"></uses-permission> | |
29 | <uses-permission android:name="android.permission.VIBRATE"></uses-permission> | |
30 | </manifest> |