Skip to content

Commit

Permalink
update import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa committed Nov 10, 2023
1 parent eafcc69 commit dacd855
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ function buildInstallArgs (apiLevel, options = {}) {
* to extract some vital values from it
*
* @param {Record<string, any>} manifest The manifest content formatted as JSON
* See https://www.npmjs.com/package/adbkit-apkreader for detailed format description
* See https://www.npmjs.com/package/@devicefarmer/adbkit-apkreader for detailed format description
* @returns {ManifestInfo}
*/
function parseManifest (manifest) {
Expand Down
2 changes: 1 addition & 1 deletion lib/stubs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// @ts-nocheck
declare module 'adbkit-apkreader';
declare module '@devicefarmer/adbkit-apkreader';
declare module 'asyncbox';
2 changes: 1 addition & 1 deletion lib/tools/android-manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { fs, zip, tempDir, util } from '@appium/support';
import _ from 'lodash';
import path from 'path';
import ApkReader from 'adbkit-apkreader';
import ApkReader from '@devicefarmer/adbkit-apkreader';

const manifestMethods = {};

Expand Down
2 changes: 1 addition & 1 deletion lib/tools/apk-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { fs, util, mkdirp, timing } from '@appium/support';
import semver from 'semver';
import os from 'os';
import { LRUCache } from 'lru-cache';
import ApkReader from 'adbkit-apkreader';
import ApkReader from '@devicefarmer/adbkit-apkreader';

const apkUtilsMethods = {};

Expand Down

0 comments on commit dacd855

Please sign in to comment.