I have generated a signed APK for my application
here is the build.gradle
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.test_drivers"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
And I have checked both V1 and V2. The app is installed perfectly in version 8 but not in version 9.
Any Idea how to solve this?