Skip to content

Commit

Permalink
fix(android): bundle android driver in all settings (#5883)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Mar 22, 2021
1 parent cac5aeb commit 14ccc80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/build_package.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const cpAsync = util.promisify(ncp);
const SCRIPT_NAME = path.basename(__filename);
const ROOT_PATH = path.join(__dirname, '..');

const PLAYWRIGHT_CORE_FILES = ['bin/PrintDeps.exe', 'lib', 'types', 'NOTICE', 'LICENSE'];
const PLAYWRIGHT_CORE_FILES = ['bin/PrintDeps.exe', 'lib', 'types', 'NOTICE', 'LICENSE', 'bin/android-driver.apk', 'bin/android-driver-target.apk'];

const PACKAGES = {
'playwright': {
Expand Down Expand Up @@ -67,7 +67,7 @@ const PACKAGES = {
version: '0.0.8', // Manually manage playwright-android version.
description: 'A high-level API to automate Chrome for Android',
browsers: ['ffmpeg'],
files: [...PLAYWRIGHT_CORE_FILES, 'bin/android-driver.apk', 'bin/android-driver-target.apk'],
files: [...PLAYWRIGHT_CORE_FILES],
},
};

Expand Down

0 comments on commit 14ccc80

Please sign in to comment.