Update apps by Android Studio

Asked

Viewed 56 times

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

  • Is there any way you can explain it a little bit better?

  • Recompiles and reinstall. 1/2 question, 1/2 answer.

  • Ah? You have to elaborate the question better. No one noticed what you want.

  • Explain better so I can guide you friend, you want to update your application in Google Play and not knowing how you do?

  • 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.

  • @Robertoalbino you’re deducing this?

  • I was able to perfectly interpret his question.

  • @Robertoalbino you understood why read the edited question.

Show 3 more comments

1 answer

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

You are not signed in. Login or sign up in order to post.