Google Play Console: Package name of your Instant App APKs should be the same as your app's package name

Viewed 1129

I'm trying to upload into develop my Instant App with Google Play Console, but it returns an error: Package name of your Instant App APKs should be the same as your app's package name.

I have a feature call base, the apk and the instantApp feature too, everyone has its own gradle file and the apk and the instantApp implements the base feature:

dependencies { implementation project(':base') }

I try to publish the .apk building by Build/Generate signed APK... with the same key of the installable App and it creates a file .apk compressed on zip

I don't know what happends cause the instantApp and the apk modules uses the same base feature and I don't find how I have to build the instant App APK

2 Answers
Related