@yume-chan/android-bin 0.0.17 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/CHANGELOG.json +21 -0
  2. package/CHANGELOG.md +14 -1
  3. package/README.md +15 -0
  4. package/esm/bu.d.ts +14 -14
  5. package/esm/bu.d.ts.map +1 -1
  6. package/esm/bu.js +13 -9
  7. package/esm/bu.js.map +1 -1
  8. package/esm/bug-report.d.ts +37 -37
  9. package/esm/bug-report.d.ts.map +1 -1
  10. package/esm/bug-report.js +136 -124
  11. package/esm/bug-report.js.map +1 -1
  12. package/esm/cmd.d.ts +15 -0
  13. package/esm/cmd.d.ts.map +1 -0
  14. package/esm/cmd.js +54 -0
  15. package/esm/cmd.js.map +1 -0
  16. package/esm/demo-mode.d.ts +43 -42
  17. package/esm/demo-mode.d.ts.map +1 -1
  18. package/esm/demo-mode.js +179 -146
  19. package/esm/demo-mode.js.map +1 -1
  20. package/esm/index.d.ts +6 -4
  21. package/esm/index.d.ts.map +1 -1
  22. package/esm/index.js +7 -5
  23. package/esm/index.js.map +1 -1
  24. package/esm/logcat.d.ts +91 -89
  25. package/esm/logcat.d.ts.map +1 -1
  26. package/esm/logcat.js +288 -192
  27. package/esm/logcat.js.map +1 -1
  28. package/esm/overlay-display.d.ts +21 -0
  29. package/esm/overlay-display.d.ts.map +1 -0
  30. package/esm/overlay-display.js +78 -0
  31. package/esm/overlay-display.js.map +1 -0
  32. package/esm/pm.d.ts +139 -0
  33. package/esm/pm.d.ts.map +1 -0
  34. package/esm/pm.js +125 -0
  35. package/esm/pm.js.map +1 -0
  36. package/esm/settings.d.ts +12 -12
  37. package/esm/settings.d.ts.map +1 -1
  38. package/esm/settings.js +29 -24
  39. package/esm/settings.js.map +1 -1
  40. package/package.json +15 -11
  41. package/src/bu.ts +7 -3
  42. package/src/bug-report.ts +74 -48
  43. package/src/cmd.ts +67 -0
  44. package/src/demo-mode.ts +111 -62
  45. package/src/index.ts +6 -4
  46. package/src/logcat.ts +359 -97
  47. package/src/overlay-display.ts +115 -0
  48. package/src/pm.ts +281 -0
  49. package/src/settings.ts +45 -16
  50. package/tsconfig.build.json +3 -0
  51. package/tsconfig.build.tsbuildinfo +1 -0
  52. package/.rush/temp/package-deps_build.json +0 -17
  53. package/.rush/temp/package-deps_build_watch.json +0 -17
  54. package/.rush/temp/shrinkwrap-deps.json +0 -5
  55. package/android-bin.build.log +0 -1
  56. package/tsconfig.json +0 -11
