Brian C. Lira
Brian C. Lira

Reputation: 1

Upload Xamarin application on google play ( Alpha) - Unoptimized APK

Im trying to upload my app as an alpha release on google play and I'm getting this error:

Imagem do erro

First I thought that using the "Generate one package (.apk) per selected ABI" whould solve the problem since the error says that I can manage multiple APKs, but it didnt (this screenshot is from one of the APKs generated when I distribute an archive by Ad-Hoc).

If its relevant information, I'm already using linking for SDK And User Assemblies, and my .APK size is 11.9MB on the console.

Does anyone know what to do?

Upvotes: 0

Views: 927

Answers (2)

Anand
Anand

Reputation: 1959

Check the following steps to create a release mode apk in visual studio

1.Disable Debugging mode.

2.Uncheck shared runtime

3.Make sure Configuration mode is "Release".

4.Set linking to SDK And User Assemblies(which will reduce app size)

Upvotes: 1

Nick Fortescue
Nick Fortescue

Reputation: 13832

Firstly, this isn't an error, it's a warning. It's ok to ignore it.

Xamarin does not yet have support for the Android App Bundle format, but they are working on it. The tracking bug is here.

Upvotes: 4

Related Questions