Craft/Android

From KDE Community Wiki

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This page has moved to https://develop.kde.org/docs/packaging/android/building_applications/ for a while now, and these instructions are incredibly out of date.

Please use the discussion section of this page to voice your opinion on this.

Preparations

Get the KDE Android docker image:

 docker pull kdeorg/android-qt515

Install Craft

For the initial setup, run the following command:

 mkdir -p <your persistent craft path>
 docker run -ti --rm -v <your persistent craft path>:/home/user/CraftRoot kdeorg/android-qt515 bash
 python3 -c "$(curl https://raw.githubusercontent.com/KDE/craft/master/setup/CraftBootstrap.py)" --prefix ~/CraftRoot
 source ~/CraftRoot/craft/craftenv.sh

This will ask you for which architecture you want to build and then set up Craft accordingly. Replace <your persistent craft path> with an empty local folder that will hold all the source code, build results and final packages produces by Craft.

Using Craft

First you need to enter the docker container and set up the craft environment:

 docker run -ti --rm -v  <your persistent craft path>:/home/user/CraftRoot kdeorg/android-qt515 bash
 source ~/CraftRoot/craft/craftenv.sh

In this shell, now Craft is usable like on any other platform, e.g. to build KTrip with all dependencies;

 craft ktrip

And package it as APK:

 craft --package ktrip