MatrixScan AR 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:
- One flat package, not native's split. Every BarcodeAr type — mode, settings, view, view
settings, listener, session, all highlights, all annotations, all providers, the UI listener,
feedback, the filter — lives in the single package
com.kmp.datacapture.barcode.ar. Do not
invent native Android's ar.capture / ar.ui / ar.ui.highlight / ar.ui.annotations /
ar.ui.annotations.info sub-package split — KMP has no such split.
- Factory, not constructor.
BarcodeAr.forContext(dataCaptureContext, settings) is a
companion object factory function — not a public constructor, and not native Android's
BarcodeAr(context, settings) direct-constructor pattern.
- Settings are built via factories, not
X(). BarcodeArSettings.barcodeArSettings() and
BarcodeArViewSettings.barcodeArViewSettings() are companion factory functions. Neither
BarcodeArSettings nor BarcodeArViewSettings has a public no-arg constructor in KMP.
BarcodeArView is constructed platform-side, not in shared code. BarcodeArView is an
expect class whose constructor differs per platform: Android's takes (context, barcodeAr, viewSettings), iOS's takes (barcodeAr, viewSettings) — no Context on iOS. Shared
(commonMain) code cannot construct it directly; the Android host builds it with the Android
context, the iOS host builds it without one, and both hand the resulting instance to shared
code (e.g. a registerView(view: BarcodeArView) function) to wire providers and start
scanning. Embed the underlying platform view with view.toAndroidView() (Android, returns
android.view.View) or view.toUIView() (iOS, returns UIView).
- KMP's
BarcodeArView owns its own camera — always. Unlike native Android (which threads
a Camera/CameraSettings through the view constructor), the KMP view constructs and manages
its camera internally on every platform, including Android. BarcodeAr.recommendedCameraSettings()
exists for reference/documentation purposes only — there is no hook to actually apply custom
CameraSettings to the view from shared code.
- Lifecycle is
start() / pause() / stop() / reset() — nothing else. There is no
separate onResume()/onPause()/onDestroy() split like native Android; the KMP view folds
that into start() (begin/resume), pause() (temporarily suspend, resumable), and stop()
(terminal teardown — the view is not usable afterwards). Call reset() to clear cached
highlights/annotations and re-query the providers (e.g. after switching scanning modes).
- Provider callbacks are plain Kotlin lambdas, not a
Callback interface.
BarcodeArHighlightProvider.highlightForBarcode(barcode, callback) and
BarcodeArAnnotationProvider.annotationForBarcode(barcode, callback) take
callback: (BarcodeArHighlight?) -> Unit / (BarcodeArAnnotation?) -> Unit — invoke it as a
function (callback(highlight)), not callback.onData(highlight) like native Android. Neither
callback takes a Context parameter — KMP highlight/annotation constructors don't need one
either (e.g. BarcodeArRectangleHighlight(barcode), not BarcodeArRectangleHighlight(context, barcode)).
BarcodeArViewUiListener.onHighlightForBarcodeTapped has no View parameter — it is
onHighlightForBarcodeTapped(barcodeAr, barcode, highlight), unlike native Android's 4-arg
version that also passes the highlight's View.
- Symbology names use underscores, same as native Android:
Symbology.EAN13_UPCA,
Symbology.CODE128 — not camelCase.
- All symbologies are disabled by default in
BarcodeArSettings. Enabling only what the app
needs improves tracking performance.
- Colors are built with
Color.fromRgba(r, g, b, a) (from com.kmp.datacapture.core.common) —
not a raw platform color int. Icons are built with ScanditIcon.builder()...build() (from
com.kmp.datacapture.core.ui) — not a direct constructor.
- The license key placeholder is exactly
-- ENTER YOUR SCANDIT LICENSE KEY HERE --.
BarcodeArCustomAnnotation and a BarcodeArCustomHighlight type are not documented as
available on KMP. Do not offer a custom-drawn-view highlight or annotation path on KMP;
point the user at the built-in highlight/annotation types (rectangle/circle highlights,
info/status-icon/popover/responsive annotations) and brush/icon customization instead.
Intent Routing
Based on the user's request, load the appropriate reference file before responding:
- Integrating BarcodeAr from scratch, or extending an existing integration (e.g. "add
MatrixScan AR to my KMP app", "set up barcode AR scanning in Kotlin Multiplatform", "how do I
use BarcodeAr with Compose Multiplatform", "how do I show highlights on tracked barcodes", "how
do I show info annotations", "how do I filter tracked barcodes") → 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:
| Topic |
Resource |
| Get Started |
Intro · Get Started |
| Advanced topics (custom highlights, annotations, tap interactions, notifications, filter) |
references/integration.md |
| Compose Multiplatform |
Core Concepts |
| Core concepts (context, camera, views) |
Core Concepts |
1---2name: matrixscan-ar-kmp3description: MatrixScan AR (Barcode AR, BarcodeAr, Scandit KMP) in Kotlin Multiplatform (KMP) projects (`com.scandit.datacapture.kmp` packages, `com.kmp.datacapture.*` imports) — scanning multiple barcodes at once with AR highlights and annotations in shared commonMain code with Android/iOS hosts and the Compose Multiplatform BarcodeArView. Use for integration, scan settings, tracked-barcode handling, highlight and annotation providers, or troubleshooting.4license: MIT5---67# MatrixScan AR 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- **One flat package, not native's split.** Every BarcodeAr type — mode, settings, view, view24 settings, listener, session, all highlights, all annotations, all providers, the UI listener,25 feedback, the filter — lives in the single package `com.kmp.datacapture.barcode.ar`. Do not26 invent native Android's `ar.capture` / `ar.ui` / `ar.ui.highlight` / `ar.ui.annotations` /27 `ar.ui.annotations.info` sub-package split — KMP has no such split.28- **Factory, not constructor.** `BarcodeAr.forContext(dataCaptureContext, settings)` is a29 `companion object` factory function — not a public constructor, and not native Android's30 `BarcodeAr(context, settings)` direct-constructor pattern.31- **Settings are built via factories, not `X()`.** `BarcodeArSettings.barcodeArSettings()` and32 `BarcodeArViewSettings.barcodeArViewSettings()` are companion factory functions. Neither33 `BarcodeArSettings` nor `BarcodeArViewSettings` has a public no-arg constructor in KMP.34- **`BarcodeArView` is constructed platform-side, not in shared code.** `BarcodeArView` is an35 `expect class` whose constructor differs per platform: Android's takes `(context, barcodeAr,36 viewSettings)`, iOS's takes `(barcodeAr, viewSettings)` — no `Context` on iOS. Shared37 (`commonMain`) code cannot construct it directly; the Android host builds it with the Android38 context, the iOS host builds it without one, and both hand the resulting instance to shared39 code (e.g. a `registerView(view: BarcodeArView)` function) to wire providers and start40 scanning. Embed the underlying platform view with `view.toAndroidView()` (Android, returns41 `android.view.View`) or `view.toUIView()` (iOS, returns `UIView`).42- **KMP's `BarcodeArView` owns its own camera — always.** Unlike native Android (which threads43 a `Camera`/`CameraSettings` through the view constructor), the KMP view constructs and manages44 its camera internally on every platform, including Android. `BarcodeAr.recommendedCameraSettings()`45 exists for reference/documentation purposes only — there is no hook to actually apply custom46 `CameraSettings` to the view from shared code.47- **Lifecycle is `start()` / `pause()` / `stop()` / `reset()` — nothing else.** There is no48 separate `onResume()`/`onPause()`/`onDestroy()` split like native Android; the KMP view folds49 that into `start()` (begin/resume), `pause()` (temporarily suspend, resumable), and `stop()`50 (terminal teardown — the view is not usable afterwards). Call `reset()` to clear cached51 highlights/annotations and re-query the providers (e.g. after switching scanning modes).52- **Provider callbacks are plain Kotlin lambdas, not a `Callback` interface.**53 `BarcodeArHighlightProvider.highlightForBarcode(barcode, callback)` and54 `BarcodeArAnnotationProvider.annotationForBarcode(barcode, callback)` take55 `callback: (BarcodeArHighlight?) -> Unit` / `(BarcodeArAnnotation?) -> Unit` — invoke it as a56 function (`callback(highlight)`), not `callback.onData(highlight)` like native Android. Neither57 callback takes a `Context` parameter — KMP highlight/annotation constructors don't need one58 either (e.g. `BarcodeArRectangleHighlight(barcode)`, not `BarcodeArRectangleHighlight(context,59 barcode)`).60- **`BarcodeArViewUiListener.onHighlightForBarcodeTapped` has no `View` parameter** — it is61 `onHighlightForBarcodeTapped(barcodeAr, barcode, highlight)`, unlike native Android's 4-arg62 version that also passes the highlight's `View`.63- Symbology names use underscores, same as native Android: `Symbology.EAN13_UPCA`,64 `Symbology.CODE128` — not camelCase.65- All symbologies are disabled by default in `BarcodeArSettings`. Enabling only what the app66 needs improves tracking performance.67- Colors are built with `Color.fromRgba(r, g, b, a)` (from `com.kmp.datacapture.core.common`) —68 not a raw platform color int. Icons are built with `ScanditIcon.builder()...build()` (from69 `com.kmp.datacapture.core.ui`) — not a direct constructor.70- The license key placeholder is exactly `-- ENTER YOUR SCANDIT LICENSE KEY HERE --`.71- **`BarcodeArCustomAnnotation` and a `BarcodeArCustomHighlight` type are not documented as72 available on KMP.** Do not offer a custom-drawn-view highlight or annotation path on KMP;73 point the user at the built-in highlight/annotation types (rectangle/circle highlights,74 info/status-icon/popover/responsive annotations) and brush/icon customization instead.7576## Intent Routing7778Based on the user's request, load the appropriate reference file before responding:7980- **Integrating BarcodeAr from scratch, or extending an existing integration** (e.g. "add81 MatrixScan AR to my KMP app", "set up barcode AR scanning in Kotlin Multiplatform", "how do I82 use BarcodeAr with Compose Multiplatform", "how do I show highlights on tracked barcodes", "how83 do I show info annotations", "how do I filter tracked barcodes") → read84 `references/integration.md` and follow the instructions there.8586## API Usage Policy8788Only use APIs that are explicitly documented in the Scandit references below. Do not invent or89guess method signatures, parameters, or property names. If unsure whether an API exists or how90it is called — or if a compile error occurs — fetch the relevant reference page before91responding. Do not tell the user to check the docs themselves. After answering, always include92the relevant link so the user can explore further.9394**Never construct or guess documentation URLs.** When you need a specific class or property's95API page:961. First check whether the page you already fetched contains a direct hyperlink to it — topic97 pages link directly to relevant API symbols. Always request links alongside content in your98 fetch prompt.992. If no direct link was found, fetch the API index (see **Full API reference** in the table100 below), extract the actual link from it, and follow that.101102URL structures can vary (e.g. `api/ui/` subdirectory) and guessing will lead to 404s.103104## References105106Direct users to the right resource based on their question:107108| Topic | Resource |109|---|---|110| Get Started | [Intro](https://docs.scandit.com/sdks/kmp/matrixscan-ar/intro/) · [Get Started](https://docs.scandit.com/sdks/kmp/matrixscan-ar/get-started/) |111| Advanced topics (custom highlights, annotations, tap interactions, notifications, filter) | `references/integration.md` |112| Compose Multiplatform | [Core Concepts](https://docs.scandit.com/sdks/kmp/core-concepts/) |113| Core concepts (context, camera, views) | [Core Concepts](https://docs.scandit.com/sdks/kmp/core-concepts/) |