0

We have set up Firebase App Distribution to use our app bundle. It is signed by Google Play (play store signing using their key) after we linked to our account on the Firebase Dashboard.

When installing the app, the Firebase App Tester redirects to the Play Store app, and then fails to install with this error (in console logs):

PackageManager E ERROR: could not load root hash from incremental install

What can cause this issue? I checked related questions on SO but none provides a solution.

Gabor
  • 7,352
  • 4
  • 35
  • 56

1 Answers1

0

Problem solved when I switched my compile SDK.

// compileSdkPreview = "UpsideDownCake"
compileSdk = 33

Credit goes to a random comment that lead me to the right track here: https://issuetracker.google.com/issues/231345771

Gabor
  • 7,352
  • 4
  • 35
  • 56