Skip to content

Commit

Permalink
Add support for Android 5.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
orrc committed Mar 12, 2015
1 parent a8158e4 commit 5844f3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/hudson/plugins/android_emulator/Constants.java
Expand Up @@ -80,9 +80,10 @@ class AndroidPlatform implements Serializable {
static final AndroidPlatform SDK_4_4 = new AndroidPlatform("4.4", 19);
static final AndroidPlatform SDK_4_4W = new AndroidPlatform("4.4W", 20);
static final AndroidPlatform SDK_5_0 = new AndroidPlatform("5.0", 21);
static final AndroidPlatform SDK_5_1 = new AndroidPlatform("5.1", 22);
static final AndroidPlatform[] ALL = new AndroidPlatform[] { SDK_1_1, SDK_1_5, SDK_1_6, SDK_2_0,
SDK_2_0_1, SDK_2_1, SDK_2_2, SDK_2_3, SDK_2_3_3, SDK_3_0, SDK_3_1, SDK_3_2, SDK_4_0,
SDK_4_0_3, SDK_4_1, SDK_4_2, SDK_4_3, SDK_4_4, SDK_4_4W, SDK_5_0 };
SDK_4_0_3, SDK_4_1, SDK_4_2, SDK_4_3, SDK_4_4, SDK_4_4W, SDK_5_0, SDK_5_1 };

private final String name;
private final int level;
Expand Down

0 comments on commit 5844f3a

Please sign in to comment.