I read the following conditions in Google: Before publishing the update, check if all the conditions listed below are met.
1) The application package name of the updated APK and the current version are the same. 2) The version number of the update is greater than that of the application. More ... 3) Signatures of the updated APK and the current version are the same.
Matches should only be in app.gradle? or rather these lines:
android { compileSdkVersion 26 defaultConfig { applicationId "схожий id" minSdkVersion 17 targetSdkVersion 26 versionCode 1 versionName "версия выше прежней" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } another subscription app ..