'mesh' is not a member of UnityEngine.Component - Explicit Typecasting for Android

I know that on iPhone, the solution was to append a `as MeshCollider` (or MeshFilter or Mesh*), but it does not seem to work for Android. I end up getting the BCE0044, 43 errors. Is there another way to typecast this for Android?

There's no reason "as" shouldn't work, so we can possibly help you better if you share a real line of code.

However, it's easy in both JavaScript and C# to use the generic form of GetComponent, to get at what you want. C# should be straightforward, and it's right on the GetComponent page. UnityScript requires a bit more digging:

GetComponent.<MeshFilter>().mesh

http://unity3d.com/support/documentation/Manual/MonoUpgradeDetails.html

I recommend that approach, going forward.