I have a deep link that works when in the chrome browser to open my app with a certain ID. This link looks like following:
intent://m/#Intent;scheme=myapp://app.com/reference/2016062910185811;package=some.package.com;end
this works when in a webbrowser via <a href="intent://...;end">click</a>
.
But when setting this link in a PDF (via aspose) this doesn't do anything, although it recognizes that it is a link (I can see the click animation).
The link is set via the following code::
var img = new Aspose.Pdf.Generator.Image(sec1);
tr.Paragraphs.Add(img);
//Assign a new instance of hyperlink to hyperlink property of segment
img.Hyperlink = new Hyperlink {
LinkType = HyperlinkType.File,
Url = "intent://m/#Intent;scheme=myapp://app.com/reference/" + input.Reference + ";package=some.package.com;end"
};