summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/main/play
AgeCommit message (Collapse)AuthorFilesLines
2022-02-08Fix missing fdroid metadataAlbin15-40/+1
F-Droid requires the metadata to be present in a specific location which isn't compatible with our mono-repo structure, therefore this change moves the Gradle Play Publisher (GPP) directories to a location compatible with F-Droid and adds a symlink at the location GPP expects, which leads to the F-Droid location. The reason for doing it this way rather than symlinking the other way around is that we don't use GPP itself atm. Even if we start using it, it's still easier to make sure everything is working (in regards to the symlink) in the GPP build environment compared to the F-Droid build environment.
2022-01-28Empty Google Play release notesAlbin1-1/+0
As releases usually are built from release branches, the current strategy will be to keep this file empty on master.
2021-12-16Split Android project and app moduleAlbin14-0/+41
The purpose of this is to: * Comply better with the default Android project structure (see https://developer.android.com/studio/build). * Avoid conflicts between project and app dependencies and plugins.