Hi
I followed all the steps detailed on the unity tizen plugin page, and as expected there is no example code and it won’t work.
Creating the plugin inside tizen studio took me less than an hour… trying to get it to work with Unity has been impossible.
My error:
DllNotFoundException: com.echoboom.videoplayer
at (wrapper managed-to-native) TizenVideoPlayer:Play (string)
at TizenVideoPlayer.PlayVideo (System.String path) [0x00000] in :0
at VideoPlayerScript.Start () [0x00000] in :0
No matter what I try I get that dll not found exception. The file is called libcom.echoboom.videoplayer.so and it’s on Plugins/Tizen/Libs checked as a tizen plugin
The c# is a piece of cake:
[DllImport(“com.echoboom.videoplayer”)]
private static extern void Play(string path);
In theory, that should work, no “lib” and no “.so” on the file name should be placed on DllImport. Still… DllNotFoundException, what gives?
Anyone got any plugin done and working? what was your trick?