diff options
| author | Albin <albin@mullvad.net> | 2021-10-13 18:14:45 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2021-12-16 11:38:25 +0100 |
| commit | 6c4d31dfc59772e9a80d0260fee34cf03d5c05f5 (patch) | |
| tree | 8418020b852073a6dfb0c4c44fabdb1586404d11 /.github | |
| parent | 4dcdb1306d23a8e831389130fdef452cae4dc809 (diff) | |
| download | mullvadvpn-6c4d31dfc59772e9a80d0260fee34cf03d5c05f5.tar.xz mullvadvpn-6c4d31dfc59772e9a80d0260fee34cf03d5c05f5.zip | |
Split Android project and app module
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.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/android-xml-tidy.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/translations.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/android-xml-tidy.yml b/.github/workflows/android-xml-tidy.yml index e733df4378..8cce8aae6d 100644 --- a/.github/workflows/android-xml-tidy.yml +++ b/.github/workflows/android-xml-tidy.yml @@ -4,7 +4,7 @@ on: push: paths: - .github/workflows/android-xml-tidy.yml - - android/src/main/**/*.xml + - android/app/src/main/**/*.xml # Run verifier if requested manually from the Actions tab workflow_dispatch: jobs: diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index adebf29d49..537ad375bf 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -5,8 +5,8 @@ on: paths: - .github/workflows/translations.yml - android/translations-converter/** - - android/src/**/plurals.xml - - android/src/**/strings.xml + - android/app/src/**/plurals.xml + - android/app/src/**/strings.xml - gui/** # Check if requested manually from the Actions tab workflow_dispatch: |
