Using mailto with an "=" sign in the body on Android

Hey,

I’m currently trying to generate an mail link inside the game with “mailto”.
It works on every platform except for Android/Gmail somehow.

Whenever I use the “=” sign as “%3D” it simply just cuts of the text.
So far I wasn’t able to find a solution to this since the “=” sign url code “%3D” seems to be correct.
Has anyone experienced similar issues?

	std::string url = "mailto:?&subject=You%20will%20love%20this%20game!&body=Android%0D%0Ahttps%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.Test.Test";
	Application::getInstance()->openURL(url);

On android the body would look like this:

Android

https://play.google.com/store/apps/details?id

instead of this:

Android

https://play.google.com/store/apps/details?id=com.Test.Test

This isn’t Cocos related.