Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2017-06-01 12:00:20 +02:00
commit 85b94fe763
3 changed files with 13 additions and 1 deletions

View file

@ -12,6 +12,11 @@
tools:replace="android:process" tools:replace="android:process"
android:process="net.osmand"/> android:process="net.osmand"/>
<service
android:name="net.osmand.aidl.OsmandAidlService"
tools:replace="android:process"
android:process="net.osmand"/>
<provider <provider
android:name="android.support.v4.content.FileProvider" android:name="android.support.v4.content.FileProvider"
tools:replace="android:authorities" tools:replace="android:authorities"

View file

@ -9,6 +9,10 @@
android:name="net.osmand.plus.NavigationService" android:name="net.osmand.plus.NavigationService"
android:process="net.osmand.dev" android:process="net.osmand.dev"
tools:replace="android:process"/> tools:replace="android:process"/>
<service
android:name="net.osmand.aidl.OsmandAidlService"
tools:replace="android:process"
android:process="net.osmand.dev"/>
<provider <provider
android:name="android.support.v4.content.FileProvider" android:name="android.support.v4.content.FileProvider"
android:authorities="net.osmand.dev.fileprovider" android:authorities="net.osmand.dev.fileprovider"

View file

@ -714,7 +714,10 @@
</intent-filter> </intent-filter>
</service> </service>
<service android:name="net.osmand.aidl.OsmandAidlService" android:exported="true" > <service
android:process="net.osmand.plus"
android:name="net.osmand.aidl.OsmandAidlService"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="net.osmand.aidl.OsmandAidlService"/> <action android:name="net.osmand.aidl.OsmandAidlService"/>
<category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.DEFAULT"/>