This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
46 lines (38 loc) · 2.53 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.exclaimindustries.geohashdroid" android:versionCode="636" android:versionName="0.7.3">
<uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:description="@string/app_description" android:theme="@style/Theme.GeohashDroid" android:allowClearUserData="true" android:debuggable="true">
<uses-library android:name="com.google.android.maps" />
<activity android:label="@string/app_name" android:name=".GeohashDroid">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="MainMap" android:label="@string/map_activity_title"
android:theme="@style/Theme.NoBackground.NoTitleBar"></activity>
<activity android:name="PreferenceEditScreen" android:label="@string/app_name"
android:theme="@android:style/Theme"></activity>
<activity android:name="WikiMessageEditor" android:label="@string/wiki_editor_activity_title"></activity>
<activity android:name="WikiPictureEditor" android:label="@string/wiki_picture_activity_title"></activity>
<activity android:name="GraticuleMap" android:label="@string/gratmap_activity_title"
android:theme="@style/Theme.NoBackground">
<intent-filter>
<action android:name="net.exclaimindustries.geohashdroid.PICK_GRATICULE"></action>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<activity android:name="DetailedInfoScreen" android:label="@string/detail_activity_title"></activity>
<activity android:name="StockGrabber" android:theme="@android:style/Theme.Dialog"
android:label="@string/standby_title" />
<activity android:label="@string/standby_title" android:name="LocationGrabber"
android:theme="@android:style/Theme.Dialog"></activity>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<supports-screens android:smallScreens="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:anyDensity="true"></supports-screens>
</manifest>