Plasma/Mobile/DevGuide: Difference between revisions

From KDE Community Wiki
< Plasma‎ | Mobile
No edit summary
No edit summary
Line 52: Line 52:
* Kirigami, a set of QtQuick components, facilitating the easy creation of applications that look and feel great on mobile as well as on desktop devices, following the Kirigami Human Interface Guidelines.
* Kirigami, a set of QtQuick components, facilitating the easy creation of applications that look and feel great on mobile as well as on desktop devices, following the Kirigami Human Interface Guidelines.
== Documentation resources ==
== Documentation resources ==
Before delving into Plasma Mobile development, you may look into the technical documentation of the relative technologies. You may start by checking waht [QML and QtQuick https://doc.qt.io/qt-5.10/qmlapplications.html] stand for
 
Before delving into Plasma Mobile development, you may look into the technical documentation of the technologies involved. You may get started by checking what [https://doc.qt.io/qt-5.10/qmlapplications.html QML and QtQuick] stand for and having a look at the [https://doc.qt.io/qt-5.10/qml-glossary.html QML Glossary]. [https://doc.qt.io/qt-5.10/gettingstartedqml.html  Getting Started Programming with Qt Quick guide] is a very useful resource as well. Afterwards, [https://community.kde.org/KDE_Visual_Design_Group/KirigamiHIG Kirigami Human Interface Guidelines] will introduce you to the design patterns of Plasma Mobile. Finally, you may have a quick look at CMake [https://cmake.org/documentation/ documentation].
 
During development, [https://doc.qt.io/qt-5.10/qmlreference.html QML Reference], QML types [https://doc.qt.io/qt-5.10/qmltypes.html list] and [https://api.kde.org/frameworks/kirigami/html/index.html Kirigami API] will be your friends.

Revision as of 14:06, 20 May 2018

Plasma Mobile Developer Guide

 
Under Construction
This is a new page, currently under construction!

The development environment needed depends on the specific area of Plasma Mobile you want to contribute. There are three kinds of development environment:

  1. General Linux-based development environment
  2. Plasma Mobile emulated environment
  3. Mobile device running plasma mobile

For most tasks you will not need an actual mobile device running Plasma Mobile. Moreover, although you may contribute to Plasma Mobile using any kind of linux-based development environment , we strongly suggest to use the Plasma Mobile pre compiled image, since such an environment will make the development much easier and facilitate the testing of your work on a machine that emulates a mobile device.

Plasma Mobile emulated environment

Get the Plasma Moible precompiled image

At first, you have to download the precompiled ISO image. TODO: Add link

Run the virtual machine

To use the precompiled ISO, QEMU should be installed. QEMU is a free and open-source hosted hypervisor that performs hardware virtualization. In Ubuntu-based distributions (e.g. KDE neon), just execute:

sudo apt install qemu-utils qemu-system-x86

TODO: Add instructions to run the vm

Mobile device running plasma mobile

Currently, you may run Plasma Mobile on an actual mobile device, either by installing postmarketOS or using Halium as hardware adaption layer.

Using postmarketOS

PostmarketOS is a touch-optimized, pre-configured Alpine Linux-based distribution. Currently, postmarketOS has been ported to many devices. Ensure that your device belongs to the relative list and proceed to installation, following the installation instructions provided by postmarketOS team. When asked during installation, just select “plasma-mobile” as the user interface:

Available user interfaces (5):
* none: No graphical environment
* hildon: (X11) Lightweight GTK+2 UI (optimized for single-touch touchscreens)
* luna: (Wayland) webOS UI, ported from the LuneOS project (Not working yet)
* plasma-mobile: (Wayland) Mobile variant of KDE Plasma, optimized for touchscreen
* weston: (Wayland) Reference compositor (demo, not a phone interface)
* xfce4: (X11) Lightweight GTK+2 desktop (stylus recommended)
User interface [weston]: plasma-mobile

Using Halium

Halium provides the minimal android layer that allows a non-Android graphical environment to interact with the underlying Android kernel and access the hardware. Currently Halium has been ported to many devices. The Plasma Mobile team provides a Neon-based rootfs which can be used along with the Halium builds. This image is based on the dev-unstable branch of KDE Neon, and always ships the latest versions of KDE frameworks, kwin and Plasma Mobile.

To run Plasma Mobile using Halium as hardware adaption layer:

Plasma Mobile application development

Getting involved with Plasma Mobile application environment is a perfect opportunity to familiarize with a set of important technologies:

  • Qt, the cross-platform application framework for creating applications that run on various software and hardware platforms with little or no change in the underlying codebase
  • QML, the UI specification and programming language that allows designers and developers to create applications with fluid transitions and effects, which are quite popular in mobile devices. QML is a declarative language offering a highly readable, declarative, JSON-like syntax with support for imperative JavaScript expressions.
  • Qt Quick, the standard library of types and functionality for QML. It includes, among many others, visual types, interactive types, animations, models and views. A QML application developer can get access to all of that functionality with a single import statement.
  • CMake, the cross-platform set of tools designed to build, test and package software, using a compiler-independent method.
  • Kirigami, a set of QtQuick components, facilitating the easy creation of applications that look and feel great on mobile as well as on desktop devices, following the Kirigami Human Interface Guidelines.

Documentation resources

Before delving into Plasma Mobile development, you may look into the technical documentation of the technologies involved. You may get started by checking what QML and QtQuick stand for and having a look at the QML Glossary. Getting Started Programming with Qt Quick guide is a very useful resource as well. Afterwards, Kirigami Human Interface Guidelines will introduce you to the design patterns of Plasma Mobile. Finally, you may have a quick look at CMake documentation.

During development, QML Reference, QML types list and Kirigami API will be your friends.