Add Kodi Android conf

This commit is contained in:
Alexandre CATTEAU 2022-12-30 12:23:41 +01:00
parent beffca972c
commit 95ffe58975
2 changed files with 12 additions and 1 deletions

View File

@ -4,5 +4,11 @@ This repository contains a small setup to automate the delivery of our root cert
### Files ### Files
* `kto.crt` is our current only root certificate * `kto.crt` is our current only root certificate
* `advancedsettings.xml` is a Kodi user configuration file (see []())
#### Installation #### Installation
* `install.sh` copies the certificates to the right location and then reloads the system's certificates * `install.sh` copies the certificates to the right location and then reloads the system's certificates (Linux only)
### Kodi Android
Since Android does not allow to import our root certificate, we have to import directly in Kodi:
1. find Kodi app user data directory (usually `/sdcard/Android/data/org.xbmc.kodi`)
2. copy `advancedsettings.xml` and `kto.crt` (renamed to `cacert.pem`) to `$KODI/files/.kodi/userdata/`

5
advancedsettings.xml Executable file
View File

@ -0,0 +1,5 @@
<advancedsettings version="1.0">
<network>
<catrustfile>special://masterprofile/cacert.pem</catrustfile>
</network>
</advancedsettings>