@yume-chan/android-bin 0.0.16 → 0.0.18

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.
package/src/logcat.ts CHANGED
@@ -1,7 +1,18 @@
1
1
  // cspell: ignore logcat
2
2
 
3
- import { AdbCommandBase, AdbSubprocessNoneProtocol, BufferedStream, BufferedStreamEndedError, DecodeUtf8Stream, ReadableStream, SplitLineStream, WritableStream } from "@yume-chan/adb";
4
- import Struct, { StructAsyncDeserializeStream } from "@yume-chan/struct";
3
+ import { AdbCommandBase, AdbSubprocessNoneProtocol } from "@yume-chan/adb";
4
+ import {
5
+ BufferedTransformStream,
6
+ DecodeUtf8Stream,
7
+ SplitStringStream,
8
+ WrapReadableStream,
9
+ WritableStream,
10
+ type ReadableStream,
11
+ } from "@yume-chan/stream-extra";
12
+ import Struct, {
13
+ decodeUtf8,
14
+ type StructAsyncDeserializeStream,
15
+ } from "@yume-chan/struct";
5
16
 
6
17
  // `adb logcat` is an alias to `adb shell logcat`
7
18
  // so instead of adding to core library, it's implemented here
@@ -19,10 +30,12 @@ export enum LogId {
19
30
  Kernel,
20
31
  }
21
32
 
