Reputation: 681
I am new to android development and need to create an apk file for an android application I made in Xamarin Studios so my peer can test it on his device. How can I create the apk file?
Upvotes: 0
Views: 7386
Reputation: 1756
With the latest Visual Studio 2019 and the latest xamarin, I will literally walk you through all the steps:
Build your android project first.
Right-click on your android project -> click "Archive..."
It'll show something like this: Let it complete its processing
When it's done, click the "Distribute" button, it'll open a menu like this:
Upvotes: 2
Reputation: 85
"Use Shared Runtime" inside the project properties/Android Options must be Disabled, otherwise Mono Runtime won't be included and your app will crash on phones where Mono isn't installed.Example
Upvotes: 6
Reputation: 484
Upvotes: 3
Reputation: 1371
For simple testing:
Upvotes: 1