package/src/pm.ts ADDED
@@ -0,0 +1,281 @@
1
+ // cspell:ignore dont
2
+ // cspell:ignore instantapp
3
+ // cspell:ignore apks
4
+
5
+ import type { Adb } from "@yume-chan/adb";
6
+ import {
7
+ AdbCommandBase,
8
+ AdbSubprocessNoneProtocol,
9
+ escapeArg,
10
+ } from "@yume-chan/adb";
11
+ import type { Consumable, ReadableStream } from "@yume-chan/stream-extra";
12
+ import { DecodeUtf8Stream, WrapReadableStream } from "@yume-chan/stream-extra";
13
+
14
+ import { Cmd } from "./cmd.js";
15
+
16
+ export enum PackageManagerInstallLocation {
17
+ Auto,
18
+ InternalOnly,
19
+ PreferExternal,
20
+ }
21
+
22
+ export enum PackageManagerInstallReason {
23
+ Unknown,
24
+ AdminPolicy,
25
+ DeviceRestore,
26
+ DeviceSetup,
27
+ UserRequest,
28
+ }
29
+
30
+ // https://cs.android.com/android/platform/superproject/+/master:frameworks/base/services/core/java/com/android/server/pm/PackageManagerShellCommand.java;l=3046;drc=6d14d35d0241f6fee145f8e54ffd77252e8d29fd
31
+ export interface PackageManagerInstallOptions {
32
+ /**
33
+ * `-R`
34
+ */
35
+ skipExisting: boolean;
36
+ /**
37
+ * `-i`
38
+ */
39
+ installerPackageName: string;
40
+ /**
41
+ * `-t`
42
+ */
43
+ allowTest: boolean;
44
+ /**
45
+ * `-f`
46
+ */
47
+ internalStorage: boolean;
48
+ /**
49
+ * `-d`
50
+ */
51
+ requestDowngrade: boolean;
52
+ /**
53
+ * `-g`
54
+ */
55
+ grantRuntimePermissions: boolean;
56
+ /**
57
+ * `--restrict-permissions`
58
+ */
59
+ restrictPermissions: boolean;
60
+ /**
61
+ * `--dont-kill`
62
+ */
63
+ doNotKill: boolean;
64
+ /**
65
+ * `--originating-uri`
66
+ */
67
+ originatingUri: string;
68
+ /**
69
+ * `--referrer`
70
+ */
71
+ refererUri: string;
72
+ /**
73
+ * `-p`
74
+ */
75
+ inheritFrom: string;
76
+ /**
77
+ * `--pkg`
78
+ */
79
+ packageName: string;
80
+ /**
81
+ * `--abi`
82
+ */
83
+ abi: string;
84
+ /**
85
+ * `--ephemeral`/`--instant`/`--instantapp`
86
+ */
87
+ instantApp: boolean;
88
+ /**
89
+ * `--full`
90
+ */
91
+ full: boolean;
92
+ /**
93
+ * `--preload`
94
+ */
95
+ preload: boolean;
96
+ /**
97
+ * `--user`
98
+ */
99
+ userId: number;
100
+ /**
101
+ * `--install-location`
102
+ */
103
+ installLocation: PackageManagerInstallLocation;
104
+ /**
105
+ * `--install-reason`
106
+ */
107
+ installReason: PackageManagerInstallReason;
108
+ /**
109
+ * `--force-uuid`
110
+ */
111
+ forceUuid: string;
112
+ /**
113
+ * `--apex`
114
+ */
115
+ apex: boolean;
116
+ /**
117
+ * `--force-non-staged`
118
+ */
119
+ forceNonStaged: boolean;
120
+ /**
121
+ * `--staged`
122
+ */
123
+ staged: boolean;
124
+ /**
125
+ * `--force-queryable`
126
+ */
127
+ forceQueryable: boolean;
128
+ /**
129
+ * `--enable-rollback`
130
+ */
131
+ enableRollback: boolean;
132
+ /**
133
+ * `--staged-ready-timeout`
134
+ */
135
+ stagedReadyTimeout: number;
136
+ /**
137
+ * `--skip-verification`
138
+ */
139
+ skipVerification: boolean;
140
+ /**
141
+ * `--bypass-low-target-sdk-block`
142
+ */
143
+ bypassLowTargetSdkBlock: boolean;
144
+ }
145
+
146
+ export const PACKAGE_MANAGER_INSTALL_OPTIONS_MAP: Record<
147
+ keyof PackageManagerInstallOptions,
148
+ string
149
+ > = {
150
+ skipExisting: "-R",
151
+ installerPackageName: "-i",
152
+ allowTest: "-t",
153
+ internalStorage: "-f",
154
+ requestDowngrade: "-d",
155
+ grantRuntimePermissions: "-g",
156
+ restrictPermissions: "--restrict-permissions",
157
+ doNotKill: "--dont-kill",
158
+ originatingUri: "--originating-uri",
159
+ refererUri: "--referrer",
160
+ inheritFrom: "-p",
161
+ packageName: "--pkg",
162
+ abi: "--abi",
163
+ instantApp: "--instant",
164
+ full: "--full",
165
+ preload: "--preload",
166
+ userId: "--user",
167
+ installLocation: "--install-location",
168
+ installReason: "--install-reason",
169
+ forceUuid: "--force-uuid",
170
+ apex: "--apex",
171
+ forceNonStaged: "--force-non-staged",
172
+ staged: "--staged",
173
+ forceQueryable: "--force-queryable",
174
+ enableRollback: "--enable-rollback",
175
+ stagedReadyTimeout: "--staged-ready-timeout",
176
+ skipVerification: "--skip-verification",
177
+ bypassLowTargetSdkBlock: "--bypass-low-target-sdk-block",
178
+ };
179
+
180
+ export class PackageManager extends AdbCommandBase {
181
+ private _cmd: Cmd;
182
+
183
+ public constructor(adb: Adb) {
184
+ super(adb);
185
+ this._cmd = new Cmd(adb);
186
+ }
187
+
188
+ private buildInstallArgs(
189
+ options?: Partial<PackageManagerInstallOptions>
190
+ ): string[] {
191
+ const args = ["pm", "install"];
192
+ if (options) {
193
+ for (const [key, value] of Object.entries(options)) {
194
+ if (value) {
195
+ const option =
196
+ PACKAGE_MANAGER_INSTALL_OPTIONS_MAP[
197
+ key as keyof PackageManagerInstallOptions
198
+ ];
199
+ if (option) {
200
+ args.push(option);
201
+ switch (typeof value) {
202
+ case "number":
203
+ args.push(value.toString());
204
+ break;
205
+ case "string":
206
+ args.push(value);
207
+ break;
208
+ }
209
+ }
210
+ }
211
+ }
212
+ }
213
+ return args;
214
+ }
215
+
216
+ public async install(
217
+ apks: string[],
218
+ options?: Partial<PackageManagerInstallOptions>
219
+ ): Promise<string> {
220
+ const args = this.buildInstallArgs(options);
221
+ // WIP: old version of pm doesn't support multiple apks
222
+ args.push(...apks);
223
+ return await this.adb.subprocess.spawnAndWaitLegacy(args);
224
+ }
225
+
226
+ public async pushAndInstallStream(
227
+ stream: ReadableStream<Consumable<Uint8Array>>,
228
+ options?: Partial<PackageManagerInstallOptions>
229
+ ): Promise<ReadableStream<string>> {
230
+ const sync = await this.adb.sync();
231
+
232
+ const fileName = Math.random().toString().substring(2);
233
+ const filePath = `/data/local/tmp/${fileName}.apk`;
234
+
235
+ try {
236
+ await sync.write({
237
+ filename: filePath,
238
+ file: stream,
239
+ });
240
+ } finally {
241
+ await sync.dispose();
242
+ }
243
+
244
+ const args = this.buildInstallArgs(options);
245
+ args.push(filePath);
246
+ const process = await AdbSubprocessNoneProtocol.raw(
247
+ this.adb,
248
+ args.map(escapeArg).join(" ")
249
+ );
250
+ return new WrapReadableStream({
251
+ start: () => process.stdout.pipeThrough(new DecodeUtf8Stream()),
252
+ close: async () => {
253
+ await this.adb.rm(filePath);
254
+ },
255
+ });
256
+ }
257
+
258
+ public async installStream(
259
+ size: number,
260
+ stream: ReadableStream<Consumable<Uint8Array>>,
261
+ options?: Partial<PackageManagerInstallOptions>
262
+ ): Promise<ReadableStream<string>> {
263
+ if (!this._cmd.supportsCmd) {
264
+ return this.pushAndInstallStream(stream, options);
265
+ }
266
+
267
+ // Android 7 added `cmd package` and piping apk to stdin,
268
+ // the source code suggests using `cmd package` over `pm`, but didn't say why.
269
+ // However, `cmd package install` can't read `/data/local/tmp` folder due to SELinux policy,
270
+ // so even ADB today is still using `pm install` for non-streaming installs.
271
+ const args = this.buildInstallArgs(options);
272
+ // Remove `pm` from args, final command will be `cmd package install`
273
+ args.shift();
274
+ args.push("-S", size.toString());
275
+ const process = await this._cmd.spawn(false, "package", ...args);
276
+ await stream.pipeTo(process.stdin);
277
+ return process.stdout.pipeThrough(new DecodeUtf8Stream());
278
+ }
279
+
280
+ // TODO: install: support split apk formats (`adb install-multiple`)
281
+ }
package/src/settings.ts CHANGED
@@ -1,49 +1,78 @@
1
1
  import { AdbCommandBase } from "@yume-chan/adb";