22
- export enum LogPriority {
33
+ // https://cs.android.com/android/platform/superproject/+/master:system/logging/liblog/include/android/log.h;l=73;drc=82b5738732161dbaafb2e2f25cce19cd26b9157d
34
+ export enum AndroidLogPriority {
23
35
  Unknown,
24
36
  Default,
25
37
  Verbose,
38
+ Debug,
26
39
  Info,
27
40
  Warn,
28
41
  Error,
@@ -30,6 +43,42 @@ export enum LogPriority {
30
43
  Silent,
31
44
  }
32
45
 
46
+ // https://cs.android.com/android/platform/superproject/+/master:system/logging/liblog/logprint.cpp;l=140;drc=8dbf3b2bb6b6d1652d9797e477b9abd03278bb79
47
+ export const AndroidLogPriorityToCharacter: Record<AndroidLogPriority, string> =
48
+ {
49
+ [AndroidLogPriority.Unknown]: "?",
50
+ [AndroidLogPriority.Default]: "?",
51
+ [AndroidLogPriority.Verbose]: "V",
52
+ [AndroidLogPriority.Debug]: "D",
53
+ [AndroidLogPriority.Info]: "I",
54
+ [AndroidLogPriority.Warn]: "W",
55
+ [AndroidLogPriority.Error]: "E",
56
+ [AndroidLogPriority.Fatal]: "F",
57
+ [AndroidLogPriority.Silent]: "S",
58
+ };
59
+
60
+ export enum LogcatFormat {
61
+ Brief,
62
+ Process,
63
+ Tag,
64
+ Thread,
65
+ Raw,
66
+ Time,
67
+ ThreadTime,
68
+ Long,
69
+ }
70
+
71
+ export interface LogcatFormatModifiers {
72
+ usec?: boolean;
73
+ printable?: boolean;
74
+ year?: boolean;
75
+ zone?: boolean;
76
+ epoch?: boolean;
77
+ monotonic?: boolean;
78
+ uid?: boolean;
79
+ descriptive?: boolean;
80
+ }
81
+
33
82
  export interface LogcatOptions {
34
83
  pid?: number;
35
84
  ids?: LogId[];
@@ -38,39 +87,91 @@ export interface LogcatOptions {
38
87
  const NANOSECONDS_PER_SECOND = BigInt(1e9);
39
88
 
40
89
  // https://cs.android.com/android/platform/superproject/+/master:system/logging/liblog/include/log/log_read.h;l=39;drc=82b5738732161dbaafb2e2f25cce19cd26b9157d
41
- export const LoggerEntry =
42
- new Struct({ littleEndian: true })
43
- .uint16('payloadSize')
44
- .uint16('headerSize')
45
- .int32('pid')
46
- .uint32('tid')
47
- .uint32('second')
48
- .uint32('nanoseconds')
49
- .uint32('logId')
50
- .uint32('uid')
51
- .extra({
52
- get timestamp() {
53
- return BigInt(this.second) * NANOSECONDS_PER_SECOND + BigInt(this.nanoseconds);
54
- },
55
- });
56
-
57
- export type LoggerEntry = typeof LoggerEntry['TDeserializeResult'];
58
-
59
- export interface LogMessage extends LoggerEntry {
60
- priority: LogPriority;
61
- payload: Uint8Array;
90
+ export const LoggerEntry = new Struct({ littleEndian: true })
91
+ .uint16("payloadSize")
92
+ .uint16("headerSize")
93
+ .int32("pid")
94
+ .uint32("tid")
95
+ .uint32("second")
96
+ .uint32("nanoseconds")
97
+ .uint32("logId")
98
+ .uint32("uid")
99
+ .extra({
100
+ get timestamp() {
101
+ return (
102
+ BigInt(this.second) * NANOSECONDS_PER_SECOND +
103
+ BigInt(this.nanoseconds)
104
+ );
105
+ },
106
+ });
107
+
108
+ export type LoggerEntry = typeof LoggerEntry["TDeserializeResult"];
109
+
110
+ // https://cs.android.com/android/platform/superproject/+/master:system/logging/liblog/logprint.cpp;drc=bbe77d66e7bee8bd1f0bc7e5492b5376b0207ef6;bpv=0
111
+ export interface AndroidLogEntry extends LoggerEntry {
112
+ priority: AndroidLogPriority;
113
+ tag: string;
114
+ message: string;
115
+ }
116
+
117
+ // https://cs.android.com/android/platform/superproject/+/master:system/logging/liblog/logprint.cpp;l=1415;drc=8dbf3b2bb6b6d1652d9797e477b9abd03278bb79
118
+ export function formatAndroidLogEntry(
119
+ entry: AndroidLogEntry,
120
+ format: LogcatFormat = LogcatFormat.Brief,
121
+ modifier?: LogcatFormatModifiers
122
+ ) {
123
+ const uid = modifier?.uid ? `${entry.uid.toString().padStart(5)}:` : "";
124
+
125
+ switch (format) {
126
+ // TODO: implement other formats
127
+ default:
128
+ return `${
129
+ AndroidLogPriorityToCharacter[entry.priority]
130
+ }/${entry.tag.padEnd(8)}(${uid}${entry.pid
131
+ .toString()
132
+ .padStart(5)}): ${entry.message}`;
133
+ }
134
+ }
135
+
136
+ function findTagEnd(payload: Uint8Array) {
137
+ for (const separator of [0, " ".charCodeAt(0), ":".charCodeAt(0)]) {
138
+ const index = payload.indexOf(separator);
139
+ if (index !== -1) {
140
+ return index;
141
+ }
142
+ }
143
+
144
+ const index = payload.findIndex((x) => x >= 0x7f);
145
+ if (index !== -1) {
146
+ return index;
147
+ }
148
+
149
+ return payload.length;
62
150
  }
63
151
 
64
- export async function deserializeLogMessage(stream: StructAsyncDeserializeStream): Promise<LogMessage> {
65
- const entry = await LoggerEntry.deserialize(stream);
152
+ export async function deserializeAndroidLogEntry(
153
+ stream: StructAsyncDeserializeStream
154
+ ): Promise<AndroidLogEntry> {
155
+ const entry = (await LoggerEntry.deserialize(
156
+ stream
157
+ )) as unknown as AndroidLogEntry;
66
158
  if (entry.headerSize !== LoggerEntry.size) {
67
159
  await stream.read(entry.headerSize - LoggerEntry.size);
68
160
  }
69
- const priority = (await stream.read(1))[0] as LogPriority;
70
- const payload = await stream.read(entry.payloadSize - 1);
71
- (entry as any).priority = priority;
72
- (entry as any).payload = payload;
73
- return entry as LogMessage;
161
+ let payload = await stream.read(entry.payloadSize);
162
+
163
+ // https://cs.android.com/android/platform/superproject/+/master:system/logging/logcat/logcat.cpp;l=193-194;drc=bbe77d66e7bee8bd1f0bc7e5492b5376b0207ef6
164
+ // TODO: payload for some log IDs are in binary format.
165
+ entry.priority = payload[0] as AndroidLogPriority;
166
+
167
+ payload = payload.subarray(1);
168
+ const tagEnd = findTagEnd(payload);
169
+ entry.tag = decodeUtf8(payload.subarray(0, tagEnd));
170
+ entry.message =
171
+ tagEnd < payload.length - 1
172
+ ? decodeUtf8(payload.subarray(tagEnd + 1))
173
+ : "";
174
+ return entry;
74
175
  }
75
176
 
76
177
  export interface LogSize {
@@ -89,106 +190,117 @@ export class Logcat extends AdbCommandBase {
89
190
 
90
191
  public static logNameToId(name: string): LogId {
91
192
  const key = name[0]!.toUpperCase() + name.substring(1);
92
- return (LogId as any)[key];
193
+ return LogId[key as keyof typeof LogId];
93
194
  }
94
195
 
95
196
  public static joinLogId(ids: LogId[]): string {
96
- return ids.map(id => Logcat.logIdToName(id)).join(',');
197
+ return ids.map((id) => Logcat.logIdToName(id)).join(",");
97
198
  }
98
199
 
99
200
  public static parseSize(value: number, multiplier: string): number {
100
- const MULTIPLIERS = ['', 'Ki', 'Mi', 'Gi'];
201
+ const MULTIPLIERS = ["", "Ki", "Mi", "Gi"];
101
202
  return value * 1024 ** (MULTIPLIERS.indexOf(multiplier) || 0);
102
203
  }
103
204
 
104
205
  // TODO: logcat: Support output format before Android 10
105
206
  // ref https://android-review.googlesource.com/c/platform/system/core/+/748128
106
- public static readonly LOG_SIZE_REGEX_10 = /(.*): ring buffer is (.*) (.*)B \((.*) (.*)B consumed\), max entry is (.*) B, max payload is (.*) B/;
207
+ public static readonly LOG_SIZE_REGEX_10 =
208
+ /(.*): ring buffer is (.*) (.*)B \((.*) (.*)B consumed\), max entry is (.*) B, max payload is (.*) B/;
107
209
 
108
210
  // Android 11 added `readable` part
109
211
  // ref https://android-review.googlesource.com/c/platform/system/core/+/1390940
110
- public static readonly LOG_SIZE_REGEX_11 = /(.*): ring buffer is (.*) (.*)B \((.*) (.*)B consumed, (.*) (.*)B readable\), max entry is (.*) B, max payload is (.*) B/;
212
+ public static readonly LOG_SIZE_REGEX_11 =
213
+ /(.*): ring buffer is (.*) (.*)B \((.*) (.*)B consumed, (.*) (.*)B readable\), max entry is (.*) B, max payload is (.*) B/;
111
214
 
112
215
  public async getLogSize(ids?: LogId[]): Promise<LogSize[]> {
113
216
  const { stdout } = await this.adb.subprocess.spawn([
114
- 'logcat',
115
- '-g',
116
- ...(ids ? ['-b', Logcat.joinLogId(ids)] : [])
217
+ "logcat",
218
+ "-g",
219
+ ...(ids ? ["-b", Logcat.joinLogId(ids)] : []),
117
220
  ]);
118
221
 
119
222
  const result: LogSize[] = [];
120
223
  await stdout
121
224
  .pipeThrough(new DecodeUtf8Stream())
122
- .pipeThrough(new SplitLineStream())
123
- .pipeTo(new WritableStream({
124
- write(chunk) {
125
- let match = chunk.match(Logcat.LOG_SIZE_REGEX_11);
126
- if (match) {
127
- result.push({
128
- id: Logcat.logNameToId(match[1]!),
129
- size: Logcat.parseSize(Number.parseInt(match[2]!, 10), match[3]!),
130
- readable: Logcat.parseSize(Number.parseInt(match[6]!, 10), match[7]!),
131
- consumed: Logcat.parseSize(Number.parseInt(match[4]!, 10), match[5]!),
132
- maxEntrySize: parseInt(match[8]!, 10),
133
- maxPayloadSize: parseInt(match[9]!, 10),
134
- });
135
- }
136
-
137
- match = chunk.match(Logcat.LOG_SIZE_REGEX_10);
138
- if (match) {
139
- result.push({
140
- id: Logcat.logNameToId(match[1]!),
141
- size: Logcat.parseSize(Number.parseInt(match[2]!, 10), match[3]!),
142
- consumed: Logcat.parseSize(Number.parseInt(match[4]!, 10), match[5]!),
143
- maxEntrySize: parseInt(match[6]!, 10),
144
- maxPayloadSize: parseInt(match[7]!, 10),
145
- });
146
- }
147
- },
148
- }));
225
+ .pipeThrough(new SplitStringStream("\n"))
226
+ .pipeTo(
227
+ new WritableStream({
228
+ write(chunk) {
229
+ let match = chunk.match(Logcat.LOG_SIZE_REGEX_11);
230
+ if (match) {
231
+ result.push({
232
+ id: Logcat.logNameToId(match[1]!),
233
+ size: Logcat.parseSize(
234
+ Number.parseInt(match[2]!, 10),
235
+ match[3]!
236
+ ),
237
+ readable: Logcat.parseSize(
238
+ Number.parseInt(match[6]!, 10),
239
+ match[7]!
240
+ ),
241
+ consumed: Logcat.parseSize(
242
+ Number.parseInt(match[4]!, 10),
243
+ match[5]!
244
+ ),
245
+ maxEntrySize: parseInt(match[8]!, 10),
246
+ maxPayloadSize: parseInt(match[9]!, 10),
247
+ });
248
+ }
249
+
250
+ match = chunk.match(Logcat.LOG_SIZE_REGEX_10);
251
+ if (match) {
252
+ result.push({
253
+ id: Logcat.logNameToId(match[1]!),
254
+ size: Logcat.parseSize(
255
+ Number.parseInt(match[2]!, 10),
256
+ match[3]!
257
+ ),
258
+ consumed: Logcat.parseSize(
259
+ Number.parseInt(match[4]!, 10),
260
+ match[5]!
261
+ ),
262
+ maxEntrySize: parseInt(match[6]!, 10),
263
+ maxPayloadSize: parseInt(match[7]!, 10),
264
+ });
265
+ }
266
+ },
267
+ })
268
+ );
149
269
 
150
270
  return result;
151
271
  }
152
272
 
153
273
  public async clear(ids?: LogId[]) {
154
274
  await this.adb.subprocess.spawnAndWait([
155
- 'logcat',
156
- '-c',
157
- ...(ids ? ['-b', Logcat.joinLogId(ids)] : []),
275
+ "logcat",
276
+ "-c",
277
+ ...(ids ? ["-b", Logcat.joinLogId(ids)] : []),
158
278
  ]);
159
279
  }
160
280
 
161
- public binary(options?: LogcatOptions): ReadableStream<LogMessage> {
162
- let bufferedStream: BufferedStream;
163
- return new ReadableStream({
164
- start: async () => {
165
- const { stdout } = await this.adb.subprocess.spawn([
166
- 'logcat',
167
- '-B',
168
- ...(options?.pid ? ['--pid', options.pid.toString()] : []),
169
- ...(options?.ids ? ['-b', Logcat.joinLogId(options.ids)] : [])
170
- ], {
281
+ public binary(options?: LogcatOptions): ReadableStream<AndroidLogEntry> {
282
+ return new WrapReadableStream(async () => {
283
+ // TODO: make `spawn` return synchronously with streams pending
284
+ // so it's easier to chain them.
285
+ const { stdout } = await this.adb.subprocess.spawn(
286
+ [
287
+ "logcat",
288
+ "-B",
289
+ ...(options?.pid ? ["--pid", options.pid.toString()] : []),
290
+ ...(options?.ids
291
+ ? ["-b", Logcat.joinLogId(options.ids)]
292
+ : []),
293
+ ],
294
+ {
171
295
  // PERF: None protocol is 150% faster then Shell protocol
172
296
  protocols: [AdbSubprocessNoneProtocol],
173
- });
174
- bufferedStream = new BufferedStream(stdout);
175
- },
176
- async pull(controller) {
177
- try {
178
- const entry = await deserializeLogMessage(bufferedStream);
179
- controller.enqueue(entry);
180
- } catch (e) {
181
- if (e instanceof BufferedStreamEndedError) {
182
- controller.close();
183
- return;
184
- }
185
-
186
- throw e;
187
297
  }
188
- },
189
- cancel() {
190
- bufferedStream.close();
191
- },
192
- });
298
+ );
299
+ return stdout;
300
+ }).pipeThrough(
301
+ new BufferedTransformStream((stream) => {
302
+ return deserializeAndroidLogEntry(stream);
303
+ })
304
+ );
193
305
  }
194
306
  }
@@ -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@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.4.1/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/chunk.d.ts","../stream-extra/esm/decode-utf8.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/install.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/stat.d.ts","../adb/esm/commands/sync/list.d.ts","../adb/esm/commands/sync/pull.d.ts","../adb/esm/commands/sync/push.d.ts","../adb/esm/commands/sync/request.d.ts","../adb/esm/utils/auto-reset-event.d.ts","../adb/esm/utils/base64.d.ts","../adb/esm/utils/index.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/index.d.ts","./src/bu.ts","./src/bug-report.ts","./src/settings.ts","./src/demo-mode.ts","./src/logcat.ts","./src/index.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"a916bd79fa897dfbfcfef0885727e005c015727e5ade51a5ca91f61eeca4b00f","impliedFormat":99},{"version":"ce15dfc8bba1c2d8b919a3b55dabe4c6269b81fbb78989586dfc1b2cdc1ec7a3","impliedFormat":99},{"version":"a0ba486f9abc9bdbf03878b06932a7de42cadeb3a760a9cd336cb7614a8ce73e","impliedFormat":99},{"version":"3c8bc049dae424f3b67fd4567e57abf037cf6698508703a33e95a0b93704d921","impliedFormat":99},{"version":"e2cdef9ccaf2ec8313c11030a44402276e3f2d33b2635e50a5c85da7c169705f","impliedFormat":99},{"version":"a198bc56ca1cabeb2100f93ed61a14457c8a0d7f3ee92a457774abefbf2af7e9","impliedFormat":99},{"version":"4000865d5ddad64d7894da59d95ef9900473502006100a4ed82cc950cf7c2f56","impliedFormat":99},{"version":"9d8e9863033f8c7872b0efa8b30abc489200d6dfbbb7e350e83567ee7d9849f3","impliedFormat":99},{"version":"20b17b2e6d5d0ab3188e6ba77369c12b8ff8c1c53d7738e72ff32404d1fb9806","impliedFormat":99},{"version":"238d44461641c771704ae948e129b280d05fad01b060f8e78a37a28ae346e7a4","impliedFormat":99},{"version":"94788f554a52e0a3abb6653395c2da112d2fcf17786464e8b430ed6855e63063","impliedFormat":99},{"version":"05ff8aaf99e2fe90a8bead1f2abe7001b1f2883b3733f68edc138d42d4a64fbc","impliedFormat":99},{"version":"b620d8091fc4a3520370c0faf794ef5d8e663f9cf5c419615c46923a2faf7658","impliedFormat":99},{"version":"deb19b18352719845b83f911ec5f6520b11918c45327267d828658ad3e15f59a","impliedFormat":99},{"version":"7ca63f52c8ada038d44dbd9e0cd6bbc654762dbb2cb25c1acb66912e541aa5d8","impliedFormat":99},{"version":"16b6014cf97bb1eed71f5955ba76e1714f852e0ada929661c2f3215b8b2694f7","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"bf1b953026023eab871cd33c181b70261a13e2d2c8ae2a82974ab546eaf0d55d","impliedFormat":99},{"version":"a826d0ce76bf41e249ce59c3246fa6463b4b3ae8ca922de1b291c8228b596d4f","impliedFormat":99},{"version":"519667c1e67843d0b5639067aff734c8b2790db9d54bfbcc1e01a72c35a1899c","impliedFormat":99},{"version":"8f761c78ed6b6a8d1a7a06de589b885ee8f1d6cfc35869271aadef12453e6792","impliedFormat":99},{"version":"a045afb91a1874d04a03ef23ba88467d54cb0d0ce9bb7a6f9bbf0aef0fcb2987","impliedFormat":99},{"version":"09f7cf923b40a668786baa010975a2741eaee0221cd2223a4a93b626eae11b25","impliedFormat":99},{"version":"aa24a56a19061cf24248df631db467c47dbac51b3007d0ca3571f63a9454c3f1","impliedFormat":99},{"version":"8ae5b1ec391cee87c0a2b1618244fd68f2c4648feb300506cee22836479d36e9","impliedFormat":99},{"version":"372c41ec228da5feadb0ea2e009e50767d6a7e029d9fae16baf5d7561beee141","impliedFormat":99},{"version":"6432fa68f24fb1b2a855c4537d34854ff49431866f8c3b22a6dd47d427389875","impliedFormat":99},{"version":"eb589b10ce1aff55e80870f1ec80b844af04d29272a52f87e84af33785ca3b63","impliedFormat":99},{"version":"d46d9b5809fbedc466e5a7f5d271c6eab6646023e8e74af42895f19729baed09","impliedFormat":99},{"version":"614bd59e02cef825d1376a35a08ca28aa3ea2465bc47cae98a23418e6b6b98dd","impliedFormat":99},{"version":"187135e423dde8f10f28d980fde73ed45d2ab83377da3c9e43b58cb7cb55cb7f","impliedFormat":99},{"version":"c51e9542d1586923fc237ee9e7e7850515278d20e7c9554200c4088b1ab8b1b5","impliedFormat":99},{"version":"15d73de6b3ccca063cd20adbb6de0ca1f388c9525c49ada08b4e4aed482f81d2","impliedFormat":99},{"version":"3d4fc1ed5c1c6f311aebeff68ec8038718a12eaef5d0ae5cbd5133112956356f","impliedFormat":99},{"version":"6e4a3c4dad188295c5ea0cd7d0b18374bed555f7f4bd1f692adb6d0646b84a6c","impliedFormat":99},{"version":"f42981e268e693681dc46a595320a28e76eb1d035c0fd02782fad4530c4b9460","impliedFormat":99},{"version":"953f8ee025732d4442fed525cbaaa51e8380a658a2db9e65472b1a45a96eb863","impliedFormat":99},{"version":"8cc812db40101403f8753561d5d56444e582d6658a1825fd65d8b6dc33001854","impliedFormat":99},{"version":"056dc576a8a4b0f3d7e3ea62ffc50927a44f170dbf504cacbc167faa891aa1c4","impliedFormat":99},{"version":"aceaeb6c567ba234db5c5ac83ca5f655d4cb3f2b41bb2e3d46156aef5f821e08","impliedFormat":99},{"version":"84c5cc391901da2628c314773e35ba4ef8baf8cbd16b1f6e2715c888ec111a78","impliedFormat":99},{"version":"4da0617c1ac8332b25f811ae35017eaf148797897f475caaeee75aedf15dffb0","impliedFormat":99},{"version":"9eca3b06248f861f7933509f9632c05df013bce190c7636ee2c63bb5743258e0","impliedFormat":99},{"version":"f2ea9fdb05e50fe5d40f84042610f42afe73ef2774a49d32dac00035ac4107a9","impliedFormat":99},{"version":"c6001fafc7731da0caba163dbff511aa30d620995557e92ce13489d8fdbdeaf2","impliedFormat":99},{"version":"1f24801a3dfa156fc29a4c8456bb36966c948b4c199e2666a436c5344d2bf3a7","impliedFormat":99},{"version":"f23883381baf233145da8f3bf3c9a7d808d02bfcb5987c11a9defe8d090d0f18","impliedFormat":99},{"version":"e08f98feba0e30767fdd48707bd597a485d110e520b62fd82eca1894cb8ab4ac","impliedFormat":99},{"version":"6def100d69465dc80d30e9b51d18b3bedbfe718374ba0d49183549f4e8932c90","impliedFormat":99},{"version":"af0d6d71123142cb9f354cd30d67ef22e4bd94fd0195bc18cc627c8bd2dc1d6d","impliedFormat":99},{"version":"d509f6d8d6f0e08b0e2dc1d5671a2ab45517af73b569659327b3fbac7b3f756e","impliedFormat":99},{"version":"6c41d857cf525bb086dd457c444964491da7720e03adaaac2de9d1f2fcd02d4e","impliedFormat":99},{"version":"4f16b604f497e0049e9e7bab696dcc3a237d0c4061d21c23faac1e14c42ac2fd","impliedFormat":99},{"version":"d8ce61cd5b8cc8b55615da94a9d7bdf47c9d9a137fdde024558285faa1078524","impliedFormat":99},{"version":"35bff32ca3d9d2703c5c57ad038a32f911ca5d87c89418c89dc50ccfbccbde85","impliedFormat":99},{"version":"6b44d169ab55a5c72574829c69588d8ac2a558163794a0e957cb92c0ba7669eb","impliedFormat":99},{"version":"bcdf2415f10ac1d98b74f2f074b3f3e1586e591c85d63f065354de7510f3fb3c","impliedFormat":99},{"version":"a379dedfa350f3d110f3aaa56be1e8ecd65cbc65cc5178faae14ee3763847027","impliedFormat":99},{"version":"166b9de623e58fab8b63ff05b44e011cfda9d58a1e50940e4ea873222ea30ca4","impliedFormat":99},{"version":"85b112003245613f70fd2c721f3a579b050ec153c9e4c95ce05212f171e5d62c","impliedFormat":99},{"version":"0976c6a225dd08f11800e8705f7205495043c5f7be93747bc00a376a49dad7a1","impliedFormat":99},{"version":"147793d928f57a4496c91495c15ca8222b0361847e6244a1b8202b0e6b5d7037","impliedFormat":99},{"version":"9ec1a3ac131e28eb57c383f1ce940d42dbb833074089eef51de745c01d37fa8f","impliedFormat":99},{"version":"6f89fa1c31a3fa771df3ea464923c5cda615813abd5fcd3c668fa5fe6f3be5cf","impliedFormat":99},{"version":"87564b88fce6667892e67b5de8e7aca91c2c831c38896927ea864e06331aa450","impliedFormat":99},{"version":"5fd49a17eb68b7c369db85b6babab7646cce6642258c5f0d850260f2a812657f","impliedFormat":99},{"version":"3e53a4938bd3ec19a96c4e973915805723ae10c17a104b9b3ae4ab6a8b342675","impliedFormat":99},{"version":"0e14bd8d7d8622ba8fae3dfdbe0c699caa6b0c1741aece10b015b07cc92f4637","impliedFormat":99},{"version":"2e9e45960564e199eb7fa44c177c1ed9f0a73cf97856e5a6aee3f678e7b26624","impliedFormat":99},{"version":"e92fe581a8be70e4613b143949670e934b9c31202e641666dba2e87b4599ee6c","impliedFormat":99},{"version":"c6496f6fb0375ebe6289eb848ac11e20145f64225d1f653faea63f76f24961a4","impliedFormat":99},{"version":"5f46c691c21387109a4eec46784a165512bc28aab6fb7163c3998d7fe1e85599","impliedFormat":99},{"version":"23c6cf9e991a93961c881844f96340f0e857354e8b03cd44fe55d3ebbeb9ece0","impliedFormat":99},{"version":"429ef6886111ecf78b149f35490457e9bb4bfdcdf164853c2473bfa21741e35c","signature":"ef5e3646c25ad52b09dbca2033073452252dc251f74928b228e5789ed70322d1","impliedFormat":99},{"version":"d65037b1b6c8c53d254246ecb9470fd962d2558cce9c8e6587f743bc869ab02a","signature":"acc1b719d28842ef1dc33c599d6cee043de92a94e558c5bd93f3ecb150d577c5","impliedFormat":99},{"version":"53a1f7d132d24fc8166f4e67c67831c60c5bd1c5f3a7ed715105dc7178a319c9","signature":"cb80f16b1b17cf106f782655dd96ce4a48565e70d6ba413e93308d9c4412d1d7","impliedFormat":99},{"version":"7732f8c7141829bd5324e1e6b7b7511cba5c3866a7bb9ee8983668144cdeb7d2","signature":"a3f148e0c16c6b9aa8fda735586a2b02a9d4151854059a27478d710888cd256e","impliedFormat":99},{"version":"d3603e7ebeba7858766cb2633190894a63a6de2a89a9f570b43512dc14907424","signature":"3d2605e6be01819f3f1e4ecbb077c9ed315eacc1a32cc1c31d0c83b4306cb8f3","impliedFormat":99},{"version":"9c7a2d727ccb38e5c862d22bdb9adef73481676c5b1d31b8006508fd0ce8b07f","signature":"73fe2e764ecdfebafcf6e895ece70c94632741ac822800c61ad223612c7ba016","impliedFormat":99}],"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":[[88,93,94,95,102,123,124],[71,93,94],[71,88,94],[93,125],[71,125],[96,97,98,99,103,110,121,122],[88,125],[96],[93,102,125],[96,107],[107,108,109],[104,105,106],[88,102,104,125],[71,88,102,125],[111,112,113,114,115,116,120],[71,88,111,112],[71,88,111],[71,88],[88,93,102,111,112,113,119,125],[94,95,102,119,123,124,125,126,127],[71,88,93,94,100],[100,101],[88,93,101],[93],[71,117,118],[55,128],[55,88,128],[55,128,131],[55,130,131,132,133],[55,71,88,128],[89,90],[89],[89,90,91,92],[90],[71,73,74],[73],[71,73,78],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87],[72,73],[72],[71,75],[71,73],[56,57,58,60],[56,57,61],[56,57,58,60,61],[59],[58],[59,62,69,70],[59,62,69],[62],[64],[64,65,66],[59,62,64],[63,67,68],[128],[88,128],[130,131,132,133],[71,88,128]],"referencedMap":[[125,1],[95,2],[126,3],[96,4],[97,5],[123,6],[98,7],[99,8],[103,9],[108,10],[110,11],[107,12],[105,13],[106,13],[104,14],[121,15],[113,16],[114,17],[115,18],[116,18],[111,18],[112,17],[120,19],[122,8],[128,20],[94,18],[101,21],[102,22],[100,23],[117,24],[119,25],[129,26],[130,27],[132,28],[134,29],[133,30],[131,26],[91,31],[90,32],[93,33],[92,34],[75,35],[74,36],[76,36],[77,36],[79,37],[80,36],[88,38],[81,36],[82,39],[83,36],[84,36],[73,40],[85,41],[86,42],[78,42],[87,42],[61,43],[58,44],[62,45],[60,46],[57,47],[71,48],[70,49],[63,50],[64,50],[65,51],[67,52],[66,53],[69,54],[68,50]],"exportedModulesMap":[[125,1],[95,2],[126,3],[96,4],[97,5],[123,6],[98,7],[99,8],[103,9],[108,10],[110,11],[107,12],[105,13],[106,13],[104,14],[121,15],[113,16],[114,17],[115,18],[116,18],[111,18],[112,17],[120,19],[122,8],[128,20],[94,18],[101,21],[102,22],[100,23],[117,24],[119,25],[129,55],[130,56],[132,55],[134,57],[133,58],[131,55],[91,31],[90,32],[93,33],[92,34],[75,35],[74,36],[76,36],[77,36],[79,37],[80,36],[88,38],[81,36],[82,39],[83,36],[84,36],[73,40],[85,41],[86,42],[78,42],[87,42],[61,43],[58,44],[62,45],[60,46],[57,47],[71,48],[70,49],[63,50],[64,50],[65,51],[67,52],[66,53],[69,54],[68,50]],"semanticDiagnosticsPerFile":[55,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,10,54,72,125,95,126,96,97,123,98,99,103,108,110,107,105,106,104,109,121,113,114,115,116,111,112,120,122,127,124,128,94,101,102,100,117,118,119,129,130,132,134,133,131,89,91,90,93,92,75,74,76,77,79,80,88,81,82,83,84,73,85,86,78,87,61,58,62,56,60,57,71,70,63,64,65,67,66,69,68,59],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"4.9.4"}
@@ -1,17 +0,0 @@
1
- {
2
- "files": {
3
- "libraries/android-bin/.rush/temp/shrinkwrap-deps.json": "7a8b693a797f929a5184cf7a08cda9ced8e4a529",
4
- "libraries/android-bin/CHANGELOG.json": "7841c67fb164723bb7794b00dc8c16bd89b6b637",
5
- "libraries/android-bin/CHANGELOG.md": "d482e630baa62381336b5f33434f34f642a2fa54",
6
- "libraries/android-bin/README.md": "96d1e739d73df6dc17920182c1c5799b65652b69",
7
- "libraries/android-bin/package.json": "fd78491208045108132158872c1af1075c286dae",
8
- "libraries/android-bin/src/bu.ts": "cd4d6867127ea824c524989626268b26dde3c7de",
9
- "libraries/android-bin/src/bug-report.ts": "b4d7c78eaa2abb610a88f240872d209d083b70c9",
10
- "libraries/android-bin/src/demo-mode.ts": "1ee4a2d1bc238a1600387fc39549241a2a6bb161",
11
- "libraries/android-bin/src/index.ts": "829476e842a0c136d900c623e14a6f341dba5651",
12
- "libraries/android-bin/src/logcat.ts": "8144312c653710ecabe10186f9eb2afa0aeaf2db",
13
- "libraries/android-bin/src/settings.ts": "a323081296746d78ea07f473680321331ff0d46c",
14
- "libraries/android-bin/tsconfig.json": "39805c3201f468dc5a1a584b592970777c655bca"
15
- },
16
- "arguments": "build-ts-package "
17
- }
@@ -1,17 +0,0 @@
1
- {
2
- "files": {
3
- "libraries/android-bin/.rush/temp/shrinkwrap-deps.json": "7a8b693a797f929a5184cf7a08cda9ced8e4a529",
4
- "libraries/android-bin/CHANGELOG.json": "7841c67fb164723bb7794b00dc8c16bd89b6b637",
5
- "libraries/android-bin/CHANGELOG.md": "d482e630baa62381336b5f33434f34f642a2fa54",
6
- "libraries/android-bin/README.md": "96d1e739d73df6dc17920182c1c5799b65652b69",
7
- "libraries/android-bin/package.json": "fd78491208045108132158872c1af1075c286dae",
8
- "libraries/android-bin/src/bu.ts": "cd4d6867127ea824c524989626268b26dde3c7de",
9
- "libraries/android-bin/src/bug-report.ts": "b4d7c78eaa2abb610a88f240872d209d083b70c9",
10
- "libraries/android-bin/src/demo-mode.ts": "1ee4a2d1bc238a1600387fc39549241a2a6bb161",
11
- "libraries/android-bin/src/index.ts": "829476e842a0c136d900c623e14a6f341dba5651",
12
- "libraries/android-bin/src/logcat.ts": "8144312c653710ecabe10186f9eb2afa0aeaf2db",
13
- "libraries/android-bin/src/settings.ts": "a323081296746d78ea07f473680321331ff0d46c",
14
- "libraries/android-bin/tsconfig.json": "39805c3201f468dc5a1a584b592970777c655bca"
15
- },
16
- "arguments": "build-ts-package --incremental "
17
- }
@@ -1,4 +0,0 @@
1
- {
2
- "tslib@2.4.0": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
3
- "typescript@4.7.2": "sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A=="
4
- }
@@ -1,2 +0,0 @@
1
- Invoking: build-ts-package --incremental
2
-
package/tsconfig.json DELETED
@@ -1,8 +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
- }