-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
48 lines (39 loc) · 1.93 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.allmydata.tahoelafs"
android:versionCode="2"
android:versionName="0.1">
<application android:icon="@drawable/logo_tahoe" android:label="@string/app_name">
<activity android:name=".Main">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Send"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<activity
android:name=".Browser"
android:label="@string/app_name" />
<activity
android:name=".Prefs"
android:label="@string/app_name" />
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.INTERNET" />
<meta-data android:name="org.openintents.metadata.COMMENTS" android:value="@string/about_comments" />
<meta-data android:name="org.openintents.metadata.COPYRIGHT" android:value="@string/about_copyright" />
<meta-data android:name="org.openintents.metadata.AUTHORS" android:resource="@array/about_authors" />
<meta-data android:name="org.openintents.metadata.WEBSITE_LABEL" android:value="@string/about_website_label" />
<meta-data android:name="org.openintents.metadata.WEBSITE_URL" android:value="@string/about_website_url" />
<meta-data android:name="org.openintents.metadata.LICENSE" android:resource="@raw/license_short" />
<meta-data android:name="org.openintents.metadata.EMAIL" android:value="@string/about_email" />
</manifest>