Files
callstack__agent-device/android-multitouch-helper/AndroidManifest.xml
Michał Pierzchała 47b981c8ad feat: add gesture command coverage (#576)
* feat: add gesture command coverage

* fix: align iOS fling provider fixture

* feat: group gesture commands

* fix: clarify android gesture support

* feat: add android multitouch gestures

* fix: address gesture review feedback

* refactor: simplify gesture plumbing

* fix: keep gesture subcommands internal

* fix: update iOS provider pan transcript
2026-05-22 18:01:58 +02:00

18 lines
658 B
XML

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