Skip to content

Command-line tools to install packaged and hosted apps using the KaiOS remote debugging protocols.

Notifications You must be signed in to change notification settings

sunsetsonwheels/make-kaios-install

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Make KaiOS Install

Command-line tools to install packaged and hosted apps using the KaiOS remote debugging protocols.

How it works

  1. Makefile: (Packaged app only) Package all files from folder into application.zip
  2. Makefile: Move important files to phone via adb
  3. Makefile: Forward remote debugging port (6000) from device to computer (via adb)
  4. Makefile: Run install.js via xpcshell
  5. install.js: Remotely install app from folder using the Webapp Actor.

The script infers the app id, which is required for the install script, from the last folder in the app path. Optionally it can be provided in the command line via ID=. The id should to be lower case.

Dependencies

  1. make installed on your system.
  • On Mac: run xcode-select --install. Then follow the on-screen prompts.

  • On Linux: Should be preinstalled. If not, follow your distribution's instructions.

  1. Extract the following packages to ~/bin.

If you choose a different path, change the variables in Makefile):

XPCSHELL = ~/bin/xulrunner-sdk/bin/xpcshell
ADB = ~/bin/android-sdk/platform-tools/adb

XULRunner (contains XPCShell command)

Download XULRunner from Mozilla.

Android SDK (contains ADB command)

Download adb from XDADevelopers.

Enable Debugging on Device

While on the home screen, type *#*#33284#*#* to enable debug mode. A bug icon should appear on the status bar.

Usage

Packaged

Your app should at least have an index.html and a manifest.webapp with the correct launch_path. App type can be web, privileged or certified.

From folder:

make FOLDER=/some/folder packaged install

From another folder, setting app id (recommended if the folder name is not useful as unique app id):

make FOLDER=/some/folder ID=some-id packaged install

Hosted

Your folder only needs to contain manifest.webapp and a metadata.json. In most cases you only need to adapt origin in metadata.json and launch_path in the manifest.

Install hosted app from folder my-hosted:

make FOLDER=/some/app hosted install

Thanks

To Fabrice for install.js, its remote debugging counterpart and for always fixing broken things.

About

Command-line tools to install packaged and hosted apps using the KaiOS remote debugging protocols.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 56.8%
  • Makefile 43.2%