package com.visioncamerav3imagelabeling import com.facebook.react.ReactPackage import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.uimanager.ViewManager import com.facebook.react.bridge.NativeModule import com.mrousavy.camera.frameprocessors.FrameProcessorPluginRegistry class VisionCameraV3ImageLabelingPackage : ReactPackage { companion object { init { FrameProcessorPluginRegistry.addFrameProcessorPlugin("scanImage") {proxy,options -> VisionCameraV3ImageLabelingModule(proxy,options) } } } override fun createNativeModules(reactContext: ReactApplicationContext): List { return emptyList() } override fun createViewManagers(reactContext: ReactApplicationContext): List> { return emptyList() } }