From 3c492c18151fcb20cd2ac7403cc4d38b71a2ac26 Mon Sep 17 00:00:00 2001 From: max-klaus Date: Tue, 19 Jan 2021 15:30:41 +0300 Subject: [PATCH] Drop version features --- OsmAnd/build-library.gradle | 3 --- OsmAnd/build.gradle | 3 --- 2 files changed, 6 deletions(-) diff --git a/OsmAnd/build-library.gradle b/OsmAnd/build-library.gradle index 0855b031f0..b8cf0a21a5 100644 --- a/OsmAnd/build-library.gradle +++ b/OsmAnd/build-library.gradle @@ -29,9 +29,6 @@ android { } def replaceNoTranslate(line) { - if (line.contains("\"versionFeatures\"")) { - return line.replaceAll(">[^<]*<", ">" + "" + "<") - } return line; } diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle index 00191fd6f3..436aa652dc 100644 --- a/OsmAnd/build.gradle +++ b/OsmAnd/build.gradle @@ -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; }