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:
authorАлександр Зацепин <az@mapswithme.com>2017-09-26 21:06:34 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-09-27 12:50:28 +0300
commit208fe1926a5c444bc07e232d8e6eec18875a526a (patch)
treec13a73bbad1df91c07a84567b8d225e31fe6c27c /android/AndroidManifest.xml
parentcf324e4bbba41daf816942b6a2a7fa6e6832fee6 (diff)
[android] Implemented writing UGC review UI
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index c74cb2e697..88fbde206b 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -364,7 +364,15 @@
<activity android:name="com.mopub.common.MoPubBrowser" android:configChanges="keyboardHidden|orientation|screenSize"/>
- <activity android:name=".ugc.UGCEditorActivity" android:configChanges="keyboardHidden|orientation|screenSize"/>
+ <activity
+ android:name=".ugc.UGCEditorActivity"
+ android:configChanges="keyboardHidden|orientation|screenSize"
+ android:parentActivityName=".MwmActivity">
+ <!-- The meta-data element is needed for versions lower than 4.1 -->
+ <meta-data
+ android:name="android.support.PARENT_ACTIVITY"
+ android:value="com.mapswithme.maps.MwmActivity"/>
+ </activity>
<receiver
android:name="com.mapswithme.maps.background.ConnectivityChangedReceiver"