Parser 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 from any other
Scandit platform. If you cannot find an API in the provided references, fetch the relevant
documentation page before responding.
KMP-specific gotchas worth flagging:
- Import root is
com.kmp.datacapture.parser.* — e.g. com.kmp.datacapture.parser.Parser,
com.kmp.datacapture.parser.ParserDataFormat. Never write com.scandit.datacapture.parser.*
in KMP code.
- Creation is the companion factory
Parser.forFormat(dataCaptureContext, format) — takes the
shared DataCaptureContext and a ParserDataFormat value. There is no bare constructor, no
Parser.create(format), and no Parser.fromJson(...) on KMP.
ParserDataFormat has exactly seven values: GS1_AI, HIBC, SWISS_QR, VIN, IATA_BCBP,
GS1_DIGITAL_LINK, EPC. There is no AAMVA value — do not invent one. AAMVA driver's
license data is handled by ID Capture, not this Parser.
parser.parseString(data: String) and parser.parseRawData(data: ByteArray) both return a
ParsedData and are declared @Throws(Exception::class). On failure they throw
ParserException (a plain RuntimeException subclass common to both platforms — iOS has no
native parser-exception type, so its NSError is mapped into this same common ParserException
under the hood). Catch ParserException first (for code, message, additionalInfo) and fall
back to Exception only for anything unexpected.
ParsedData exposes fields: List<ParsedField>, fieldsByName: Map<String, ParsedField>,
fieldsWithIssues: List<ParsedField> (fields that have warnings), and jsonString: String.
There is no top-level "issues" list on ParsedData itself — per-field warnings live on
ParsedField.warnings.
ParsedField exposes name: String, parsed: Any?, rawString: String, and
warnings: List<ParserIssue>. parsed's actual runtime type (string, number, map, etc.) is
field-specific — consult the format's field documentation before casting it.
ParserIssue exposes only code: ParserIssueCode and message: String — there is no severity
or field-name property on the issue itself (the field it belongs to is implied by which
ParsedField.warnings list it came from). ParserIssueCode and ParserIssueAdditionalInfoKey
are plain Kotlin enums shared across platforms.
parser.setOptions(options: Map<String, Any>) takes a plain Kotlin Map, not a per-platform
options builder. Available keys are format-specific and only meaningful for the formats that
support them (e.g. GS1 AI: allowHumanReadableCodes, strictMode; Swiss QR: strictMode,
minimalVersion; VIN: strictMode, falsePositiveCompensation; GS1 Digital Link: strictMode,
outputHumanReadableString). HIBC, IATA BCBP, and EPC currently take no options.
- Parsing itself needs no camera and no camera permission — a
Parser only needs a
DataCaptureContext constructed with a license key that has the parser feature enabled. Camera
setup, AndroidManifest.xml/Info.plist permission entries, and a scanning mode are only
needed if you're also capturing barcodes to feed the parser — for that, route the user to
barcode-capture-kmp or sparkscan-kmp.
- 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:
- Creating a Parser, parsing a data string/raw data, reading parsed fields, handling parser
issues/exceptions, or combining Parser with a barcode scan result (e.g. "add the Parser to my
KMP app", "parse this GS1 barcode", "how do I read a HIBC field", "why did parseString throw",
"parse the barcode I just scanned") → read
references/integration.md and follow the
instructions there.
- Setting up the camera, BarcodeCapture, or SparkScan itself (not the parser) → this skill
only covers the Parser half; hand the scanning setup off to
barcode-capture-kmp or
sparkscan-kmp.
- AAMVA / driver's license barcode field extraction → this is not handled by Parser; route to
an
id-capture-* skill instead.
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 — and never carry over a signature from the
Android-native or iOS-native SDKs without verifying it also holds for KMP. 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 and guessing will lead to 404s.
References
Direct users to the right resource based on their question:
1---2name: parser-kmp3description: Scandit Parser in Kotlin Multiplatform (KMP) projects — com.scandit.datacapture.kmp:parser artifact, com.kmp.datacapture.parser imports. Parses barcode/RFID data strings (GS1 AI, GS1 Digital Link, HIBC, Swiss QR, VIN, IATA boarding pass, EPC) into ParsedField values in commonMain. AAMVA driver's licenses belong to ID Capture (id-capture-* skills). Use for Parser setup, data-format configuration, parsed-result handling, or troubleshooting parsing.4license: MIT5---67# Parser 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 from any other19Scandit platform. If you cannot find an API in the provided references, fetch the relevant20documentation page before responding.2122KMP-specific gotchas worth flagging:2324- Import root is `com.kmp.datacapture.parser.*` — e.g. `com.kmp.datacapture.parser.Parser`,25 `com.kmp.datacapture.parser.ParserDataFormat`. Never write `com.scandit.datacapture.parser.*`26 in KMP code.27- Creation is the companion factory `Parser.forFormat(dataCaptureContext, format)` — takes the28 shared `DataCaptureContext` and a `ParserDataFormat` value. There is no bare constructor, no29 `Parser.create(format)`, and no `Parser.fromJson(...)` on KMP.30- `ParserDataFormat` has exactly seven values: `GS1_AI`, `HIBC`, `SWISS_QR`, `VIN`, `IATA_BCBP`,31 `GS1_DIGITAL_LINK`, `EPC`. There is **no `AAMVA` value** — do not invent one. AAMVA driver's32 license data is handled by ID Capture, not this Parser.33- `parser.parseString(data: String)` and `parser.parseRawData(data: ByteArray)` both return a34 `ParsedData` and are declared `@Throws(Exception::class)`. On failure they throw35 `ParserException` (a plain `RuntimeException` subclass common to both platforms — iOS has no36 native parser-exception type, so its `NSError` is mapped into this same common `ParserException`37 under the hood). Catch `ParserException` first (for `code`, `message`, `additionalInfo`) and fall38 back to `Exception` only for anything unexpected.39- `ParsedData` exposes `fields: List<ParsedField>`, `fieldsByName: Map<String, ParsedField>`,40 `fieldsWithIssues: List<ParsedField>` (fields that have warnings), and `jsonString: String`.41 There is no top-level "issues" list on `ParsedData` itself — per-field warnings live on42 `ParsedField.warnings`.43- `ParsedField` exposes `name: String`, `parsed: Any?`, `rawString: String`, and44 `warnings: List<ParserIssue>`. `parsed`'s actual runtime type (string, number, map, etc.) is45 field-specific — consult the format's field documentation before casting it.46- `ParserIssue` exposes only `code: ParserIssueCode` and `message: String` — there is no severity47 or field-name property on the issue itself (the field it belongs to is implied by which48 `ParsedField.warnings` list it came from). `ParserIssueCode` and `ParserIssueAdditionalInfoKey`49 are plain Kotlin enums shared across platforms.50- `parser.setOptions(options: Map<String, Any>)` takes a plain Kotlin `Map`, not a per-platform51 options builder. Available keys are format-specific and only meaningful for the formats that52 support them (e.g. GS1 AI: `allowHumanReadableCodes`, `strictMode`; Swiss QR: `strictMode`,53 `minimalVersion`; VIN: `strictMode`, `falsePositiveCompensation`; GS1 Digital Link: `strictMode`,54 `outputHumanReadableString`). HIBC, IATA BCBP, and EPC currently take no options.55- Parsing itself needs **no camera and no camera permission** — a `Parser` only needs a56 `DataCaptureContext` constructed with a license key that has the parser feature enabled. Camera57 setup, `AndroidManifest.xml`/`Info.plist` permission entries, and a scanning mode are only58 needed if you're also capturing barcodes to feed the parser — for that, route the user to59 `barcode-capture-kmp` or `sparkscan-kmp`.60- The license key placeholder is exactly `-- ENTER YOUR SCANDIT LICENSE KEY HERE --`.6162## Intent Routing6364Based on the user's request, load the appropriate reference file before responding:6566- **Creating a Parser, parsing a data string/raw data, reading parsed fields, handling parser67 issues/exceptions, or combining Parser with a barcode scan result** (e.g. "add the Parser to my68 KMP app", "parse this GS1 barcode", "how do I read a HIBC field", "why did parseString throw",69 "parse the barcode I just scanned") → read `references/integration.md` and follow the70 instructions there.71- **Setting up the camera, BarcodeCapture, or SparkScan itself** (not the parser) → this skill72 only covers the Parser half; hand the scanning setup off to `barcode-capture-kmp` or73 `sparkscan-kmp`.74- **AAMVA / driver's license barcode field extraction** → this is not handled by Parser; route to75 an `id-capture-*` skill instead.7677## API Usage Policy7879Only use APIs that are explicitly documented in the Scandit references below. Do not invent or80guess method signatures, parameters, or property names — and never carry over a signature from the81Android-native or iOS-native SDKs without verifying it also holds for KMP. If unsure whether an API82exists or how it is called — or if a compile error occurs — fetch the relevant reference page83before responding. Do not tell the user to check the docs themselves. After answering, always84include the relevant link so the user can explore further.8586**Never construct or guess documentation URLs.** When you need a specific class or property's API87page:881. First check whether the page you already fetched contains a direct hyperlink to it — topic89 pages link directly to relevant API symbols. Always request links alongside content in your90 fetch prompt.912. If no direct link was found, fetch the API index (see **Full API reference** in the table92 below), extract the actual link from it, and follow that.9394URL structures can vary and guessing will lead to 404s.9596## References9798Direct users to the right resource based on their question:99100| Topic | Resource |101|---|---|102| Get Started | [Get Started](https://docs.scandit.com/sdks/kmp/parser/get-started/) |103| Supported data formats | [Supported Data Formats](https://docs.scandit.com/parser/formats.html) |104| Core concepts (context, integration) | [Core Concepts](https://docs.scandit.com/sdks/kmp/core-concepts/) |105| Combining with scanning | [BarcodeCapture KMP](https://docs.scandit.com/sdks/kmp/barcode-capture/get-started/) · [SparkScan KMP](https://docs.scandit.com/sdks/kmp/sparkscan/get-started/) |