Repository of Android Applications
Android users can use the http://fdroid.org client, add the official Nit-Droid repository and benefit experimental and bleeding-edge state of the art of mobile Nit applications.
- Download and install the F-Droid client
- Manage repository (in the menu)
- Add a repository (plus icon)
- Enter the address http://nitlanguage.org/fdroid
- Update (update icon)
Note: A new F-Droid category Nit
contains all the applications.
The source code of the applications in the F-Droid repository is available in the catalog under the apk tag.
These applications are compiled by the Nit tools thanks to the app.nit support.
Note: if, for some reason, the fdroid client is not functional, there is the raw list of downloadable .apk
files.
How to publish on nitdroid?
This section is indented to maintainers and developpers that wish to publish on nitdroid.
In order to publish the apk, you need:
- A
android-release
target in the mainMakefile
. The target must compile with the nitc options-m android
and--release
- F-Droid metadata files in the main directory.
They are named as the apk ID with ’.txt’ appended (e.g.
org.nitlanguage.calculator.txt
). - Optionnally, a
upstream.apk
entry in thepackage.ini
file that points tohttp://nitlanguage.org/fdroid/apk/XXX.apk
. WhereXXX
is the last element of the apk ID (e.g.calculator.apk
fororg.nitlanguage.calculator
)
See the calculator example.