mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-09-05 03:29:32 +00:00
Add support for using google_apis_playstore system images.
This commit is contained in:
+2
-1
@@ -25,7 +25,8 @@ async function run() {
|
||||
console.log(`API level: ${apiLevel}`);
|
||||
|
||||
// target of the system image
|
||||
const target = core.getInput('target');
|
||||
const targetInput = core.getInput('target');
|
||||
const target = targetInput == 'playstore' ? 'google_apis_playstore' : targetInput;
|
||||
checkTarget(target);
|
||||
console.log(`target: ${target}`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user