-
Notifications
You must be signed in to change notification settings - Fork 28
Support for *.uPort file type #6
Support for *.uPort file type #6
Conversation
Unzip this file and send it to your self via email, and try to open it with uport mobile app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't tested it yet but the code looks fine.
<action android:name="android.intent.action.VIEW" /> | ||
<action android:name="android.intent.action.EDIT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a heads-up,
The path-matcher in android is very primitive and won't match paths with multiple .
Additional <data>
sections will have to be added at some point to compensate.
<key>public.filename-extension</key> | ||
<string>uPort</string> | ||
<key>public.mime-type</key> | ||
<string>application/octet-stream</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be application/uport-vc
or something similar?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Honestly I have no idea. I just tested withapplication/octet-stream
, and it worked fine. We can change it in the future if need to
No description provided.