Skip to content

elementary-community/elementary-app-template

Repository files navigation

elementary App Template

a template to develop Apps for elementary OS and its AppCenter

This template is based on the official elementary Developer Documentation. Simply download it and your ready to hack!

Table of Contents

Prerequisites

This app template assumes you installed the following as documented in The Basic Setup of the elementary Developer Documentation:

  • Development Libraries (elementary-sdk)
  • elementary Flatpak Platform and Sdk (io.elementary.Platform and io.elementary.Sdk)

Build System

The Build System is preconfigured an ready to use according to The Build System described in the elementary Developer Documentation.

Compile, Install and Start

Run meson build to configure the build environment. Change to the build directory and run ninja to build

meson build --prefix=/usr
cd build
ninja

To install, use ninja install, then execute with io.github.alainm23.planify

sudo ninja install
io.github.yourusername.yourrepositoryname

Uninstall

Execute the following command to remove the app template's binary from your system:

sudo ninja uninstall

Translations

This template is fully translatable and everything is setup as described in the Translations section of the elementary Developer Documentation'

Update translations

Remember that each time you add new translatable strings or change old ones, you should regenerate your *.pot and *.po files using the *-pot and *-update-po build targets from the previous two steps as follows:

ninja io.github.yourusername.yourrepositoryname-pot
ninja io.github.yourusername.yourrepositoryname-update-po

Add more languages

If you want to support more languages, just list them in the LINGUAS file and generate the new po file with the *-update-po target:

ninja -C build io.github.yourusername.yourrepositoryname-update-po

Icons

Support for icons is configured too according to the Icons section of the elementary Developer Documentation.

Packaging

Support for Flatpak is builtin as well and setup according to the Packaging section of the elementary Developer Documentation.

Compile, Package and Install

To run a test build and install your app, you can execute flatpak-builder from the project root:

flatpak-builder build io.github.yourusername.yourrepositoryname.yml --user --install --force-clean --install-deps-from=appcenter

Then execute with

flatpak run io.github.yourusername.yourrepositoryname

Uninstall

flatpak uninstall io.github.yourusername.yourrepositoryname --user

About

a template to develop Apps for elementary OS and its AppCenter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published