Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AndroidManifest.xml « MapsWithMeLite.Samsung « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d8c75a77ab93da6832cca5d631dc4c950ffa6aa (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.mapswithme.maps.samsung"
      android:versionCode="221"
      android:versionName="2.2.1"
      android:installLocation="preferExternal"
      android:sharedUserId="com.mapswithme"
      android:sharedUserLabel="@string/shared_user_label">
    <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
    <uses-feature android:glEsVersion="0x00020000" android:required="true" />
    <uses-feature android:required="true" android:name="android.hardware.touchscreen" />
    <uses-feature android:required="false" android:name="android.hardware.wifi" />
    <uses-feature android:required="false" android:name="android.hardware.location" />
    <uses-feature android:required="false" android:name="android.hardware.location.network" />
    <uses-feature android:required="false" android:name="android.hardware.location.gps" />

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <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"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    
    <supports-screens android:largeScreens="true" android:xlargeScreens="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|screenLayout|screenSize">
            <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"
                  android:configChanges="orientation|screenLayout|screenSize">
        </activity>
        <activity android:name="com.mapswithme.maps.DownloadUI"
                  android:label="@string/download_maps"
                  android:screenOrientation="behind"
                  android:noHistory="true"
                  android:configChanges="orientation|screenLayout|screenSize">
        </activity>
        <activity android:name="com.mapswithme.maps.SearchActivity"
                  android:label="@string/search_map"
                  android:screenOrientation="behind"
                  android:noHistory="true"
                  android:configChanges="orientation|screenLayout|screenSize">
        </activity>
        <activity android:name="com.mapswithme.maps.settings.SettingsActivity"
                  android:label="@string/settings"
                  android:screenOrientation="behind"
                  android:configChanges="orientation|screenLayout|screenSize">
        </activity>
        <activity android:name="com.mapswithme.maps.settings.StoragePathActivity"
                  android:label="@string/maps_storage"
                  android:screenOrientation="behind"
                  android:configChanges="orientation|screenLayout|screenSize">
        </activity>
    </application>
</manifest>