最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - Running react native 0.76.7 without making MainApplication extend ReactApplication - Stack Overflow

programmeradmin2浏览0评论

In our app the main application is responsible for other features too, not just ReactActivity specific things. Because of the above reason I don't want to make my MainApplication extend ReactApplication, and I don't want my MainActivity to extend ReactActivity either. I was able to get the latter to work, but whenever I remove the extension of ReactApplication from MainApplication, my app crashes on launching RN bundle with the error:

java.lang.ClassCastException: com.package.MainApplication cannot be cast to com.facebook.react.ReactApplication

What can I do in this scenario? Is there any way that I perform all the operations that happen in MainApplication inside of MainActivity. This is what the related components of my MainActivity look like for reference:

class MainActivity : AppCompatActivity(), DefaultHardwareBackBtnHandler, Screen,
    {
    private val mDelegate = this.createReactActivityDelegate()
    fun getMainComponentName(): String {
        return "MainBundle"
    }

    private fun createReactActivityDelegate(): ReactActivityDelegate {
        return object : ReactActivityDelegate(this, this.getMainComponentName()) {
            override fun getReactNativeHost(): ReactNativeHost {
                return createReactNativeHost(application)
            }
        }
    }

    private fun createReactNativeHost(app: Application?): ReactNativeHost {
        return object : ReactNativeHost(app) {
            override fun getUseDeveloperSupport(): Boolean {
                return false
            }

            override fun getPackages(): List<ReactPackage> {
                return Arrays.asList<ReactPackage>(
                    MainReactPackage()
                )
            }

            override fun getBundleAssetName(): String? {
                return "my.react.bundle"
            }
        }
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        mDelegate.onCreate(savedInstanceState)
    }
发布评论

评论列表(0)

  1. 暂无评论