Ok guys... Thanks for the support.
I made some effort.. Uninstalled KODI. Installed it again. Did exactly what you told me.
Good thing is: When I play a video file with "Play with" and I chose "wrapper". The external player works.... One step further. Thanks.
BUT: Kodi is still the default player.
The playercorefactory.xml is exact as yours.
Any ideas ?
The problem is that wrapper isn't correctly installed to Kodi.
Make sure Kodi is not running, then run wrapper app and 'enable Kodi player'. Exit wrapper app. Now run wrapper app again and 'enable wrapper player'.
To check that wrapper is installed correctly:
Method 1 (using Q5/Q10 Pro)
- Install a file manager app like 'total commander'.
- Navigate to root/sdcard/Android/data/org.xbmc.kodi/files/.kodi/userdata/
- Edit playercorefactory.xml (total commander has a built in file editor)
Method 2 (using a PC)
- Enable Samba sharing on Q5/Q10 Pro (Settings - More - SAMBA Service - Enable)
- Navigate to Q5/Q10 Pro on a PC and then to /sdcard/Android/data/org.xbmc.kodi/files/.kodi/userdata/
- Edit playercorefactory.xml using PC file editor
playercorefactory.xml should look like this:
<playercorefactory>
<players>
<!-- himedia player for video -->
<player name="Wrapper" type="ExternalPlayer" audio="false" video="true">
<filename>com.himedia.xbmcwrapper</filename>
<hidexbmc>true</hidexbmc>
<playcountminimumtime>120</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<!--network protocol rules-->
<rule protocols="nfs|http|rtmp|sop" player="VideoPlayer" /> <!--all nfs-->
<!--internet streams rules-->
<rule protocols="pvr" player="VideoPlayer" /> <!--all pvr-->
<rule internetstream="true" player="VideoPlayer" /> <!--all streams-->
<!--video audio channels rules-->
<rule video="true" audiochannels="6" player="Wrapper" /> <!--5.1 audio-->
<rule video="true" audiochannels="8" player="Wrapper" /> <!-- 7.1 audio-->
<!--video resolution rules-->
<rule video="true" videoresolution="720" player="Wrapper" />
<rule video="true" videoresolution="1080" player="Wrapper" />
<rule video="true" videoresolution="2160" player="Wrapper" /> <!--4K-->
<!--audio / music rules-->
<rule audio="true" player="PAplayer"/> <!--all audio to kodi internal music player-->
<!--specific codecs rules-->
<rule video="true" audiocodec="truehd|true-hd|dtshd|dts-hd|dts" player="Wrapper"/>
<rule filename=".*.3D.*|.*.3D.iso|3D.*" player="Wrapper"/>
<rule filetypes="iso|bdmv|mpls|m2ts" player="Wrapper"/>
<rule video="true" player="Wrapper"/>
</rules>
</playercorefactory>