For information about all aspects of F-Droid, check out the documentation.
If you are a "first time" contributor, consider opening an issue at RFP (Request for Packaging). Don't forget to fill in the issue template.
You may use the issue tracker to report issues on app metadata or issues with the packages distributed through our repository. For instance:
- an app is outdated
- an app has Antifeatures, but they are not listed in the app or on the website.
Before opening an issue about an outdated app, have a look at its metadata
file and make sure that updating the app is actually possible. For example,
MaintainerNotes
might contain a hint on why it's impossible to further update
an app (e.g. proprietary dependencies were added, essential parts of the code
are no longer available).
Also make sure having checked with already existing issues (including closed ones) which might give similar explanations.
- Register on GitLab.
- Visit and fork the fdroiddata repository.
App metadata for a merge request can be created without or with the use of fdroidserver
.
The latter is only recommended for really advanced users.
You can either write the metadata file locally, on your machine, or directly on the GitLab website. Please read the General Recommendations before you start.
- Visit your fork.
- Create a new branch. Naming it like the app name or, much better, the app id makes it easier to keep track of your contributions.
- Visit the
metadata
directory of your fork. - Add a new file by clicking on the plus sign and choosing "New file".
- Set the file name in the following schema:
<application_id>.yml
. So an example would be "com.app.example.yml". - Write down the metadata. The Build Metadata Reference as well as the templates will help you.
- Choose a smart commit message and commit your changes.
- Continue with the Common steps for both methods
- Clone your fork.
- Create and checkout a new branch. Naming it like the app name or, much better, the app id makes it easier to keep track of your contributions.
- Create a new file in the the
metadata
directory named after the following schema:<application_id>.yml
. So an example would be "com.app.example.yml". - Write down the metadata in that file. The Build Metadata Reference as well as the templates will help you.
- Commit and push to your upstream fork.
- Continue with the Common steps for both methods
- Go to the
CI/CD
menu in the GitLab project of your fork. - Check if the pipeline for your commit(s) succeed. If not, take a look into the logs and try to fix the error by editing the metadata file again.
- If everything went fine, you can create a
new merge request at the
fdroiddata
repository. - Now wait for the packagers to pick up your Merge Request. Please keep track if they asked any questions and reply to them as soon as possible.
Please read the General Recommendations before you start.
Install F-Droid Server:
pip install git+https://gitlab.com/fdroid/fdroidserver.git
Clone your fork of F-Droid Data and enter it:
git clone https://gitlab.com/YOUR_USERNAME/fdroiddata.git
cd fdroiddata
Make sure fdroid
works and reads the metadata files properly:
fdroid readmeta
If you want to add a new app you will have to add a new metadata file to the
repository, like metadata/app.id.yml
. Here is how to write that file.
If the app is on GitHub or any GitLab or Gitea/Gogs instance, you can use fdroid import
.
However, the metadata fields IssueTracker
and SourceCode
will only be generated, if the source code
is hosted on one of the following platforms:
- GitHub
- GitLab
- FramaGit
- NotABug
- Bitbucket
- Codeberg
If the source code is not on one of those you must add .git
to the end of the URL.
fdroid import --url https://github.com/foo/bar --subdir app
Alternatively, start the metadata file from scratch, see the templates:
cp templates/general.yml metadata/app.id.yml
Or by download:
wget -O metadata/app.id.yml https://gitlab.com/fdroid/fdroiddata/raw/master/templates/general.yml
Now that the file is created, you need to fill up all the app information and add a working build recipe.
You can use the metadata section
in the documentation for reference, or the full template at templates/general.yml
for
some suggestions.
Once you're done, see if fdroid readmeta
runs without any errors. If it
doesn't, there are syntax errors in your metadata file.
We build apps from source, so a new app must have at least one working build.
You can have a look at the build templates at templates/build-*
for some
quick suggestions. You may also follow the documentation or look at how other apps
are built for working examples.
- Run
fdroid readmeta
again to make sure there still aren't any syntax errors - Run
fdroid rewritemeta app.id
to clean up your file - Run
fdroid checkupdates app.id
to fill automated fields likeAuto Name
andCurrent Version
- Make sure that
fdroid lint app.id
doesn't report any warnings. If it does, fix them. - Test your build recipe with
fdroid build -v -l app.id
Congratulations! You can now open a merge request to add your app.
- Keep a separate branch for every app you want to submit.
- Keep your forks
master
branch up-to-date. For more information see here: https://about.gitlab.com/blog/2016/12/01/how-to-keep-your-fork-up-to-date-with-its-origin - As a result of the two tips above, you should not commit to your
master
branch. This will also trigger new pipelines at the right time. - Do not open a Merge Request from a protected branch.
The
master
branch is protected by default, but other branches can also be protected. - Fill the template when opening a new Merge Request.
- Squash your commits. (enabled by default)
"How long does it take for my app to show up in the F-Droid repository?" is a very frequently asked question. Please take a look at the wiki for the answer.
-
If you have enabled auto-updates, F-Droid will build new versions from tags automatically.
AutoUpdateMode: Version UpdateCheckMode: Tags
-
You may like to add localization and screenshots, so users can have a glance at the app in pictures and in their preferred language.
-
You can advertise the download of your app in this app store using the official graphic.
<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" height="75">
-
You can add a badge of your apps F-Droid version from shields.io.
https://img.shields.io/f-droid/v/APP.ID.svg?logo=F-Droid
You can also include a GitHub release badge to know if your version is up to date.
https://img.shields.io/github/release/USER/REPO.svg?logo=github