crowdin: Fix removal of more empty translations

Change-Id: I6bff2edf59d09eda61033ad2db5e458e2a95d56f
diff --git a/cm_crowdin_sync_all.py b/cm_crowdin_sync_all.py
index 7a83b5b..b641509 100755
--- a/cm_crowdin_sync_all.py
+++ b/cm_crowdin_sync_all.py
@@ -392,6 +392,9 @@
     if '<resources/>' in open(xml_file).read():
         print('Removing ' + xml_file)
         os.remove(xml_file)
+    elif '<resources xmlns:android="http://schemas.android.com/apk/res/android"/>' in open(xml_file).read():
+        print('Removing ' + xml_file)
+        os.remove(xml_file)
     elif '<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"/>' in open(xml_file).read():
         print('Removing ' + xml_file)
         os.remove(xml_file)