This is the Android app for the memory game. (Source)
You can use Android Studio to develop the app.
- Issues are those of the memory game.
git clone https://github.com/niccokuznamnn/app.memory.quelltext.eu
Do this to update to the latest version:
git pull --recurse-submodules
cd app/src/main/assets/memory.quelltext.eu/
git checkout master
git pull origin master
cd ..
git add .
git commit -m"update memory game"
Install the Transifex Command Line Client for Raspberry Pi and Android Phones. (Android). You may be prompted to get an API token which you can get if you have an account..
- Add the changelogs.
bash ci/add_changelogs_to_transifex.sh git add .tx git commit -am"translate changelogs"
- Push the translations.
tx push --source
- Update all translations.
tx pull --all
- Commit the changes.
git add . git commit -am"update translations" git push
To release a new version:
- Update the submodule as mentioned above.
- Edit
metadata/en/full_description.txt
to include the new features. - Edit
app/build.gradle
, theversionCode
andversionName
variables. - Edit
metadata/en/changelogs/<NO>.txt
to describe the changes. - Update the translations as mentioned above.
- Create a commit and push it on the master branch.
git checkout master git add . git status # check that all is right git diff # check that all is right git commit -m"v1.3"
- Create a tag named
v<versionName>
likev1.3
ifversionName
is"1.3"
:F-Droid should now pick up the new version and release the app.git tag v1.3 git push origin v1.3