Fixed in v1.02.
Worth an explanation:
Dim u As Uri = ...
'now we want to convert the URI to string:
Dim s As String = u
We are relying on the default toString method implementation. However because Uri is an object wrapper it adds the object type to the output string:
(HierarchicalUri) content://...
Solution is to get the unwrapped uri and convert it to string (after we verified that the native toString method is good for us):
Dim o As Object = u
Dim s As String = o