Fix aidl on free version

This commit is contained in:
Alexey Kulish 2017-06-01 12:59:36 +03:00
parent e176b9ce7c
commit fff2abb0dd
3 changed files with 13 additions and 1 deletions

View file

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

View file

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

View file

@ -714,7 +714,10 @@
</intent-filter>
</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>
<action android:name="net.osmand.aidl.OsmandAidlService"/>
<category android:name="android.intent.category.DEFAULT"/>