Update apps from Android Studio [closed]

0

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

    
asked by anonymous 23.12.2016 / 16:15

1 answer

1

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.

    
23.12.2016 / 17:47