Skip to content

Commit

Permalink
Change la compatible version de l'application mobile en 2.1
Browse files Browse the repository at this point in the history
Change-Id: Ia90af6737d14ac37cdb9de79899091f7a2156b0e
  • Loading branch information
Emilie Genton committed Feb 12, 2024
1 parent 42fb977 commit dbaa671
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class CompatibleVersions {

// Versions autorisées pour l'appli mobile
private final List<String> mobileCompatibleVersions =
Collections.singletonList(MobileVersion.M2_0.version);
Collections.singletonList(MobileVersion.M2_1.version);

public CompatibleVersions() {}

Expand All @@ -32,7 +32,8 @@ public void checkCompat(String mobileVersionString) {
}

enum MobileVersion {
M2_0("2.0");
M2_0("2.0"),
M2_1("2.1");

public final String version;

Expand Down

0 comments on commit dbaa671

Please sign in to comment.