Android Studio – How can you replicate a bug seen when installing an app via App Bundle from the Google Play store?
We've developed an app that works flawlessly when run from Android Studio with the following configuration: buildTypes { debug { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } To simulate a Google Play…