Android 动态功能模块,未找到资源

Android dynamic feature module, resource not found

当下载的功能模块发布到 Play 商店时,我在启动 activity 时遇到问题。它总是在下载的模块 activity 中的 setContentView() 上崩溃。

java.lang.RuntimeException: Unable to start activity ComponentInfo{xxx/xxxActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7e080000
Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7e080000
    at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:227)
    at android.content.res.Resources.loadXmlResourceParser(Resources.java:2149)
    at android.content.res.Resources.getLayout(Resources.java:1158)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:421)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:374)
    at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:469)
    at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:140)

真正奇怪的是,如果我发布新版本的应用程序(唯一的变化是版本代码)来播放商店并更新应用程序,一切都会完美无缺。

当我卸载应用程序并再次安装时崩溃 returns。

我的应用程序正在继承 SplitCompatApplication() 并且只是为了确保我已经尝试添加:

override fun attachBaseContext(newBase: Context?) {
        super.attachBaseContext(newBase)
        SplitCompat.install(this)
    }

到功能模块中的活动并禁用 proguard 以确保在缩小期间没有删除任何内容

我的 SplitInstallStateUpdatedListener

private val listener = SplitInstallStateUpdatedListener { state ->
        val multiInstall = state.moduleNames().size > 1
        state.moduleNames().forEach { name ->
            // Handle changes in state.
            when (state.status()) {
                SplitInstallSessionStatus.DOWNLOADING -> {
                    //  In order to see this, the application has to be uploaded to the Play Store.
                    displayLoadingState(state, "Laddar ner $name")
                }
                SplitInstallSessionStatus.REQUIRES_USER_CONFIRMATION -> {
                    /*
                      This may occur when attempting to download a sufficiently large module.
                      In order to see this, the application has to be uploaded to the Play Store.
                      Then features can be requested until the confirmation path is triggered.
                     */
                    startIntentSender(state.resolutionIntent()?.intentSender, null, 0, 0, 0)
                }
                SplitInstallSessionStatus.INSTALLED -> {
                    if(toInstall.isNotEmpty() && toInstall.contains(name)) {
                        toInstall.remove(name)
                    }
                    if(toInstall.isEmpty()) {
                        // Updates the app’s context with the code and resources of the
                        // installed module. (should only be for instant apps but tried it anyway, no change)
                        SplitInstallHelper.updateAppInfo(applicationContext) 
                        Handler().post {
                            viewModel.goToOverview()
                        }
                    }
                }

                SplitInstallSessionStatus.INSTALLING -> displayLoadingState(state, "Installerar $name")
                SplitInstallSessionStatus.FAILED -> {
                    toastAndLog("Error: ${state.errorCode()} for module ${state.moduleNames()}")
                }
            }
        }
    }

此代码根据用户要求下载模块,并在基础应用程序中启动 activity

下载的模块 activity 然后从 BottomSheetDialogFragment 启动,如下所示:

xxx.setOnClickListener(view -> {
                    Intent intent = new Intent();
                    String packageName = Constants.MODULE_BASEPACKAGE + "." + Constants.MODULE_XXXXX;
                    intent.setClassName(getActivity().getPackageName(),packageName + ".XxxxxActivity" );
                    ParcelUuid parcelUuid = new ParcelUuid(UUID.randomUUID());
                    intent.putExtra("uuid", parcelUuid);
                    startActivity(intent);
                    dismiss();
                });

我完全不知道下一步要做什么。似乎在安装更新之前不会更新资源列表并且重新启动应用程序是不够的,或者我只是错过了一些简单的东西?

这似乎是 com.android.tools.build:gradle:3.2.1 中的错误 当我升级到 3.3.0 时,问题自行解决。

希望它可以帮助遇到此问题的其他人...

您始终可以从动态模块中的主项目访问资源,因此您只需将动态模块的资源放在主应用程序中,然后在主应用程序中使用 R.java。

但是,打开这些资源的正确方法是使用 SplitCompat.install(this) inside the dynamic delivered activity

我遇到了完全相同的问题;全新安装因 Resources$NotFoundException 而崩溃,但后续升级工作正常(动态模块未再次下载)。但我的情况略有不同,因为我没有在动态模块中启动 Activity,而是想通过导航加载片段。在那种情况下,我应该直接导航并让导航完成它的工作,而无需手动检查模块是否已加载(请参阅 https://developer.android.com/guide/navigation/navigation-dynamic 了解更多信息)。

// Just navigate without calling splitInstallManager.installedModules.contains()
findNavController().navigate(DynamicDeliveryDirections.actionDynamicFragment())

如果您想启动一个 Activity,您确实需要检查模块是否已加载,就像您已经在做的那样。我建议您看一下 Google 的示例,它完全符合您的要求。

https://codelabs.developers.google.com/codelabs/on-demand-dynamic-delivery/index.html?index=..%2F..index#1

至于我的情况,我必须确保包名是正确的。例如,如果主模块的包名称是 com.example.foo,动态模块是 com.example.foo.dynamic_activity,那么在动态模块中启动 Activity 将如下所示。

Intent().setClassName(
    "com.example.foo",
    "com.example.foo.dynamic_activity.DynamicActivity"
).also {
    startActivity(it)
}

我不知道它为什么有效,但对我来说使用 AppCompatActivity 解决了这个问题