Files
callstack__agent-device/src/android-adb.ts
T
Michał Pierzchała 7e14decce3 fix: improve Android text entry stability (#540)
* fix: improve android text entry stability

* fix: stabilize android daemon diagnostics

* chore: refresh fallow baselines

* refactor: tighten android text fallback

* fix: tighten android input ownership diagnostics

* fix: require settled android fill verification

* test: cover android fill prefix verification
2026-05-15 12:16:06 +02:00

49 lines
1.4 KiB
TypeScript

export {
createAndroidPortReverseManager,
createLocalAndroidAdbProvider,
type AndroidAdbExecutor,
type AndroidAdbExecutorOptions,
type AndroidAdbProcess,
type AndroidAdbExecutorResult,
type AndroidAdbInstallOptions,
type AndroidAdbInstaller,
type AndroidAdbProvider,
type AndroidAdbPuller,
type AndroidAdbSpawner,
type AndroidAdbTransferOptions,
type AndroidTextInjectionRequest,
type AndroidTextInjector,
type AndroidPortReverseEndpoint,
type AndroidPortReverseMapping,
type AndroidPortReverseOptions,
type AndroidPortReverseProvider,
} from './platforms/android/adb-executor.ts';
export {
getAndroidAppStateWithAdb,
listAndroidAppsWithAdb,
} from './platforms/android/app-helpers.ts';
export {
forceStopAndroidAppWithAdb,
openAndroidAppWithAdb,
resolveAndroidLaunchComponentWithAdb,
type AndroidOpenAppWithAdbOptions,
} from './platforms/android/app-control.ts';
export {
captureAndroidLogcatWithAdb,
streamAndroidLogcatWithAdb,
type AndroidLogcatCaptureOptions,
type AndroidLogcatStreamOptions,
} from './platforms/android/logcat.ts';
export {
dismissAndroidKeyboardWithAdb,
getAndroidKeyboardStatusWithAdb,
readAndroidClipboardWithAdb,
writeAndroidClipboardWithAdb,
type AndroidKeyboardState,
} from './platforms/android/device-input-state.ts';
export type {
AndroidAppListFilter,
AndroidAppListOptions,
AndroidAppListTarget,
} from './platforms/android/app-helpers.ts';