mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
d087a62d1d
* 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
19 lines
715 B
XML
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>
|