Revert dev build ignoring
This commit is contained in:
parent
7159bd12c9
commit
c87afb05aa
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue