File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
3
3
exports . checkEmulatorBuild = exports . checkDisableLinuxHardwareAcceleration = exports . checkDisableSpellchecker = exports . checkDisableAnimations = exports . checkForceAvdCreation = exports . checkArch = exports . checkTarget = exports . checkApiLevel = exports . VALID_ARCHS = exports . VALID_TARGETS = exports . MIN_API_LEVEL = void 0 ;
4
4
exports . MIN_API_LEVEL = 15 ;
5
- exports . VALID_TARGETS = [ 'default' , 'google_apis' , 'google_apis_playstore' ] ;
5
+ exports . VALID_TARGETS = [
6
+ 'default' ,
7
+ 'google_apis' ,
8
+ 'google_apis_playstore' ,
9
+ 'android-wear' ,
10
+ 'android-wear-cn' ,
11
+ 'android-tv' ,
12
+ 'google-tv'
13
+ ] ;
6
14
exports . VALID_ARCHS = [ 'x86' , 'x86_64' , 'arm64-v8a' ] ;
7
15
function checkApiLevel ( apiLevel ) {
8
16
if ( isNaN ( Number ( apiLevel ) ) || ! Number . isInteger ( Number ( apiLevel ) ) ) {
You can’t perform that action at this time.
0 commit comments