aboutsummaryrefslogtreecommitdiffstats
path: root/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'main/AndroidManifest.xml')
-rw-r--r--main/AndroidManifest.xml47
1 files changed, 46 insertions, 1 deletions
diff --git a/main/AndroidManifest.xml b/main/AndroidManifest.xml
index dfc1e43..8435d89 100644
--- a/main/AndroidManifest.xml
+++ b/main/AndroidManifest.xml
@@ -51,10 +51,14 @@
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIsvD_aUSDMwWOf9NkwwxZ4kJJI_AG2EaxjSu2jw" />
+ <meta-data
+ android:name="com.google.android.gms.version"
+ android:value="@integer/google_play_services_version" />
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
+ android:exported="true"
android:label="@string/app_name"
android:theme="@style/cgeo_main"
android:windowSoftInputMode="stateHidden" >
@@ -68,6 +72,7 @@
<activity
android:name=".SearchActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
+ android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTop"
android:parentActivityName="cgeo.geocaching.MainActivity"
@@ -136,6 +141,7 @@
<activity
android:name=".NavigateAnyPointActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
+ android:exported="true"
android:label="@string/search_destination"
android:parentActivityName="cgeo.geocaching.MainActivity"
android:windowSoftInputMode="stateHidden" >
@@ -166,6 +172,7 @@
<activity
android:name=".CacheListActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
+ android:exported="true"
android:label="@string/app_name"
android:parentActivityName="cgeo.geocaching.MainActivity" >
<meta-data
@@ -207,6 +214,11 @@
</intent-filter>
</activity>
<activity
+ android:exported="true"
+ android:name=".maps.MapActivity"
+ android:label="@string/map_map" >
+ </activity>
+ <activity
android:name=".maps.google.v1.GoogleMapActivity"
android:label="@string/map_map" >
</activity>
@@ -322,6 +334,39 @@
android:pathPrefix="/viewcache.php"
android:scheme="http" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="opencaching.fr"
+ android:pathPrefix="/OC"
+ android:scheme="http" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="www.opencaching.fr"
+ android:pathPrefix="/OC"
+ android:scheme="http" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="www.opencaching.fr"
+ android:pathPrefix="/viewcache.php"
+ android:scheme="http" />
+ </intent-filter>
</activity>
<activity
android:name="cgeo.geocaching.TrackableActivity"
@@ -512,4 +557,4 @@
android:authorities="cgeo.geocaching.search.SuggestionProvider" />
</application>
-</manifest> \ No newline at end of file
+</manifest>