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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Romanov <rromanov@65gb.net>2017-03-30 11:03:02 +0300
committerRoman Romanov <rromanov@65gb.net>2017-04-25 13:52:06 +0300
commit51410622d93c03f5ad7fca39eb7e788b643d0ff6 (patch)
tree03247ed29dcdbc6a887c1302066cd6334eeacc5c /android/AndroidManifest.xml
parent3547acb16c60d24008a0d081813a1c45e1434576 (diff)
[android] Added splash screen.
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml48
1 files changed, 26 insertions, 22 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index e9ebc34f0b..a5611e315b 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -82,9 +82,9 @@
android:value="ERROR" /-->
<activity
- android:name="com.mapswithme.maps.DownloadResourcesActivity"
- android:configChanges="orientation|screenLayout|screenSize"
- android:label="@string/app_name">
+ android:name="com.mapswithme.maps.SplashActivity"
+ android:configChanges="orientation|screenLayout|screenSize"
+ android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
@@ -117,8 +117,8 @@
<category android:name="android.intent.category.BROWSABLE"/>
<data
- android:host="ge0.me"
- android:scheme="http"/>
+ android:host="ge0.me"
+ android:scheme="http"/>
</intent-filter>
<intent-filter>
@@ -128,11 +128,11 @@
<category android:name="android.intent.category.BROWSABLE"/>
<data
- android:host="maps.google.com"
- android:scheme="https"/>
+ android:host="maps.google.com"
+ android:scheme="https"/>
<data
- android:host="maps.google.com"
- android:scheme="http"/>
+ android:host="maps.google.com"
+ android:scheme="http"/>
</intent-filter>
<!-- API CALL -->
@@ -145,41 +145,45 @@
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data
- android:host="*"
- android:mimeType="application/vnd.google-earth.kmz"/>
+ android:host="*"
+ android:mimeType="application/vnd.google-earth.kmz"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data
- android:host="*"
- android:mimeType="application/vnd.google-earth.kml+xml"/>
+ android:host="*"
+ android:mimeType="application/vnd.google-earth.kml+xml"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data
- android:host="*"
- android:mimeType="*/*"
- android:pathPattern=".*\\.kmz"
- android:scheme="file"/>
+ android:host="*"
+ android:mimeType="*/*"
+ android:pathPattern=".*\\.kmz"
+ android:scheme="file"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data
- android:host="*"
- android:mimeType="*/*"
- android:pathPattern=".*\\.kml"
- android:scheme="file"/>
+ android:host="*"
+ android:mimeType="*/*"
+ android:pathPattern=".*\\.kml"
+ android:scheme="file"/>
</intent-filter>
-
</activity>
<activity
+ android:name="com.mapswithme.maps.DownloadResourcesActivity"
+ android:configChanges="orientation|screenLayout|screenSize"
+ android:label="@string/app_name"/>
+
+ <activity
android:name="com.mapswithme.maps.MwmActivity"
android:launchMode="singleTask"
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"/>