Drop version features

This commit is contained in:
max-klaus 2021-01-19 15:30:41 +03:00
parent 01569a6f52
commit 3c492c1815
2 changed files with 0 additions and 6 deletions

View file

@ -29,9 +29,6 @@ android {
}
def replaceNoTranslate(line) {
if (line.contains("\"versionFeatures\"")) {
return line.replaceAll(">[^<]*<", ">" + "" + "<")
}
return line;
}

View file

@ -163,9 +163,6 @@ def replaceNoTranslate(line) {
if (line.contains("\"app_edition\"") && System.getenv("APP_EDITION")) {
return line.replaceAll(">[^<]*<", ">" + System.getenv("APP_EDITION") + "<")
}
if (line.contains("\"versionFeatures\"") && System.getenv("APP_FEATURES")) {
return line.replaceAll(">[^<]*<", ">" + System.getenv("APP_FEATURES") + "<")
}
return line;
}