Search code examples
androidgoogle-playxamarinpublish

Error publishing app to the Google Play.


I have a problem while uploading .apk file. When I try to upload .apk file, I always get the same error:

enter image description here

Its says that I need to name the app file, something like this: com.example.myapp.

The .apk names that I tried (examples): com.rvislt.prosld.apk, com.rvislt.prosld2014.apk and I always got the above error.

I tried to use the different browsers, shutdown all background application and I always got the same error.

It makes me crazy!

What is the problem and how can I fix it?


Solution

  • You are simply renaming the APK file name, try to change your package name of your application.

    Like this

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.rvislt.prosld"
        android:versionCode="1"
        android:versionName="1" >
    

    Renaming the APK file to com.rvislt.prosld.apk does not make any sense and it wont work for you.