How do I publish my application xamarin.forms

0

How do I distribute my App that I just created? Like, I'm going to the client to install a version on the smartphone of two or three people to test. What do I need to deploy to this device, my application?

How do I do this?

EDIT1

Following the suggestion of the CDS Group, I made a build in the solution and are giving this error?

  

Severity Code Description Project File Line Suppression State   Error Unexpected failure of the "LinkAssemblies" task.   Java.Interop.Tools.Diagnostics.XamarinAndroidException: XA2006:   Could not resolve reference to   'Android.Gms.Gcm.Iid.InstanceIDListenerService' (defined in assembly   'PushNotification.Plugin, Version = 1.0.0.0, Culture = neutral,   PublicKeyToken = null ') with scope' Xamarin.GooglePlayServices.Gcm,   Version = 1.0.0.0, Culture = neutral, PublicKeyToken = null '. When the scope   is different from the defining assembly, it usually means that the   type is forwarded. --- > Mono.Cecil.ResolutionException: Failed to   resolves Android.Gms.Gcm.Iid.InstanceIDListenerService on   Mono.Linker.Steps.MarkStep.MarkType (TypeReference reference) in   MonoDroid.Tuner.MonoDroidMarkStep.MarkType (TypeReference reference)
  in Mono.Linker.Steps.MarkStep.MarkType (TypeReference reference) in   MonoDroid.Tuner.MonoDroidMarkStep.MarkType (TypeReference reference)
  in Mono.Linker.Steps.MarkStep.MarkType (TypeReference reference) in   MonoDroid.Tuner.MonoDroidMarkStep.MarkType (TypeReference reference)
  in Mono.Linker.Steps.MarkStep.InitializeType (TypeDefinition type)
  in Mono.Linker.Steps.MarkStep.InitializeType (TypeDefinition type)
  in Mono.Linker.Steps.MarkStep.InitializeAssembly (AssemblyDefinition   assembly) in Mono.Linker.Steps.MarkStep.Initialize () on   Mono.Linker.Steps.MarkStep.Process (LinkContext context) in   Mono.Linker.Pipeline.Process (LinkContext context) in   MonoDroid.Tuner.Linker.Run (Pipeline pipeline, LinkContext context)
  in MonoDroid.Tuner.Linker.Process (LinkerOptions options, LinkContext &   context) in   Xamarin.Android.Tasks.LinkAssemblies.Execute (DirectoryAssemblyResolver   res) --- End of internal exception stack trace ---
  in Java.Interop.Tools.Diagnostics.Diagnostic.Error (Int32 code,   Exception innerException, String message, Object [] args) in   Xamarin.Android.Tasks.LinkAssemblies.Execute (DirectoryAssemblyResolver   res) in Xamarin.Android.Tasks.LinkAssemblies.Execute () in   Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute ()   in   Microsoft.Build.BackEnd.TaskBuilder.d__26.MoveNext () Authorizer.Android

Following the suggestion of Armindo Gomes, for the past link I have this error:

  

Can not create an archive 'Authorizer.Android' because the   file does not have a package name

Is not this package name the same as the one we generated in Android Manifest? If it is, I have yes, I'm even using it to try to send notification via firebase and qua I still can not.

    
asked by anonymous 20.09.2017 / 12:11

1 answer

1

Take a look at this video. Talk about posting app in store. link

This video is part of a training session hosted by Microsoft and the community beasts MonkeyNights

There are other classes you can take advantage of:

Xamarin Basics: link

Introduction to Xamarin: link

Xamarin.Forms and MVVM: link

Xamarin.Forms and Interface (XAML): link

Social Login: link

Push Notification: link

Publishing the app in store: link

    
21.09.2017 / 04:30