Search Issue Tracker
Fixed in 5.4.1
Votes
0
Found in
5.3.4p2
Issue ID
787494
Regression
No
Application.OpenURL problem with mailto on Tizen
Was able to repro this on 5.4b14 and 5.3.4f1 on Win 8.1 using the 2.4SDK, however I think this is a Tizen bug as the app that crashes is the Tizen email program:
1) Application.OpenURL works for opening URLs (I tried http://www.google.com)
2) It does NOT work for mailto: protocol. I tried doing this with the "Email" capabilities box checked and not.
To repro:
1) Paste the following code into an OnGUI function:
if (GUI.Button (new Rect (100, 100, 100, 100), "Press to open browser"))
Application.OpenURL("http://www.google.com");
if (GUI.Button (new Rect (300, 300, 100, 100), "Press to send email"))
Application.OpenURL("mailto:blerk@unity3d.com");
2) Put that script on the camera in a blank scene
3) Push to device
4) Press button 1: It opens browser
5) Press button 2: It opens the email program; email program then crashes
6) Repeat steps 4-5, but check the capability "email" box in Build Settings > Publishing Settings first.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Add comment