I made an app in Android Studio, I ended up publishing it to Google Play. now I wanted to know how can I update it? What steps do you need? If you just change app in android studio and compile as debbug? or if you have another way
I made an app in Android Studio, I ended up publishing it to Google Play. now I wanted to know how can I update it? What steps do you need? If you just change app in android studio and compile as debbug? or if you have another way
Go to the build.gradle (Module: app) file and change the following lines:
If your app has:
defaultConfig {
versionCode 1
versionName "1.0"
}
Switch to:
defaultConfig {
versionCode 2
versionName "1.1"
}
Then it generates your apk and sends it to Google Play.