「com.android.dynamic-feature」によるメニューモジュールのセットアップがあります。Androidスタジオでコーディングして実行すると、すべて正常に動作します。Build -> Build APK(s) で apk をパッケージ化すると、モジュールでアクティビティを開始すると Class Not Found がクラッシュします。注: アクティビティ パスは正しいです。モジュールがアプリに接続されていないと思います
- マニフェスト モジュール:
<dist:module
dist:instant="false"
dist:onDemand="false"
dist:title="">
<dist:delivery>
<dist:install-time />
</dist:delivery>
<dist:fusing dist:include="true" />
</dist:module>
- モジュールグラドル
apply plugin: 'com.android.dynamic-feature'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply from: '../shared_dependencies.gradle'
ここに間違いはありますか?ありがとう