I just imported a project in Android Studio 3.2.1 And synced successfully. The project imported was using
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
And now I changed version according to 28
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 2
versionName "2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
So I have already application installed in my smartphone. When I try to install its giving message "package signatures do not match the previously installed version". And most important I cannot uninstall the application, I need to only update it. What should I do to make it work correctly?