The case you are describing sounds like a complete rewriting of the application. This is perfectly in line with the application update process of Google Play.
Google-play determines that an application is an update based on two criteria only:
- the package name of the app
- and its version code
To be considered as an update, your new app should have exactly the same package name as the former one ("com.example.myapp
"), and its android:versionCode
should be higher, in your AndroidManifest.xml
file. Of course, your APK should be signed with your account's private key, like any application you publish under your account.
All the rest is up to you.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…