Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android apk upload not working because name not valid

I have signed and zipalign my android application and now wishes to upload it on the play store. I however get the following message when I am done uploading it:

Upload failed Your APK's package name must be in the following format "com.example.myapp". It may contain letters (a-z), numbers, and underscores (_). It must start with a lowercase character. It must be 150 characters or fewer.

My apk name is

dd.afm.aftermath.apk

So I don't understand why it does not comply?

Thanks in advance

like image 848
LibreLancier Avatar asked Feb 28 '26 10:02

LibreLancier


1 Answers

Change your AdnroidManifest.xml file's package value from "AndroClient.AndroClient" to "com.example.myapp" (or whatever).

Then Xamarin will use it when compiling.

like image 168
Ε Г И І И О Avatar answered Mar 02 '26 22:03

Ε Г И І И О