Reputation: 2879
I try to update customers App in Google Play, this is my first time I do this.
I created a certificate, it seems to be fine. The app was packaged with appcelerator titanium.
When I upload the app in store I get this message:
The name ofupdated APK-Package (gdp.app) must be the same with the package I want to replace (de.gdp)
File Name I upload is: GdP.apk
What do I have to change?
Upvotes: 0
Views: 1159
Reputation: 412
"I wont to replace (de.gdp)"
well, you cannot rename your package. If you change your package name the store recognizes it as a different app. so you cannot update it with different package name. Renaming your package to gdp.app will solve the issue.
Upvotes: 2
Reputation: 5368
If the package name and signing certificate do not match those of the existing version, Market will consider it a new application, publish it as such, and will not offer it to existing users as an update. So, you have to maintain the same package name of previous build.
See this link: http://lokeshatandroid.blogspot.in/2012/07/upload-apk-into-android-market.html
Upvotes: 1
Reputation: 72533
You changed the package name. You have to use the same package name as the original .apk. Change your package name back to de.gdp .
More information: http://developer.android.com/guide/topics/manifest/manifest-element.html
Upvotes: 2