Hello!
I've been trying to play around with some homemade apps for my new Samsung Galaxy Watch, but I've run into some run-time problems.
- I am unable to instantiate a Timer from Tizen.NUI.
Whenever I try to call the Timer-constructor an exception is thrown (segmentation fault). I cannot get any futher information from the debugger, and cannot point to any particular code throwing the exception, other than my instantiation:
using Tizen.NUI; public class MyClass { Timer myTimer; public MyClass { myTimer = new Timer(1000); // <--- Exception is thrown here. } }
Note that this problem is not present when I try to do the project in Tizen 5.0. Here the Timer-instance works perfectly, but as my own watch doesn't run this version of Tizen, it is not of much help to me.
Has anyone else tried playing around with the Tizen.NUI.Timer instance in Tizen 4.0? Have you managed to instantiate an object of that particular class? Please let me know if you have, or if you are able to test this one thing for me.
Regards
-Malte