Skip to content

Commit

Permalink
Allow using Android SDK 27
Browse files Browse the repository at this point in the history
Add version 27 of Android SDK as verified, so users will use it by default when it is installed.
  • Loading branch information
rosen-vladimirov committed Jan 10, 2018
1 parent 970e800 commit b018c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/android-tools-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { appendZeroesToVersion } from './common/helpers';

export class AndroidToolsInfo implements IAndroidToolsInfo {
private static ANDROID_TARGET_PREFIX = "android";
private static SUPPORTED_TARGETS = ["android-17", "android-18", "android-19", "android-21", "android-22", "android-23", "android-24", "android-25", "android-26"];
private static SUPPORTED_TARGETS = ["android-17", "android-18", "android-19", "android-21", "android-22", "android-23", "android-24", "android-25", "android-26", "android-27"];
private static MIN_REQUIRED_COMPILE_TARGET = 22;
private static REQUIRED_BUILD_TOOLS_RANGE_PREFIX = ">=23";
private static VERSION_REGEX = /((\d+\.){2}\d+)/;
Expand Down

0 comments on commit b018c9c

Please sign in to comment.