Prakash
Prakash

Reputation: 179

Modules 'base' and 'AdharVerificationDynamicFeature' contain entry 'assets/crashlytics-build.properties' with different content

I am generating Signed Build Bundle. Instant App Module is launching perfectly in device but when I am generating Signed Build Bundle I got this error.

'Modules 'base' and 'AdharVerificationDynamicFeature' contain entry 'assets/crashlytics-build.properties' with different content' In my assets folder 'crashlytics-build.properties' file is not showing.

Error logs :

What went wrong: Execution failed for task ':quickRide:packageQrReleaseBundle'. java.util.concurrent.ExecutionException: com.android.tools.build.bundletool.exceptions.ValidationException: Modules 'base' and 'AdharVerificationDynamicFeature' contain entry 'assets/crashlytics-build.properties' with different content.

Upvotes: 2

Views: 489

Answers (1)

hannes ach
hannes ach

Reputation: 17763

As a workaorund it should be safe to use

packagingOptions {
  exclude 'crashlytics-build.properties'
}

Upvotes: 0

Related Questions