Reputation: 1
I have an app written in preact which I would like to test, but I am unable to get it working on the Tizen tv emulator.
After some research, I found a few instances of people creating apps for Tizen with react but never actually using preact.
Has anyone experience with getting preact apps to work on the Tizen platform?
thanks in advance :)
Upvotes: 0
Views: 199
Reputation: 16756
There's nothing in preact
itself that might cause the app to not work on Tizen. In fact it should work much better then a react
version. I've not only seen, but have written apps in React for Tizen (even legacy ones). The real reason of the failure might be that the app is not transpiled appropriately for the Tizen platform. You should be targeting at least ES2015. Also be sure to include pollyfills if you are using fancy data structures, like Set
for example.
It would help if you could post the error that you receive in Tizen emulator. You can run the app in debug mode and actually see all suspicious output in the console of the detached WebKit devtools that debug mode auto-opens for you.
Upvotes: 2