Skip to content

Commit

Permalink
Change la compatible version de l'application mobile en 2.2
Browse files Browse the repository at this point in the history
Change-Id: I99d82c3940e2b4b0398639cba1b1e6765ed63202
  • Loading branch information
Emilie Genton committed May 2, 2024
1 parent 29d3750 commit 74856eb
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_1.version);
Collections.singletonList(MobileVersion.M2_2.version);

public CompatibleVersions() {}

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

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

public final String version;

Expand Down

0 comments on commit 74856eb

Please sign in to comment.