As we all know, when developing applications for the tvOS platform, you can use a JS framework called TVMLJS. In particular, the Xcode development environment provides an opportunity to create a demonstration project based on this framework. However, in order to run this application, we need to deploy a server that will deliver data for the application (in fact, the application should simply display this information). I know that Apple promotes just such an application development concept. But if I do not have the opportunity to deploy such a server, then how can I develop applications with TVMLJS? Please tell me how to do this without a server (and without using TVMLKit).

  • how is it not possible? and local does not work? - Max Mikheyenko
  • @MaxMikheyenko Perhaps I didn’t accurately express my point. In Xcode, when creating a project, I specified "tvOS" -> "TVML application". After launching such an application, I see the message "Error launching application" and in the code I see that the application is trying to get data on localhost: 9001 . - Roman Podymov
  • Internet is littered with examples of such servers - download and run locally. and you will have a server on localhost: 9001 - Max Mikheyenko
  • @MaxMikheyenko This is not the problem. I want to publish such a project in the store, but clients will not be able to open anything on localhost: 9001 (the local launch of the application does not interest me). Therefore, I ask whether it is possible to bypass this connection somehow in order to take data? Is it possible to read them just from a file for example? - Roman Podymov
  • one

0