This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 157
Installing .apk's
drinfernoo edited this page Apr 12, 2020
·
14 revisions
At this time, installing APK's on Kodi 18 is broken. This section will not function correctly on versions after Kodi 17.6 Krypton.
This file is used to provide the wizard the necessary information to install external .apk
files, and is typically named apks.txt
. The wizard already comes with built in scrapers for the latest Kodi (stable and unstable) builds. The APK Installer menu is only shown if running on an Android device or when in developer mode.
Example apks.txt
:
name="Example APK"
section="no"
url="http://your.apk.url/"
icon="http://"
fanart="http://"
adult="no"
description="A short description of the APK."
name="Example Section"
section="yes"
url="http://your.apk.file/"
icon="http://"
fanart="http://"
adult="no"
description="An example section."
Field | Description |
---|---|
name | The name that will show in the wizard |
section | Whether this should open a separate section. Must be "yes" or "no" . |
url | A URL that points to an .apk file. If section="yes" , then this should be a url to another apk.txt file. |
icon | A URL to an icon to be shown in Kodi. This must be a 512x512 pixel .png file. Use "http://" for the default icon. |
fanart | A URL to the fanart to be shown in Kodi. This must be a 512x512 pixel .png file. Use "http://" for the default fanart. |
adult | Whether this '.apk' contains adult content. Must be "yes" or "no"
|
description | A short description of the .apk
|