I am trying to open the dropbox App from my app. Here I can link and upload the files into the dropbox correctly. I have a link button to dropbox in my app, on clicking this I can be redirected to the dropbox app, I am using the code below.
if (!UIApplication.SharedApplication.OpenUrl(NSUrl.FromString("testscheme://com.account.appname")))
{
NSString urlString = new NSString(Session.DropboxAPIHost);
NSUrl myFileUrl = new NSUrl(urlString);
UIApplication.SharedApplication.OpenUrl(myFileUrl)
}
But nothing will happening. I am new to xamarin Please suggest a solution