Skip to content

Commit cae5ace

Browse files
committed
Fix codestyle
1 parent 3b0137e commit cae5ace

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/input-validator.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
export const MIN_API_LEVEL = 15;
2-
export const VALID_TARGETS: Array<string> = ['default', 'google_apis', 'aosp_atd', 'google_atd', 'google_apis_playstore', 'android-wear', 'android-wear-cn', 'android-tv', 'google-tv', 'andrdoid-automotive', 'android-automotive-playstore', 'android-desktop'];
2+
export const VALID_TARGETS: Array<string> = [
3+
'default',
4+
'google_apis',
5+
'aosp_atd',
6+
'google_atd',
7+
'google_apis_playstore',
8+
'android-wear',
9+
'android-wear-cn',
10+
'android-tv',
11+
'google-tv',
12+
'andrdoid-automotive',
13+
'android-automotive-playstore',
14+
'android-desktop'];
315
export const VALID_ARCHS: Array<string> = ['x86', 'x86_64', 'arm64-v8a'];
416
export const VALID_CHANNELS: Array<string> = ['stable', 'beta', 'dev', 'canary'];
517
export const MIN_PORT = 5554;

0 commit comments

Comments
 (0)