MatrixScan Batch KMP Skill
Critical: Do Not Trust Internal Knowledge
Scandit's Kotlin Multiplatform (KMP) SDK is new, shipping in 8.6. Your training data almost
certainly predates it and contains zero reliable knowledge of its API — do not pattern-match
it against the Android or iOS native SDKs you may know. The KMP API packages are
com.kmp.datacapture.* (NOT com.scandit.datacapture.*), and shapes diverge from both native
SDKs in specific ways (see below).
Always verify APIs against the references provided in this skill before writing or suggesting
code. Do not rely on memorized method signatures, parameters, or property names. If you cannot
find an API in the provided references, fetch the relevant documentation page before responding.
KMP-specific gotchas worth flagging:
- Factory, not constructor.
BarcodeBatch.forContext(dataCaptureContext, settings) is a
companion object factory function — not a public constructor, and not native Android's
BarcodeBatch.forDataCaptureContext(context, settings) name.
- Settings are built via a factory, not
X(). BarcodeBatchSettings.barcodeBatchSettings()
is a companion factory function. BarcodeBatchSettings has no public no-arg constructor in KMP.
- Overlays always need an explicit
view.addOverlay(overlay) call. Unlike native Android's
BarcodeBatchBasicOverlay.newInstance(mode, view), which auto-adds itself to the view, KMP's
factories do not attach the overlay for you — the reference sample always follows overlay
creation with view.addOverlay(overlay), regardless of which factory was used:
BarcodeBatchBasicOverlay.withBarcodeBatch(barcodeBatch) — no view; must call addOverlay.
BarcodeBatchBasicOverlay.withBarcodeBatchForView(barcodeBatch, view) — takes a view, but
still requires the explicit addOverlay call.
BarcodeBatchAdvancedOverlay.withBarcodeBatch(barcodeBatch) — the only advanced-overlay
factory (there is no ForView variant); addOverlay is mandatory.
BarcodeBatchBasicOverlayListener is wired with a function, not a property. Call
overlay.setListener(this) — there is no settable overlay.listener property on
BarcodeBatchBasicOverlay in KMP (unlike native Android's overlay.listener = this).
BarcodeBatchAdvancedOverlay is the opposite: it exposes a real settable property,
advancedOverlay.listener = this. Do not mix these two patterns up.
- No factory sets the overlay style at creation time. Native Android/iOS have a 3-argument
newInstance(mode, view, style) overload to pick BarcodeBatchBasicOverlayStyle.DOT at
construction. KMP's withBarcodeBatch / withBarcodeBatchForView factories take no style
parameter, and overlay.style is a read-only property. As of the current KMP API surface,
there is no documented way to construct a DOT-style overlay — every overlay is created with the
default FRAME style. Tell the user this is a known KMP gap rather than inventing a style
parameter or a setProperty("style", …) workaround.
createRecommendedCameraSettings() exists on KMP's BarcodeBatch, mirroring native
Android/Flutter — it is a real, documented companion object method
(BarcodeBatch.createRecommendedCameraSettings(): CameraSettings). Don't assume it is missing;
build custom CameraSettings() only when the app has a specific reason to override the default
(e.g. a higher preferredResolution for small/distant barcodes).
Camera.getDefaultCamera(...) returns Camera? — always null-check before use.
- Teardown uses
dataCaptureContext.removeMode(barcodeBatch), not removeCurrentMode().
viewForTrackedBarcode returns NativeView?, a KMP expect/actual typealias that
resolves directly to android.view.View on Android and UIView on iOS — no wrapper type, no
cast needed. Build the platform view in platform code (or a lambda the platform host supplies)
since commonMain cannot construct an android.view.View or UIView directly.
Feedback has no public constructor on KMP. Build it via Feedback.defaultFeedback(), then
optionally override its sound / vibration properties — there is no
Feedback(vibration, sound) two-argument constructor like native Android's.
BarcodeBatch still emits no feedback automatically; call feedback.emit() yourself from
onSessionUpdated.
- Per-barcode brush customization and
BarcodeBatchAdvancedOverlay both require the MatrixScan
AR add-on license — same requirement as native Android/iOS.
didTapViewForTrackedBarcode (the advanced-overlay tap callback) is not part of the KMP
BarcodeBatchAdvancedOverlayListener. It only exists on web/cordova/react-native/flutter/
capacitor. Don't offer it on KMP.
- Symbology names use underscores, same as native Android:
Symbology.EAN13_UPCA,
Symbology.CODE128, Symbology.QR — not camelCase.
- All symbologies are disabled by default in
BarcodeBatchSettings. Enable only what the app
needs to keep tracking performance high.
- The license key placeholder is exactly
-- ENTER YOUR SCANDIT LICENSE KEY HERE --.
Intent Routing
Based on the user's request, load the appropriate reference file before responding:
- Integrating BarcodeBatch from scratch, or extending an existing integration (e.g. "add
MatrixScan Batch to my KMP app", "track multiple barcodes in Kotlin Multiplatform", "how do I
highlight tracked barcodes", "how do I show an AR bubble/info view over each tracked barcode",
"how do I use BarcodeBatch with Compose Multiplatform", "react to barcodes leaving the frame",
"beep when a new barcode is tracked") → read
references/integration.md and follow the
instructions there.
API Usage Policy
Only use APIs that are explicitly documented in the Scandit references below. Do not invent or
guess method signatures, parameters, or property names. If unsure whether an API exists or how it
is called — or if a compile error occurs — fetch the relevant reference page before responding.
Do not tell the user to check the docs themselves. After answering, always include the relevant
link so the user can explore further.
Never construct or guess documentation URLs. When you need a specific class or property's API
page:
- First check whether the page you already fetched contains a direct hyperlink to it — topic
pages link directly to relevant API symbols. Always request links alongside content in your
fetch prompt.
- If no direct link was found, fetch the API index (see Full API reference in the table
below), extract the actual link from it, and follow that.
URL structures can vary (e.g. api/ui/ subdirectory) and guessing will lead to 404s.
References
Direct users to the right resource based on their question:
1---2name: matrixscan-batch-kmp3description: MatrixScan Batch (MatrixScan, BarcodeBatch, Scandit KMP) in Kotlin Multiplatform (KMP) projects (`com.scandit.datacapture.kmp` packages, `com.kmp.datacapture.*` imports) — tracking and scanning multiple barcodes at once in shared commonMain code with Android/iOS hosts and the Compose Multiplatform DataCaptureView. Use for integration, settings and symbologies, tracked-barcode handling, overlay customization, lifecycle, or troubleshooting.4license: MIT5---67# MatrixScan Batch KMP Skill89## Critical: Do Not Trust Internal Knowledge1011Scandit's Kotlin Multiplatform (KMP) SDK is new, shipping in 8.6. Your training data almost12certainly predates it and contains **zero** reliable knowledge of its API — do not pattern-match13it against the Android or iOS native SDKs you may know. The KMP API packages are14`com.kmp.datacapture.*` (NOT `com.scandit.datacapture.*`), and shapes diverge from both native15SDKs in specific ways (see below).1617**Always verify APIs against the references provided in this skill before writing or suggesting18code.** Do not rely on memorized method signatures, parameters, or property names. If you cannot19find an API in the provided references, fetch the relevant documentation page before responding.2021KMP-specific gotchas worth flagging:2223- **Factory, not constructor.** `BarcodeBatch.forContext(dataCaptureContext, settings)` is a24 `companion object` factory function — not a public constructor, and not native Android's25 `BarcodeBatch.forDataCaptureContext(context, settings)` name.26- **Settings are built via a factory, not `X()`.** `BarcodeBatchSettings.barcodeBatchSettings()`27 is a companion factory function. `BarcodeBatchSettings` has no public no-arg constructor in KMP.28- **Overlays always need an explicit `view.addOverlay(overlay)` call.** Unlike native Android's29 `BarcodeBatchBasicOverlay.newInstance(mode, view)`, which auto-adds itself to the view, KMP's30 factories do not attach the overlay for you — the reference sample always follows overlay31 creation with `view.addOverlay(overlay)`, regardless of which factory was used:32 - `BarcodeBatchBasicOverlay.withBarcodeBatch(barcodeBatch)` — no view; must call `addOverlay`.33 - `BarcodeBatchBasicOverlay.withBarcodeBatchForView(barcodeBatch, view)` — takes a view, but34 still requires the explicit `addOverlay` call.35 - `BarcodeBatchAdvancedOverlay.withBarcodeBatch(barcodeBatch)` — the **only** advanced-overlay36 factory (there is no `ForView` variant); `addOverlay` is mandatory.37- **`BarcodeBatchBasicOverlayListener` is wired with a function, not a property.** Call38 `overlay.setListener(this)` — there is no settable `overlay.listener` property on39 `BarcodeBatchBasicOverlay` in KMP (unlike native Android's `overlay.listener = this`).40 `BarcodeBatchAdvancedOverlay` is the opposite: it exposes a real settable property,41 `advancedOverlay.listener = this`. Do not mix these two patterns up.42- **No factory sets the overlay style at creation time.** Native Android/iOS have a 3-argument43 `newInstance(mode, view, style)` overload to pick `BarcodeBatchBasicOverlayStyle.DOT` at44 construction. KMP's `withBarcodeBatch` / `withBarcodeBatchForView` factories take **no style45 parameter**, and `overlay.style` is a read-only property. As of the current KMP API surface,46 there is no documented way to construct a DOT-style overlay — every overlay is created with the47 default FRAME style. Tell the user this is a known KMP gap rather than inventing a style48 parameter or a `setProperty("style", …)` workaround.49- **`createRecommendedCameraSettings()` exists on KMP's `BarcodeBatch`**, mirroring native50 Android/Flutter — it is a real, documented `companion object` method51 (`BarcodeBatch.createRecommendedCameraSettings(): CameraSettings`). Don't assume it is missing;52 build custom `CameraSettings()` only when the app has a specific reason to override the default53 (e.g. a higher `preferredResolution` for small/distant barcodes).54- **`Camera.getDefaultCamera(...)` returns `Camera?`** — always null-check before use.55- **Teardown uses `dataCaptureContext.removeMode(barcodeBatch)`**, not `removeCurrentMode()`.56- **`viewForTrackedBarcode` returns `NativeView?`**, a KMP `expect`/`actual` typealias that57 resolves directly to `android.view.View` on Android and `UIView` on iOS — no wrapper type, no58 cast needed. Build the platform view in platform code (or a lambda the platform host supplies)59 since `commonMain` cannot construct an `android.view.View` or `UIView` directly.60- **`Feedback` has no public constructor on KMP.** Build it via `Feedback.defaultFeedback()`, then61 optionally override its `sound` / `vibration` properties — there is no62 `Feedback(vibration, sound)` two-argument constructor like native Android's.63 `BarcodeBatch` still emits no feedback automatically; call `feedback.emit()` yourself from64 `onSessionUpdated`.65- **Per-barcode brush customization and `BarcodeBatchAdvancedOverlay` both require the MatrixScan66 AR add-on license** — same requirement as native Android/iOS.67- **`didTapViewForTrackedBarcode` (the advanced-overlay tap callback) is not part of the KMP68 `BarcodeBatchAdvancedOverlayListener`.** It only exists on web/cordova/react-native/flutter/69 capacitor. Don't offer it on KMP.70- Symbology names use underscores, same as native Android: `Symbology.EAN13_UPCA`,71 `Symbology.CODE128`, `Symbology.QR` — not camelCase.72- All symbologies are disabled by default in `BarcodeBatchSettings`. Enable only what the app73 needs to keep tracking performance high.74- The license key placeholder is exactly `-- ENTER YOUR SCANDIT LICENSE KEY HERE --`.7576## Intent Routing7778Based on the user's request, load the appropriate reference file before responding:7980- **Integrating BarcodeBatch from scratch, or extending an existing integration** (e.g. "add81 MatrixScan Batch to my KMP app", "track multiple barcodes in Kotlin Multiplatform", "how do I82 highlight tracked barcodes", "how do I show an AR bubble/info view over each tracked barcode",83 "how do I use BarcodeBatch with Compose Multiplatform", "react to barcodes leaving the frame",84 "beep when a new barcode is tracked") → read `references/integration.md` and follow the85 instructions there.8687## API Usage Policy8889Only use APIs that are explicitly documented in the Scandit references below. Do not invent or90guess method signatures, parameters, or property names. If unsure whether an API exists or how it91is called — or if a compile error occurs — fetch the relevant reference page before responding.92Do not tell the user to check the docs themselves. After answering, always include the relevant93link so the user can explore further.9495**Never construct or guess documentation URLs.** When you need a specific class or property's API96page:971. First check whether the page you already fetched contains a direct hyperlink to it — topic98 pages link directly to relevant API symbols. Always request links alongside content in your99 fetch prompt.1002. If no direct link was found, fetch the API index (see **Full API reference** in the table101 below), extract the actual link from it, and follow that.102103URL structures can vary (e.g. `api/ui/` subdirectory) and guessing will lead to 404s.104105## References106107Direct users to the right resource based on their question:108109| Topic | Resource |110|---|---|111| Get Started | [Intro](https://docs.scandit.com/sdks/kmp/matrixscan/intro/) · [Get Started](https://docs.scandit.com/sdks/kmp/matrixscan/get-started/) |112| AR overlays (BasicOverlay brushes, AdvancedOverlay views) | [Advanced Configurations](https://docs.scandit.com/sdks/kmp/matrixscan/advanced/) |113| Core concepts (context, camera, views) | [Core Concepts](https://docs.scandit.com/sdks/kmp/core-concepts/) |