Xamarin.forms: Start An Activity Using Dependencyservice
In my Xamarin.Forms.Page I have a DependencyService that must activate an activity in my .Droid project. How do I activate the Activity? I've tried StartActivity(typeof(FacebookAc
Solution 1:
Found out the problem. I have to put an explicit constructor
public FacebookActivity(){}
Post a Comment for "Xamarin.forms: Start An Activity Using Dependencyservice"