[android] Cleaned up library manifest

This commit is contained in:
Alex Zolotarev 2012-08-13 20:49:27 +03:00 committed by Alex Zolotarev
parent 65bbbcbb1d
commit dba5ac9434

View file

@ -1,11 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mapswithme.maps"
android:versionCode="211"
android:versionName="2.1.1"
android:installLocation="preferExternal"
android:sharedUserId="com.mapswithme"
android:sharedUserLabel="@string/app_name">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mapswithme.maps">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch" />
@ -24,36 +18,6 @@
<supports-screen android:largeScreens="true"/>
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name="com.mapswithme.maps.MWMApplication">
<activity android:name="com.mapswithme.maps.DownloadResourcesActivity"
android:label="@string/app_name"
android:screenOrientation="behind"
android:theme="@style/MWMNoTitle"
android:configChanges="orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.mapswithme.maps.MWMActivity"
android:label="@string/app_name"
android:screenOrientation="behind"
android:theme="@style/MWMNoTitle">
</activity>
<activity android:name="com.mapswithme.maps.DownloadUI"
android:label="@string/download_maps"
android:screenOrientation="behind"
android:noHistory="true"
android:configChanges="orientation">
</activity>
<activity android:name="com.mapswithme.maps.SearchActivity"
android:label="@string/search_map"
android:screenOrientation="behind"
android:noHistory="true"
android:configChanges="orientation">
</activity>
</application>
<application />
</manifest>