2
2
 
3
- export type SettingsNamespace = 'system' | 'secure' | 'global';
3
+ export type SettingsNamespace = "system" | "secure" | "global";
4
4
 
5
- export type SettingsResetMode = 'untrusted_defaults' | 'untrusted_clear' | 'trusted_defaults';
5
+ export type SettingsResetMode =
6
+ | "untrusted_defaults"
7
+ | "untrusted_clear"
8
+ | "trusted_defaults";
6
9
 
7
10
  // frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/SettingsService.java
8
11
  export class Settings extends AdbCommandBase {
9
12
  // TODO: `--user <user>` argument
10
13
 
11
- public base(command: string, namespace: SettingsNamespace, ...args: string[]) {
12
- return this.adb.subprocess.spawnAndWaitLegacy(['settings', command, namespace, ...args]);
14
+ public base(
15
+ command: string,
16
+ namespace: SettingsNamespace,
17
+ ...args: string[]
18
+ ) {
19
+ return this.adb.subprocess.spawnAndWaitLegacy([
20
+ "settings",
21
+ command,
22
+ namespace,
23
+ ...args,
24
+ ]);
13
25
  }
14
26
 
15
27
  public get(namespace: SettingsNamespace, key: string) {
16
- return this.base('get', namespace, key);
28
+ return this.base("get", namespace, key);
17
29
  }
18
30
 
19
31
  public delete(namespace: SettingsNamespace, key: string) {
20
- return this.base('delete', namespace, key);
32
+ return this.base("delete", namespace, key);
21
33
  }
22
34
 
23
- public put(namespace: SettingsNamespace, key: string, value: string, tag?: string, makeDefault?: boolean) {
35
+ public put(
36
+ namespace: SettingsNamespace,
37
+ key: string,
38
+ value: string,
39
+ tag?: string,
40
+ makeDefault?: boolean
41
+ ) {
24
42
  return this.base(
25
- 'put',
43
+ "put",
26
44
  namespace,
27
45
  key,
28
46
  value,
29
47
  ...(tag ? [tag] : []),
30
- ...(makeDefault ? ['default'] : []),
48
+ ...(makeDefault ? ["default"] : [])
31
49
  );
32
50
  }
33
51
 
34
- public reset(namespace: SettingsNamespace, mode: SettingsResetMode): Promise<string>;
35
- public reset(namespace: SettingsNamespace, packageName: string, tag?: string): Promise<string>;
36
- public reset(namespace: SettingsNamespace, modeOrPackageName: string, tag?: string): Promise<string> {
52
+ public reset(
53
+ namespace: SettingsNamespace,
54
+ mode: SettingsResetMode
55
+ ): Promise<string>;
56
+ public reset(
57
+ namespace: SettingsNamespace,
58
+ packageName: string,
59
+ tag?: string
60
+ ): Promise<string>;
61
+ public reset(
62
+ namespace: SettingsNamespace,
63
+ modeOrPackageName: string,
64
+ tag?: string
65
+ ): Promise<string> {
37
66
  return this.base(
38
- 'reset',
67
+ "reset",
39
68
  namespace,
40
69
  modeOrPackageName,
41
- ...(tag ? [tag] : []),
70
+ ...(tag ? [tag] : [])
42
71
  );
43
72
  }
44
73
 
45
74
  public async list(namespace: SettingsNamespace): Promise<string[]> {
46
- const output = await this.base('list', namespace);
47
- return output.split('\n');
75
+ const output = await this.base("list", namespace);
76
+ return output.split("\n");
48
77
  }
49
78
  }
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "./node_modules/@yume-chan/tsconfig/tsconfig.base.json",
3
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.0/node_modules/tslib/tslib.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/consumable.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/gather-string.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","../adb/esm/packet.d.ts","../adb/esm/auth.d.ts","../adb/esm/commands/base.d.ts","../adb/esm/commands/framebuffer.d.ts","../adb/esm/commands/power.d.ts","../adb/esm/socket/socket.d.ts","../adb/esm/socket/dispatcher.d.ts","../adb/esm/socket/index.d.ts","../adb/esm/commands/reverse.d.ts","../adb/esm/commands/subprocess/protocols/types.d.ts","../adb/esm/commands/subprocess/protocols/none.d.ts","../adb/esm/commands/subprocess/protocols/shell.d.ts","../adb/esm/commands/subprocess/protocols/index.d.ts","../adb/esm/commands/subprocess/command.d.ts","../adb/esm/commands/subprocess/utils.d.ts","../adb/esm/commands/subprocess/index.d.ts","../adb/esm/commands/sync/response.d.ts","../adb/esm/commands/sync/socket.d.ts","../adb/esm/commands/sync/stat.d.ts","../adb/esm/commands/sync/list.d.ts","../adb/esm/commands/sync/pull.d.ts","../adb/esm/commands/sync/request.d.ts","../adb/esm/commands/sync/push.d.ts","../adb/esm/commands/sync/sync.d.ts","../adb/esm/commands/sync/index.d.ts","../adb/esm/commands/tcpip.d.ts","../adb/esm/commands/index.d.ts","../adb/esm/features.d.ts","../adb/esm/adb.d.ts","../adb/esm/backend.d.ts","../adb/esm/crypto.d.ts","../adb/esm/utils/auto-reset-event.d.ts","../adb/esm/utils/base64.d.ts","../adb/esm/utils/conditional-variable.d.ts","../adb/esm/utils/index.d.ts","../adb/esm/index.d.ts","./src/bu.ts","./src/bug-report.ts","./src/cmd.ts","./src/settings.ts","./src/demo-mode.ts","./src/logcat.ts","./src/pm.ts","./src/index.ts","./src/overlay-display.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"12f034074aafde1bb145598fb874ae56b0b53a1c3ed0434a5d3ea8eb03c62b72","impliedFormat":99},{"version":"cc1d94a37d0dde4d5a85a35aa9133abdb9696987960116e29140c08ebdcdd869","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"152e4cab74b292a4de587e604c6133bab4525f0de7b32dfaf4a211de799ef262","impliedFormat":99},{"version":"1b1e7a0b9362425c6be672b9fcf1fb2763df4e959ce840c9fdce190eeb8905ba","impliedFormat":99},{"version":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"c4b01fc816c556f2479d264535644a9a4ba578e241027c21b2a2229b7647887e","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"c87cd07810cf18ff00240875c8e7b3249bb5e1dd15418193d27265586ba69179","impliedFormat":99},{"version":"b338c41818e59749b93f43406018eaa613a8ced869ad63873f2cea90643af5a1","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"a387648b45b3d02c838a213809bf7aa3a3c6e009b0cfedbbb98e7863219fd0b4","impliedFormat":99},{"version":"82d95f72c9325b602b1195a9f360b95adb7e923c1e0b9250ecc005089cbd2021","impliedFormat":99},{"version":"fd8347fd6cd4011b97ca0e578b64147040d25f1afd065bd75195d6050567382e","impliedFormat":99},{"version":"5402edb6222bbecbcda82571908c4b59a1f0782b022b3d40f3c8dd44008c6c76","impliedFormat":99},{"version":"316d7bdfb430fa119cbd460e01ffbf726321a5e54575c22b70e8ff56241d849a","impliedFormat":99},{"version":"4bc1ccb8c2c3b50d3502ffdbb66483eda7bef78b6e9daf396ec69e63efb2ff21","impliedFormat":99},{"version":"54c5a024ed2e63b62797f520e2e0623d4fdc7bb07abb474d460e6fe9f07ad7f3","impliedFormat":99},{"version":"61f0e8bdd3c52b89d45bf3681464040843ad8c8b70fff57df8960af47d5e0a5b","impliedFormat":99},{"version":"10e344cfaa2a9bded8a2e30756ed0852605887307b3039d13bfc445af8de8301","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"662cafdf363d512eff0d6c525c711684dba726ac5f4d09f473110a05c8ecd8e5","impliedFormat":99},{"version":"86c62ba4f3279d13647e2901b8819c9b32f4eb9645d50d02b4d60e5521f693db","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"057f28f1e4c53bfdc397099ee4bf873ef32f26a938a135881b19bf10f968a805","impliedFormat":99},{"version":"d00e790b0d3738482ddb18bb446210b41019520dd32438570d6bc533f7b95239","impliedFormat":99},{"version":"bd612398057a1da74a8be7f9691b175c5b9136f74b2196849b012bf3409aa9e0","impliedFormat":99},{"version":"9e33e135a12a5761c92a4ef0057e1d24310ada6f0758a13223036efc22b9e745","impliedFormat":99},{"version":"7565a3e1f88b68c438331d8ece71540f9fb5a11a8a0480b5c262c701142c5048","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"a21c587d34edbe9808b8f4fac207d190f802687b477ef55ee0f494d79a427f31","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"11fd6a023d60896a902933f64a2c8363102e5276838dbe29aa02a24c2e69fbd1","impliedFormat":99},{"version":"1087c7588b6e88542b88e6aa8498c09c6ce8c0c3df40bde2d37e20f357210a05","impliedFormat":99},{"version":"7b2e738c6a41ddb1ccfd7084619c45b1132a21c5f05f23c65ae3daa90b9ed24f","impliedFormat":99},{"version":"d5664fad55c16b09f4fbda92412a3c0d99c5e143434a5a82dc0f86d0823014ae","impliedFormat":99},{"version":"ac5d1242b5e0af60effdcbdbd2ea3f1a1cfbc2877eb4ad8e6df0e596ff3ce047","impliedFormat":99},{"version":"5db340210b35bc3cbe55892dd69d953a5d98f2063a9bb4717733bc262f0ae47c","impliedFormat":99},{"version":"b04d6cec751769f0fb57bd0b8db0ed3f2ac60be345207bbcdf8fc9f6de354515","impliedFormat":99},{"version":"b3326593def9cffb6cbfeddea51593a8865053d37a27db7580556a1b710a688b","impliedFormat":99},{"version":"d5bf42b8ace334e2a274b0e2c5d4c2f0eb53034813a692df4741dd299458060b","impliedFormat":99},{"version":"0a5123149bb8b9d612a7187a92e163b71f78a3dd182717660bfcd812e962cf31","impliedFormat":99},{"version":"aa235f1a22fbfcdf04c852a6ff4acd0ad6ea50e3c6875dce97ec14114fd311ad","impliedFormat":99},{"version":"a14c3eb861d4aa86a7f471b0779cb25f124b457cd0fe779b77261dcce816b19f","impliedFormat":99},{"version":"2d7311fdb705d03b0020f2ae6253a46c66f0457de0e5126188f4f78ea1192337","impliedFormat":99},{"version":"721313e1405531faa6e144e78ad3561023150692fbbcc23a4db9c2bda7e2b292","impliedFormat":99},{"version":"0bfafbea0db16cf312eb181f9153d840640fc36e47c0e61b30ddc16e5d23d432","impliedFormat":99},{"version":"3651947da5192aa0655f8a24ca016b3fb0a65bf24950cf52176d8972c7c32785","impliedFormat":99},{"version":"98da7969aa8079a6625791fdb0806f2cb125ae398bccd84e8cb8a76c454aac93","impliedFormat":99},{"version":"f31ad9485ec184e2fa924a3069c5eaf6f27b19e20b449893c6a288d0aa6337ae","impliedFormat":99},{"version":"2a06ca67fa040851e26d37c21979babae1064a117c137d6bc30051a20486ce03","impliedFormat":99},{"version":"8fc0d6a1e97a1fcd37ebdb72241e4608652a69e1a963ca662d1429750cf04f73","impliedFormat":99},{"version":"8f70945f7ea3ad857863b6035d2ac1fdf1b6793c6a2ca74ce89508f82be4dc29","impliedFormat":99},{"version":"85e159ffc1676583a00e26cdae8f40fa3139e32c89aa7ecbc725e120a8db1418","impliedFormat":99},{"version":"ea4d0669fa41158a8ae4dfbcb9f690f3177edd29c83a4cf01b74a4db24c5dcc8","impliedFormat":99},{"version":"81c0e96521d9ec47ea0f3bf09cb6fb49164232ddb1c809ec9e3b305c9a4421c9","impliedFormat":99},{"version":"a02909c6e3790be21c868ecb6476e58aeb8fef5c06f22437b224b317ae1a43f8","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"a76a1399270bdc86cfeb714aa6df221e2d6192a2c03431471ffdca52e5e4a356","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"020962899646e5e2efc7100d1a0c443be16800cef6f2cada68c20fe8de585d43","impliedFormat":99},{"version":"8984b8945e5a6f5af1eea0a34d4aa5f27029016dad98042fc6b459a76d8bdef0","impliedFormat":99},{"version":"b9ba968a57a494905241b7d4262cb3bc3aeb03b686415864e047ab1460ccb216","impliedFormat":99},{"version":"964c7df55e12845987b9f00ad0712f7c4f4cf9de0cd4c0a85a357e4e9ea84d10","impliedFormat":99},{"version":"2f90209a833cbd50fc60babcd00c89f5c7d9550191eaa6675efa0c1c2afc5c44","impliedFormat":99},{"version":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"6f74bbe0cfee09e9a504d4e4960a79bb400bdb7d7f1d016a232b550041f8bb7c","impliedFormat":99},{"version":"0d0dd6f1533d68d703542b713df2961e6749dca1885e07487fd5fd383bac0392","impliedFormat":99},{"version":"d21a377e40fb4a26b08d2b10c3a9f1bad0bb449cc7b2c7daee2b4a5fdc547b98","impliedFormat":99},{"version":"429ef6886111ecf78b149f35490457e9bb4bfdcdf164853c2473bfa21741e35c","signature":"7b90627a39baeacb912a959bdef2422ef3525b7c0b2c360dc3e18f32931a94a2","impliedFormat":99},{"version":"52cc342fd17e5e3f99e93f46d530da78e8295d46d0931c5c9c5026763999b287","signature":"c355193f6aadfe4c36969073e81fe2251b1c3c032448cbf6e9cd6d9210182e0f","impliedFormat":99},{"version":"fd669e682dde60eec4c0eb7c9ee2372ea79650c5855cfa55f6e4966adb902248","signature":"cd7dbaa64d15c14e186916d74851c15577a8f1e4f8b3adc54f15e6dadc203089","impliedFormat":99},{"version":"d0f76fbf71ff8b5df912ee23a311364f0faf9f17d1e4ea117ddf4bd1407393f8","signature":"a7452e1c7cbf594b4db56aaafeca0ae0bbd37ea3bf3641946e76706cf6ed9171","impliedFormat":99},{"version":"0230f7475a0f5e0168029f2722ba81303411456fbe850229d2a60e52a8082ab1","signature":"da63b9dd8489b1eacc567e43d447281c3976e92c821f358ad3456e90d5866174","impliedFormat":99},{"version":"944d9a10a28e253ce6d82f146b8b576b88259b6cbe9aa4a7b4375ed22b0d21af","signature":"b356b71038b7e3bddcb50b60f2d76f3e939b6195b1228b387a1472c08608f434","impliedFormat":99},{"version":"3bf13f20dd2b2526c9d67d9a9a911823695b69f820e2dea0859b6a9c686c5f5d","signature":"3070b666d836bcb92d079b1862efea9f321b41dea96e84d660f520ff348a8853","impliedFormat":99},{"version":"818d20434849ff4f9ad2a4ccf3a3af352fe5b6e686815727cee4f27827be8307","signature":"4a059cf4e321afc0a0e5e62264bd66ba08c67ba8464abe71777641601f719c11","impliedFormat":99},{"version":"5bd3485140f5613da47fa056702aefc972493106dbe590e208aa510bda48cf31","signature":"fcbcf04e18de290f4435d7671462b6275a6cc2167ea431c0ad41eddca54677ba","impliedFormat":99}],"root":[[136,144]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[94,99,100,101,107,126,127],[76,99,100],[76,94,100],[99,128],[76,128],[102,103,104,108,115,124,125],[102],[99,107,128],[102,112],[112,113,114],[109,110,111],[94,107,109,128],[76,94,107,128],[116,117,118,119,120,121,122,123],[76,116,117,118],[76,94,116,117],[76,94,117,121],[76],[76,94,135],[76,116,117],[94,99,107,116,117,118,119,128],[100,101,107,126,127,128,129,130,134],[76,94],[76,94,99,100,105],[105,106],[94,99,106],[99],[76,131,132,133],[60,135],[60,94,135],[60,135,139],[60,137,138,139,140,141,142],[60,76,94,135],[60,94,135,138],[95,96],[95],[95,96,97,98],[96],[76,78,79],[78],[81],[76,78,84],[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],[77,78],[77],[76,80],[76,78],[61,62,63,65],[61,62,66],[61,62,63,65,66],[64],[63],[64,67,74,75],[64,67,74],[67],[69],[69,70,71],[64,67,69],[68,72,73],[135],[94,135],[137,138,139,140,141,142]],"referencedMap":[[128,1],[101,2],[129,3],[102,4],[103,5],[126,6],[104,7],[108,8],[113,9],[115,10],[112,11],[110,12],[111,12],[109,13],[124,14],[119,15],[120,16],[122,17],[121,18],[116,18],[117,19],[118,20],[123,21],[125,7],[135,22],[100,23],[106,24],[107,25],[105,26],[131,27],[133,27],[134,28],[136,29],[137,30],[138,29],[140,31],[143,32],[141,33],[144,31],[142,34],[139,29],[97,35],[96,36],[99,37],[98,38],[80,39],[79,40],[81,40],[82,40],[83,41],[85,42],[86,40],[94,43],[87,40],[88,44],[89,40],[90,40],[78,45],[91,46],[92,47],[84,47],[93,47],[66,48],[63,49],[67,50],[65,51],[62,52],[76,53],[75,54],[68,55],[69,55],[70,56],[72,57],[71,58],[74,59],[73,55]],"exportedModulesMap":[[128,1],[101,2],[129,3],[102,4],[103,5],[126,6],[104,7],[108,8],[113,9],[115,10],[112,11],[110,12],[111,12],[109,13],[124,14],[119,15],[120,16],[122,17],[121,18],[116,18],[117,19],[118,20],[123,21],[125,7],[135,22],[100,23],[106,24],[107,25],[105,26],[131,27],[133,27],[134,28],[136,60],[137,61],[138,60],[140,60],[143,62],[141,19],[144,60],[142,61],[139,60],[97,35],[96,36],[99,37],[98,38],[80,39],[79,40],[81,40],[82,40],[83,41],[85,42],[86,40],[94,43],[87,40],[88,44],[89,40],[90,40],[78,45],[91,46],[92,47],[84,47],[93,47],[66,48],[63,49],[67,50],[65,51],[62,52],[76,53],[75,54],[68,55],[69,55],[70,56],[72,57],[71,58],[74,59],[73,55]],"semanticDiagnosticsPerFile":[60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,77,128,101,129,102,103,126,104,108,113,115,112,110,111,109,114,124,119,120,122,121,116,117,118,123,125,130,127,135,100,106,107,105,131,132,133,134,136,137,138,140,143,141,144,142,139,95,97,96,99,98,80,79,81,82,83,85,86,94,87,88,89,90,78,91,92,84,93,66,63,67,61,65,62,76,75,68,69,70,72,71,74,73,64],"latestChangedDtsFile":"./esm/logcat.d.ts"},"version":"5.0.3"}
@@ -1,17 +0,0 @@
1
- {
2
- "files": {
3
- "libraries/android-bin/.rush/temp/shrinkwrap-deps.json": "f98fe73a1324ba10f68b340b16f26ad5e6839dc1",
4
- "libraries/android-bin/CHANGELOG.json": "fe6cf4c3060c0a26cbe4670dac401d4e0355e42c",
5
- "libraries/android-bin/CHANGELOG.md": "96f766d21622b30474f9cbc0afe00b639e5eb99f",
6
- "libraries/android-bin/README.md": "96d1e739d73df6dc17920182c1c5799b65652b69",
7
- "libraries/android-bin/package.json": "67b1c613be1c34641a043d3b56515193185bb872",
8
- "libraries/android-bin/src/bu.ts": "cd4d6867127ea824c524989626268b26dde3c7de",
9
- "libraries/android-bin/src/bug-report.ts": "6ddd7519469da1ad82637c5d8f3ee81ade2cce1a",
10
- "libraries/android-bin/src/demo-mode.ts": "7e0b062afd72b51bc17e1b353003a0d4d2025060",
11
- "libraries/android-bin/src/index.ts": "829476e842a0c136d900c623e14a6f341dba5651",
12
- "libraries/android-bin/src/logcat.ts": "2dc17937fe03f02848dedfe38d66bce52aa738f3",
13
- "libraries/android-bin/src/settings.ts": "a323081296746d78ea07f473680321331ff0d46c",
14
- "libraries/android-bin/tsconfig.json": "d0e54ec5daaa5709c8d85627e682aaa4d6cda52b"
15
- },
16
- "arguments": "build-ts-package "
17
- }
@@ -1,17 +0,0 @@
1
- {
2
- "files": {
3
- "libraries/android-bin/.rush/temp/shrinkwrap-deps.json": "f98fe73a1324ba10f68b340b16f26ad5e6839dc1",
4
- "libraries/android-bin/CHANGELOG.json": "fe6cf4c3060c0a26cbe4670dac401d4e0355e42c",
5
- "libraries/android-bin/CHANGELOG.md": "96f766d21622b30474f9cbc0afe00b639e5eb99f",
6
- "libraries/android-bin/README.md": "96d1e739d73df6dc17920182c1c5799b65652b69",
7
- "libraries/android-bin/package.json": "67b1c613be1c34641a043d3b56515193185bb872",
8
- "libraries/android-bin/src/bu.ts": "cd4d6867127ea824c524989626268b26dde3c7de",
9
- "libraries/android-bin/src/bug-report.ts": "6ddd7519469da1ad82637c5d8f3ee81ade2cce1a",
10
- "libraries/android-bin/src/demo-mode.ts": "7e0b062afd72b51bc17e1b353003a0d4d2025060",
11
- "libraries/android-bin/src/index.ts": "829476e842a0c136d900c623e14a6f341dba5651",
12
- "libraries/android-bin/src/logcat.ts": "2dc17937fe03f02848dedfe38d66bce52aa738f3",
13
- "libraries/android-bin/src/settings.ts": "a323081296746d78ea07f473680321331ff0d46c",
14
- "libraries/android-bin/tsconfig.json": "d0e54ec5daaa5709c8d85627e682aaa4d6cda52b"
15
- },
16
- "arguments": "build-ts-package --incremental "
17
- }
@@ -1,5 +0,0 @@
1
- {
2
- "../../libraries/android-bin": "../../libraries/android-bin:2TzHzSRfriFm1P/1jSIYi2jWDPziVYu0NQ/oDfUIGY8=:",
3
- "/tslib/2.4.0": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
4
- "/typescript/4.7.4": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ=="
5
- }
@@ -1 +0,0 @@
1
- Invoking: build-ts-package --incremental
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "extends": "./node_modules/@yume-chan/ts-package-builder/tsconfig.base.json",
3
- "references": [
4
- {
5
- "path": "../adb/tsconfig.build.json"
6
- },
7
- {
8
- "path": "../stream-extra/tsconfig.build.json"
9
- }
10
- ]
11
- }