Hello,
I see frequent user error reports on those 2 issues:
java.lang.UnsatisfiedLinkError: Couldn't load mono: findLibrary returned null
at java.lang.Runtime.loadLibrary(Runtime.java:429)
at java.lang.System.loadLibrary(System.java:554)
at com.unity3d.player.UnityPlayer.d(Unknown Source)
at com.unity3d.player.UnityPlayer.<init>(Unknown Source)
at com.unity3d.player.UnityPlayerActivity.onCreate(Unknown Source)
at com.xyz.xyzproduct.xyzproducthere.onCreate(Xyzproducthere.java:80)
Line 80 in onCreate refers to the super call and is the first line in my onCreate method of the Java plugin Activity.
super.onCreate(savedInstanceState);
Also:
java.lang.IllegalStateException: play() called on uninitialized AudioTrack.
at android.media.AudioTrack.play(AudioTrack.java:824)
at org.fmod.FMODAudioDevice.run(Unknown Source)
Is there anything I could do about it or do I have to wait for an update of Unity to fix this?
Thanks
Ben