FAQ

HTML5 アプリが USB メモリー経由で起動しない

以下の例のように、manifest.jsonファイルの最後の項目がカンマ「,」で終わっていると、 動きません。最後のカンマ「,」は削除してください 。

{
   "name": {
      "default" : "en_US",
      "en_US" : "Slideshow Signage"
   },
   "uuid" : "com.sony.tv.demo.slideshow",
   "description": {
      "default" : "en_US",
      "en_US" : "This is test application"
   },
   "version" : "1.0",
   "manifest_version" : "1.0",
   "app" : {
       "launch" : {
           "local_path" : "file://localhost/doc/shipin_new/index.htm"
       }
   },
   "splash" : "splash.png",
   "icons" : {
       "128x128" : "icon.png"
   },
   "minimum_web_platform_version" : "1.0",
}

誤: “minimum_web_platform_version” : “1.0”,
正: “minimum_web_platform_version” : “1.0”

この動作はJSON仕様の観点からは正しい挙動です。