-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
41 lines (40 loc) · 2 KB
/
AndroidManifest.xml
File metadata and controls
41 lines (40 loc) · 2 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jeremyhaberman.playgrounds"
android:versionCode="4"
android:versionName="0.9.0">
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/launcher"
android:label="@string/app_name"
>
<activity android:name="Playgrounds"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="AddPlayground"
android:label="@string/add_playground_title"
android:screenOrientation="portrait" />
<activity android:name="com.jeremyhaberman.playgrounds.AddCurrentLocation"
android:label="@string/add_current_location_title"
android:screenOrientation="portrait" />
<activity android:name="com.jeremyhaberman.playgrounds.AddByAddress"
android:label="@string/add_by_address_title"
android:screenOrientation="portrait" />
<activity android:name="com.jeremyhaberman.playgrounds.Settings"
android:label="@string/settings_title"
android:screenOrientation="portrait" />
<activity android:name="com.jeremyhaberman.playgrounds.About"
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog"
android:screenOrientation="portrait" />
<uses-library android:name="com.google.android.maps" />
</application>
</manifest>