Web App development using Angular

I have created an Angular web application and loaded it into WebOS by adding the scripts built by Angular into the index.html file in a basic WebOS setup. I achieved this using a VS Code extension. The live server is working fine. While running it in the simulator by launching it, everything works fine. However, when the IPK is created and installed on the TV, it doesn’t work. I used the app root tag in HTML to run this in the simulator and live server. When I create a basic app to print “Hello, World” and run it on the TV, it works. Can I get the changes to be made to achieve this on the TV?

Hi @Athul_Babu , welcome to the Forum!

Unfortunately, this forum is only for webOS Open Source Edition.
For webOS TV, please visit the TV Forum.

Thanks!

[quote="Athul_Babu, post:1, topic:2501, full:true"]
I have created an Angular web application and loaded it into WebOS by adding the scripts built by Angular into the index.html file in a basic WebOS setup. I achieved this using a VS Code extension. The live server is working fine. While running it in the simulator by launching it, everything works fine. However, when the IPK is created and installed on the TV, it doesn’t work. I used the app root tag in HTML to run this in the simulator and live server. When I create a basic app to print “Hello, World” and run it on the TV, it works. Can I get the changes to be made to achieve this on the TV?
[/quote] To fix the issue:

  1. Set Base Href: Ensure <base href="/"> is set in index.html for correct path resolution.
  2. Absolute Paths: Use absolute paths for assets and scripts in your Angular app.
  3. Check WebOS Compatibility: Ensure your Angular app is compatible with WebOS's browser (e.g., use polyfills).
  4. Test on TV: Test the app directly on the TV to identify potential issues not caught by the simulator.

These steps should help your Angular app work correctly on a WebOS TV.