Android Instant App: Default Activity not found

This is apparently a clear merge error. I am trying to connect existing code to an instant application module. I tried:

  • Changed the main application module for baseFeatureModule.
  • Created a new completeApp module.
  • Omitted manifest of completeAppModule:

  • implementation project entry added to completeAppModule

    implementation project (": udofy")

  • These entries are added to the base module:

    baseFeature true in android block

    application project (": fullModule") in dependencies

I tried to restore / invalidate the cache and restart / restart the studio, but without help. Can anyone help me here?

+4
source share
2 answers

, Android Studio . build.gradl e. . . , AndroidManisfest.xml. xml , :

<intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
0

, crashlytics , . . Crashlytics , APK , Android Studio , .

0

Source: https://habr.com/ru/post/1685317/


All Articles