Use outro código de versão para seu APK. Você já tem um APK com o código de versão 1."
Como posso alterar o código da versão do APK ?
No AndroidManifest.xml
--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<manifest
android:versionCode="x"
android:versionName="X.X.X" >
Se usar o Android Studio ( Gradle para buildar) você altera no build.grade:
android {
defaultConfig {
versionCode X
versionName "X.X.X"
}
}
Saudações
--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.