Skip to content

Commit b018c9c

Browse files
Allow using Android SDK 27
Add version 27 of Android SDK as verified, so users will use it by default when it is installed.
1 parent 970e800 commit b018c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/android-tools-info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { appendZeroesToVersion } from './common/helpers';
66

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

0 commit comments

Comments
 (0)