Alexander_F
Alexander_F

Reputation: 2879

Publish app in google play store

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

Answers (3)

darshanz
darshanz

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

Lokesh
Lokesh

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

Ahmad
Ahmad

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

Related Questions