12

ダウンロードしたフィーチャー モジュールが Play ストアに公開されたときに、アクティビティを開始する際に問題が発生します。ダウンロードされたモジュール アクティビティの 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)

本当に奇妙な部分は、アプリの新しいバージョン (変更は versionCode のみ) を公開してストアを再生し、アプリを更新すると、すべてが完全に機能することです。

アプリをアンインストールして再度インストールすると、クラッシュが再発します。

私のアプリケーションは SplitCompatApplication() を継承しており、それ以来追加しようとしたことを確認するために:

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

機能モジュールのアクティビティに追加し、プロガードを無効にして、縮小中に何も削除されないようにします

私の 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()}")
                }
            }
        }
    }

このコードは、ユーザーの要求に応じてモジュールをダウンロードし、ベース アプリでアクティビティを開始します。

ダウンロードされたモジュールのアクティビティは、次のように 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();
                });

次に何を試すべきかについて、私はすべてのアイデアがありません。アップデートがインストールされてアプリを再起動するまでリソース リストが更新されないように見えるのですが、何か単純なものが不足しているだけなのでしょうか?

4

3 に答える 3