Revert dev build ignoring

This commit is contained in:
max-klaus 2020-11-09 13:19:15 +03:00
parent 7159bd12c9
commit c87afb05aa

View file

@ -134,11 +134,11 @@ public class Version {
}
public static boolean isDeveloperVersion(OsmandApplication ctx){
return false;//getAppName(ctx).contains("~") || ctx.getPackageName().equals(FREE_DEV_VERSION_NAME);
return getAppName(ctx).contains("~") || ctx.getPackageName().equals(FREE_DEV_VERSION_NAME);
}
public static boolean isDeveloperBuild(OsmandApplication ctx){
return false;//getAppName(ctx).contains("~");
return getAppName(ctx).contains("~");
}
public static String getVersionForTracker(OsmandApplication ctx) {