-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroidManifest.xml
25 lines (23 loc) · 1.43 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
<?xml version="1.0" ?><manifest android:versionCode="1" android:versionName="0.1-r125" package="sk.gista.android.maps" xmlns:android="http://schemas.android.com/apk/res/android">
<application android:debuggable="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation" android:label="@string/app_name" android:name=".Gisplan" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:label="@string/settings_label" android:name="sk.gista.android.settings.Settings">
</activity>
<activity android:configChanges="orientation" android:label="@string/app_name" android:name="sk.gista.android.maps.MapActivity" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<activity android:label="@string/about_title" android:name="sk.gista.android.app.About" android:theme="@android:style/Theme.Dialog">
</activity>
<activity android:name="sk.gista.android.app.Info" android:theme="@android:style/Theme.Dialog"/>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-sdk android:minSdkVersion="7"/>
</manifest>