1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kodiのaddonを作る(その3)

Posted at

いつからだったのか、addonを導入するには
/Users/hoge/Library/Application Support/Kodi/addons
に直に置くのでは認識されなくなった。

zipファイルからインストール
というメニューから行う。

これでインストール可能なファイルが問題だった。

metadata.hoge.nantoka
というaddonを作成する場合

metadata.hoge.nantokaフォルダ内に
addon.xml
hoge.xml
icon.png
を入れておく。

これをmacOSのFinderで圧縮して作成するとダメ。
command lineで

$ zip -r -0 metadata.hoge.nantoka.zip metadata.hoge.nantoka
として metadata.hoge.nantoka.zipを作成する。
-r と -0
のオプションが必須のようだ。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?