Files
callstack__agent-device/android-snapshot-helper/AndroidManifest.xml
Michał Pierzchała d087a62d1d fix: improve Maestro Android reliability and snapshot speed (#612)
* fix: improve maestro tab target swipes

* fix: stop replay suites on pending timeout cleanup

* fix: tighten maestro compat support plumbing

* fix: resolve ios simulator url open targets

* fix: speed up Android Maestro snapshots

* fix: resolve android snapshot ci regressions

* perf: reduce android snapshot helper overhead

* docs: record persistent helper session architecture

* chore: address snapshot session review

* perf: add persistent Android snapshot helper session

* fix: stabilize Android replay interactions

* fix: stabilize Maestro visibility resolution

* refactor: simplify Android keyboard parsing
2026-05-29 22:09:18 +02:00

19 lines
715 B
XML

<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.callstack.agentdevice.snapshothelper">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="36" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:debuggable="false"
android:label="Agent Device Snapshot Helper"
android:testOnly="true"
android:theme="@android:style/Theme.NoDisplay" />
<instrumentation
android:name=".SnapshotInstrumentation"
android:targetPackage="com.callstack.agentdevice.snapshothelper"
android:label="Agent Device Snapshot Helper"
android:functionalTest="true" />
</manifest>