0
I made a app In Android Studio, I ended up publishing it on Google Play. now I wanted to know how can I update it? What are the necessary steps? Just change app in android studio and compile as debbug ? or if there is another way
0
I made a app In Android Studio, I ended up publishing it on Google Play. now I wanted to know how can I update it? What are the necessary steps? Just change app in android studio and compile as debbug ? or if there is another way
1
Go to build.Radle (Module:app) and change the following lines:
If your app has:
defaultConfig {
versionCode 1
versionName "1.0"
}
Switches to:
defaultConfig {
versionCode 2
versionName "1.1"
}
Then generate your apk and send it to Google Play.
Thank you Mauro already helped me
Browser other questions tagged android android-studio app
You are not signed in. Login or sign up in order to post.
Is there any way you can explain it a little bit better?
– viana
Recompiles and reinstall. 1/2 question, 1/2 answer.
– Reginaldo Rigo
Ah? You have to elaborate the question better. No one noticed what you want.
– Jorge B.
Explain better so I can guide you friend, you want to update your application in Google Play and not knowing how you do?
– Mauro Santos
He made an app, and wants to know how to release updates for this app, example he launches version 1.0, he wants to know how to release version 1.1 and already publish on top of the old version in Google Play.
– Roberto Albino
@Robertoalbino you’re deducing this?
– viana
I was able to perfectly interpret his question.
– Roberto Albino
@Robertoalbino you understood why read the edited question.
– Reginaldo Rigo