MatrixScan Count .NET for Android Skill
Critical: Do Not Trust Internal Knowledge
Your training data may contain outdated or incorrect Scandit SDK APIs, and the .NET binding differs from the Kotlin/Java and iOS native SDKs in several places: factories instead of constructors, PascalCase members, C# events alongside listener interfaces, an explicitly-managed camera, etc.
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.
.NET-Android-specific gotchas worth flagging (and the places people get it wrong by pattern-matching from MatrixScan AR or the Kotlin SDK):
- This skill targets the non-MAUI .NET for Android workload (project
<TargetFramework>net10.0-android</TargetFramework>or similar, no<UseMaui>flag). For MAUI apps, use a MAUI-targeted skill instead —BarcodeCountViewis hosted as a XAML element there and the lifecycle is wired through handlers, which is completely different. BarcodeCountis created with a FACTORY, notnew:BarcodeCount.Create(dataCaptureContext, settings)(there is also aBarcodeCount.Create(settings)overload with no context).new BarcodeCount(...)is a compile error — the constructor is private.BarcodeCountSettingsdoes use a plainnew BarcodeCountSettings(). (Note this is the opposite of MatrixScan AR, whereBarcodeArusesnewand the view uses a factory.)- The camera is explicitly managed by you —
BarcodeCountViewdoes NOT own it. This is the single biggest difference from MatrixScan AR. You must: getCamera.GetDefaultCamera(BarcodeCount.RecommendedCameraSettings)(orCamera.DefaultCamerathencamera.ApplySettingsAsync(...)), calldataCaptureContext.SetFrameSourceAsync(camera), and toggle the camera yourself withcamera.SwitchToDesiredStateAsync(FrameSourceState.On)/FrameSourceState.Offin the activity'sOnResume/OnPause. There is nobarcodeCountView.OnResume()/OnPause()/Start()/Stop()— those are MatrixScan AR methods and do not exist onBarcodeCountView. barcodeCount.Enabled(get/setbool) must be set totruefor frames to be processed. Set ittrueinOnResumeand (optionally)falseinOnPause.BarcodeArhas no such toggle;BarcodeCountdoes.BarcodeCountView.Create(Context, DataCaptureContext, BarcodeCount [, BarcodeCountViewStyle])takes the AndroidContext(the activity) as its first argument — not a parentView/ViewGroup (that's the AR signature). The style overload takesBarcodeCountViewStyle.Icon(default look) orBarcodeCountViewStyle.Dot.BarcodeCountViewIS a real AndroidView(viapublic static implicit operator View(BarcodeCountView)). You add it to the hierarchy yourself:container.AddView(barcodeCountView). This is the opposite ofBarcodeArView, which is not a View and auto-attaches itself. Do not look for an auto-attachparentViewargument onBarcodeCountView.Create.IBarcodeCountListenerhas THREE methods:OnScan(BarcodeCount, BarcodeCountSession, IFrameData),OnObservationStarted(BarcodeCount),OnObservationStopped(BarcodeCount). (MatrixScan AR's listener has only one — do not assume parity.) The idiomatic C# alternative is thebarcodeCount.Scannedevent (EventHandler<BarcodeCountEventArgs>), which corresponds toOnScanonly.Scanned/OnScanfires once per scan phase, on a background thread. Copy the barcodes you need out of the session immediately (session.RecognizedBarcodes.ToList()); theBarcodeCountSessionis not valid outside the callback. Dispatch UI updates viaRunOnUiThread(...).BarcodeCountSessionexposesRecognizedBarcodesandAdditionalBarcodesasIList<Barcode>— plain decoded barcodes, not tracked-barcode deltas. There is noAddedTrackedBarcodes/RemovedTrackedBarcodeson this session (that's the AR/Batch session). AlsoFrameSequenceId,Reset(), andGetSpatialMap().BarcodeCountFeedbackusesSuccessandFailure(Core.Common.Feedback.Feedback), notScanned/Tapped(those are AR). The empty constructornew BarcodeCountFeedback()is silent on both; the staticBarcodeCountFeedback.DefaultFeedback(a property, not a method) restores defaults.- Symbology names are C# PascalCase:
Symbology.Ean13Upca,Symbology.Ean8,Symbology.Upce,Symbology.Code128,Symbology.Code39,Symbology.Qr,Symbology.DataMatrix,Symbology.InterleavedTwoOfFive. They are not the Kotlin underscore style (EAN13_UPCA). - List / Exit / Single-Scan buttons are surfaced as C# events on
BarcodeCountView:ListButtonTapped(ListButtonTappedEventArgs),ExitButtonTapped(ExitButtonTappedEventArgs),SingleScanButtonTapped(SingleScanButtonTappedEventArgs) — each exposes.View. Brush/tap customization is theListenerproperty (IBarcodeCountViewListener), which is a separate concern from these events. - Capture list (receiving) uses factories:
BarcodeCountCaptureList.Create(listener, IList<TargetBarcode>)andTargetBarcode.Create(data, quantity). Apply it withbarcodeCount.SetBarcodeCountCaptureList(list). The listenerIBarcodeCountCaptureListListenerhasOnObservationStarted(),OnObservationStopped(),OnCaptureListSessionUpdated(session),OnCaptureListCompleted(session). SDK 8.0+ requires explicit initialization.SubclassAndroid.App.Application, decorate with[Application], and callScanditCaptureCore.Initialize()+ScanditBarcodeCapture.Initialize()inOnCreate()before any Scandit code runs. Without this, the firstDataCaptureContext.ForLicenseKey(...)/BarcodeCount.Create(...)call crashes at launch because the DI container has no registrations. Not required on 6.x / 7.x. See references/integration.md for the fullMainApplication.cstemplate.- The NuGet packages are
Scandit.DataCapture.CoreandScandit.DataCapture.Barcode. No separate*.Mauipackages here — those are only for MAUI projects. Do not guess the version from training data — fetch the latest stable fromhttps://www.nuget.org/packages/Scandit.DataCapture.Barcode/viaWebFetchbefore pinning. Inventing a non-existent version (e.g.8.13.0when only8.4.0is published) causesdotnet restoreto fail withUnable to find package Scandit.DataCapture.Core with version (>= …). See references/integration.md Step 0. - Android
SupportedOSPlatformVersionmust be ≥24. Set it in the.csproj. Lower values fail the build withuses-sdk:minSdkVersion 21 cannot be smaller than version 24 declared in library. - Do not declare
<activity>elements for[Activity]-decorated classes inAndroidManifest.xml. The[Activity(MainLauncher = true, ...)]attribute is the canonical registration mechanism in .NET for Android — the build merges a correctly-named entry into the final manifest. A manual<activity android:name=".MainActivity">resolves against<ApplicationId>and won't match the generated class, producingClassNotFoundExceptionat launch. Only add to the manifest the elements the skill explicitly asks for (<uses-feature>,<uses-permission>). - The runtime camera permission helper (
CameraPermissionActivity) inherits fromAppCompatActivity, soXamarin.AndroidX.AppCompatmust be in the.csproj. When pinning the version, pick the highest available including the Xamarin patch revision (e.g.1.7.0.5, not bare1.7.0) — the.Xsuffix marks Xamarin-binding-level updates and carries critical transitive-dep fixes. - The activity needs a
Theme.AppCompatdescendant (because it inherits fromAppCompatActivity). Setandroid:themeon<application>in the manifest (the sample uses@style/AppTheme, an AppCompat descendant) orTheme = "@style/Theme.AppCompat..."on the[Activity]attribute. Without it,SetContentViewthrowsIllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activityat launch.
Intent Routing
Based on the user's request, load the appropriate reference file before responding:
- Integrating BarcodeCount from scratch, configuring settings, hosting the BarcodeCountView, wiring camera lifecycle, handling scan results, storing scanned barcodes, capture/receiving lists, the spatial map, customizing feedback, List/Exit/SingleScan taps, brushes, status mode, or the not-in-list action (e.g. "add MatrixScan Count to my .NET Android app", "count barcodes in C#", "store the scanned barcodes when the list button is tapped", "check scans against an expected list", "make the beep silent", "use the Dot style", "show a not-in-list action") → read references/integration.md and follow the instructions there.
- Migrating or upgrading an existing MatrixScan Count integration (e.g. "upgrade from v7 to v8", "bump the Scandit .NET SDK to v8", "what changed between SDK versions for BarcodeCount") → read references/migration.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 | Get Started (.NET for Android) |
| Advanced topics (capture list, status mode, brushes, toolbar, hardware trigger) | Advanced Configurations |
| Migration between major SDK versions | 6 → 7 · 7 → 8 |
| Full API reference | BarcodeCount API (.NET Android) |
API surface this skill covers
All classes documented with :available: dotnet.android in the official RST docs (docs/source/barcode-capture/api/barcode-count*.rst and api/ui/barcode-count-*.rst) are addressed in references/integration.md:
BarcodeCount— staticCreate(DataCaptureContext?, BarcodeCountSettings)/Create(BarcodeCountSettings),Context(get),Feedback(get/set),Enabled(get/set), staticRecommendedCameraSettings,ApplySettingsAsync(BarcodeCountSettings)→Task,AddListener/RemoveListener(IBarcodeCountListener),Reset(),StartScanningPhase(),EndScanningPhase(),SetBarcodeCountCaptureList(BarcodeCountCaptureList),SetAdditionalBarcodes(IList<Barcode>),ClearAdditionalBarcodes(),event EventHandler<BarcodeCountEventArgs> Scanned,Dispose().BarcodeCountSettings—new BarcodeCountSettings(),EnableSymbology(Symbology, bool),EnableSymbologies(ICollection<Symbology>),GetSymbologySettings(Symbology),EnabledSymbologies(get),FilterSettings(get,BarcodeFilterSettings),ExpectsOnlyUniqueBarcodes(get/set),DisableModeWhenCaptureListCompleted(get/set),MappingEnabled(get/set),SetProperty/GetProperty/GetProperty<T>/TryGetProperty<T>,Dispose.IBarcodeCountListener—OnScan(BarcodeCount, BarcodeCountSession, IFrameData),OnObservationStarted(BarcodeCount),OnObservationStopped(BarcodeCount).BarcodeCountSession—RecognizedBarcodes(IList<Barcode>),AdditionalBarcodes(IList<Barcode>),FrameSequenceId(long),Reset(),GetSpatialMap()/GetSpatialMap(int rows, int cols)→BarcodeSpatialGrid?.BarcodeCountEventArgs—BarcodeCount,Session,FrameData.Coordinate2d—new Coordinate2d(int x, int y),X,Y.- Capture list (receiving):
BarcodeCountCaptureList.Create(IBarcodeCountCaptureListListener, IList<TargetBarcode>);TargetBarcode.Create(string data, int quantity)withData/Quantity;IBarcodeCountCaptureListListener(OnObservationStarted,OnObservationStopped,OnCaptureListSessionUpdated,OnCaptureListCompleted);BarcodeCountCaptureListSession(CorrectBarcodes,WrongBarcodes,MissingBarcodes,AdditionalBarcodes,AcceptedBarcodes,RejectedBarcodes). - Spatial map:
BarcodeSpatialGrid(Rows(),Columns(),ElementAt(row, col),Row(i),Column(i),CoordinatesForElement(element));BarcodeSpatialGridElement(MainBarcode,SubBarcode). BarcodeCountFeedback—new BarcodeCountFeedback()(silent), staticDefaultFeedback,Success/Failure(Core.Common.Feedback.Feedback),Dispose.BarcodeCountView— staticCreate(Context, DataCaptureContext, BarcodeCount)/Create(Context, DataCaptureContext, BarcodeCount, BarcodeCountViewStyle); implicit conversion toAndroid.Views.View;Style(get);Listener(IBarcodeCountViewListener?); manyShouldShow*toggles (ShouldShowListButton,ShouldShowExitButton,ShouldShowShutterButton,ShouldShowFloatingShutterButton,ShouldShowSingleScanButton,ShouldShowClearHighlightsButton,ShouldShowStatusModeButton,ShouldShowUserGuidanceView,ShouldShowHints,ShouldShowToolbar,ShouldShowScanAreaGuides,ShouldShowListProgressBar,ShouldShowTorchControl);ShouldDisableModeOnExitButtonTapped,TapToUncountEnabled,TorchControlPosition(Anchor); brush properties (RecognizedBrush,NotInListBrush,AcceptedBrush,RejectedBrush) and static default brushes;BarcodeNotInListActionSettings(get); customization text properties;EnableHardwareTrigger(int?), staticHardwareTriggerSupported;SetToolbarSettings,ClearHighlights(),SetStatusProvider,SetBrushForRecognizedBarcode/*NotInList/*Accepted/*Rejected;event ExitButtonTapped/ListButtonTapped/SingleScanButtonTapped;Dispose.BarcodeCountViewStyleenum —Icon,Dot.IBarcodeCountViewListener— brush-for callbacks (BrushForRecognizedBarcode,*NotInList,*Accepted,*Rejected) and tap callbacks (OnRecognizedBarcodeTapped,OnFilteredBarcodeTapped,OnRecognizedBarcodeNotInListTapped,OnAcceptedBarcodeTapped,OnRejectedBarcodeTapped, and Android-onlyOnCaptureListCompleted).- Tap event args:
ExitButtonTappedEventArgs,ListButtonTappedEventArgs,SingleScanButtonTappedEventArgs— each withView. BarcodeCountToolbarSettings— text/content-description strings for the audio/vibration/strap-mode/color-scheme toggles.BarcodeCountNotInListActionSettings(frombarcodeCountView.BarcodeNotInListActionSettings) —Enabled, accept/reject/cancel button text + content descriptions,BarcodeAcceptedHint,BarcodeRejectedHint.- Status mode:
IBarcodeCountStatusProvider(OnStatusRequested(IList<TrackedBarcode>, IBarcodeCountStatusProviderCallback)),IBarcodeCountStatusProviderCallback(OnStatusReady(IBarcodeCountStatusResult)),BarcodeCountStatusenum (None,NotAvailable,Expired,Fragile,QualityCheck,LowStock,Wrong),BarcodeCountStatusItem.Create(TrackedBarcode, BarcodeCountStatus),IBarcodeCountStatusResultwith factoriesBarcodeCountStatusResultSuccess.Create(...),BarcodeCountStatusResultError.Create(...),BarcodeCountStatusResultAbort.Create(...). TrackedBarcode(inScandit.DataCapture.Barcode.Batch.Data) —Barcode,Identifier,Location. Used byIBarcodeCountViewListener, the status API, and the capture-list session.
Documented for other platforms but NOT on dotnet.android — do not use
BarcodeCountMappingFlowSettingsand the mapping-flow configuration class — not surfaced in the .NET binding. Mapping in .NET is limited toBarcodeCountSettings.MappingEnabled+BarcodeCountSession.GetSpatialMap().BarcodeCountSessionSnapshot— no .NET equivalent.HardwareTriggerEnabledis iOS-only; on Android useEnableHardwareTrigger(int? keyCode)+ staticHardwareTriggerSupported.