Android : safely using sprites w/ alpha channel?

Ok, I have a game for Android which is comprised of 2D sprites. I am currently using PNG’s with transparency. Everything works, works perfectly on my Samsung Galaxy S, but I’m getting this warning for using the Transparent/Cutout/Diffuse shader:

Shader is using clip instruction (usually caused by alpha test). It might cause problems on some Qualcomm/Adreno drivers. UnityEditor.BuildPlayerWindow:BuildPlayerAndRun()

But there’s no cutout shader for mobile. So, can anyone tell me if there’s a way to optimize textures with an alpha channel on mobile devices? And if not, how common will issues resulting from this be? Like I said, it works perfectly on my device. How common are these Qualcomm/Adreno drivers with the issues?

p.s. yes, I’ve researched this already online, and understand that as a rule using alpha channels on mobile is considered taxing on performance. Unfortunately, for the purposes of this game, it would be pretty unfeasible to try to get away from this method.

edit- oh yeah, forgot to mention, I’m also using a lot of these PNG’s as GUI Textures, which seems to retain the alpha without a warning… only objects in the scene with the image attached as a texture seem to throw out the warning. I am considering trying to put it all into GUI Textures, can anyone confirm if this would be preferable? Also, I’m curious to know exactly which devices contain the aforementioned drivers, so I could get hold of one to test with… any help would be greatly appreciated!

EDIT: hmmm, yep, warning went away when I changed to Transparent/Diffuse. So I am assuming now that “Cutout” was the problem, which I guess I don’t need, thought I did but I guess not… Thanks!

Seems odd though, since cutout is all or none, while Transparent/Diffuse supports the full range… I would think if anything it would be more taxing. Still wondering about this…

I traced crashed on HTC Thunderbolt into this. It’s a really really really bad user experience - the phone locks up for 60 seconds and then reboots. If you’re getting any of these warnings I’d recommend making sure your game runs on HTC Thunderbolt.

The cutout shaders have an alpha test that generates a clip instruction in the shader, which is why they generate the warning.

If you have a problem with shader due to building adk.

Try to build Android with Texture compression : Adreon ATC that is in the build setting
you won’t find any more " Shader is using clip instruction (usually caused by alpha test).
It might cause problems on some Qualcomm/Adreno drivers."