]> Joshua Wise's Git repositories - dumload.git/blame_incremental - AndroidManifest.xml
A few icon tweaks
[dumload.git] / AndroidManifest.xml
... / ...
CommitLineData
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
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
15 android:icon="@drawable/dumload"
16 android:label="Dumload" >
17 <activity
18 android:name=".Dumload"
19 android:label="@string/app_name" >
20 <intent-filter>
21 <category android:name="android.intent.category.DEFAULT" />
22
23 <action android:name="android.intent.action.SEND" >
24 </action>
25
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>
36
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" />
45
46 <action android:name="android.intent.action.MAIN" />
47 </intent-filter>
48 </activity>
49 </application>
50
51</manifest>
This page took 0.025663 seconds and 5 git commands to generate.