Support non-mobile targets (Wear OS, TV) (#180)

* Add non-mobile targets to allowlist

* Add new targets to input validator tests

* Update built input-validator.js

* Update README with new targets

* Update action.yml with new targets
This commit is contained in:
Alex Vanyo
2021-08-13 12:25:01 -05:00
committed by GitHub
parent 1bf9f17bc6
commit 4d1a61ed38
5 changed files with 33 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
export const MIN_API_LEVEL = 15;
export const VALID_TARGETS: Array<string> = ['default', 'google_apis', 'google_apis_playstore'];
export const VALID_TARGETS: Array<string> = ['default', 'google_apis', 'google_apis_playstore', 'android-wear', 'android-wear-cn', 'android-tv', 'google-tv'];
export const VALID_ARCHS: Array<string> = ['x86', 'x86_64', 'arm64-v8a'];
export function checkApiLevel(apiLevel: string): void {