package com.walkthroughswiper import android.view.View import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.uimanager.SimpleViewManager import com.facebook.react.uimanager.ViewManagerDelegate import com.facebook.react.viewmanagers.WalkthroughSwiperViewManagerDelegate import com.facebook.react.viewmanagers.WalkthroughSwiperViewManagerInterface import com.facebook.soloader.SoLoader abstract class WalkthroughSwiperViewManagerSpec : SimpleViewManager(), WalkthroughSwiperViewManagerInterface { private val mDelegate: ViewManagerDelegate init { mDelegate = WalkthroughSwiperViewManagerDelegate(this) } override fun getDelegate(): ViewManagerDelegate? { return mDelegate } companion object { init { if (BuildConfig.CODEGEN_MODULE_REGISTRATION != null) { SoLoader.loadLibrary(BuildConfig.CODEGEN_MODULE_REGISTRATION) } } } }