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:
authorDmitry Yunitsky <yunik@mapswithme.com>2014-09-08 16:43:59 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:26:26 +0300
commitffba5e49a2948cd2a3a87e56e83c213ec1003306 (patch)
tree3edfb74a4b1c763e2307c9f366edc21cea38ce57 /android/flavors
parent8ecd300aba8ea0e6bd75fba6f235543e083557a6 (diff)
Reformatting.
Diffstat (limited to 'android/flavors')
-rw-r--r--android/flavors/pro/AndroidManifest.xml59
1 files changed, 35 insertions, 24 deletions
diff --git a/android/flavors/pro/AndroidManifest.xml b/android/flavors/pro/AndroidManifest.xml
index cbbba3527d..679683d63b 100644
--- a/android/flavors/pro/AndroidManifest.xml
+++ b/android/flavors/pro/AndroidManifest.xml
@@ -1,31 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
- <application>
- <activity android:name="com.mapswithme.maps.DownloadResourcesActivity" >
- <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.kmz" />
- </intent-filter>
+ <application>
+ <activity android:name="com.mapswithme.maps.DownloadResourcesActivity">
- <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" />
- </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.kmz"/>
+ </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <data android:host="*" 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="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:pathPattern=".*\\.kml" android:scheme="file" />
- </intent-filter>
- </activity>
- </application>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ <data
+ android:host="*"
+ 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:pathPattern=".*\\.kml"
+ android:scheme="file"/>
+ </intent-filter>
+ </activity>
+ </application>
</manifest> \ No newline at end of file