2016-05-07 431 views
0

我可以使用ares工具在webOS電視上安裝webOS應用程序,而不會出現任何問題。如何在WebOS智能電視上安裝LG NetCast應用程序

LG告訴我,webOS設備也支持兼容模式下的NetCast和智能電視聯盟應用程序,但是我無法弄清楚如何在兼容模式下在網絡設備上安裝NetCast或STA應用程序。有沒有人知道它?

回答

1

您需要打包戰神工具,您的應用程序包含一個名爲appinfo.json文件

該文件需要包含以下行(至少對我的情況);

"id": "app package name", 
"icon": "icon.png", 
"title": "App Title", 
"vendor": "App Vendor", 
"testMode": "devTest", 
"trustLevel": "netcast", //this line is important 
"resolution": "1280x720", 
"uiRevision": 2, 
"largeIcon": "largeIcon.png", 
"type": "web", 
"main": "index.html", 
"version": "0.0.1" 

則可以使用命令ares-package <folder-path-to-lgApp-contains-above-file>

那麼這將確保你有一個IPK就像一個webOS的。

相關問題