diff options
| -rw-r--r-- | ci/ci-android-xml.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ci/ci-android-xml.sh b/ci/ci-android-xml.sh index 24a603ff4f..ed04bfd691 100644 --- a/ci/ci-android-xml.sh +++ b/ci/ci-android-xml.sh @@ -13,7 +13,12 @@ function tidy-up-android-xml { --indent-attributes yes \ --indent-spaces 4 \ --literal-attributes yes \ - android/src/main/AndroidManifest.xml android/src/main/res/*/*.xml + android/src/main/AndroidManifest.xml \ + android/src/main/res/anim*/*.xml \ + android/src/main/res/drawable*/*.xml \ + android/src/main/res/layout*/*.xml \ + android/src/main/res/mipmap*/*.xml \ + android/src/main/res/values/*.xml # FIXME - when tidy learns to not leave whitespace around, remove the line below - https://github.com/htacg/tidy-html5/issues/864 find android/src/main/ -name '*.xml' -exec sed -i -e 's/[ \t]*$//' '{}' ';' |
