Android build has issues with WebPopup and text

I have an app which is working 100% for iOS.
When I build it for Android it has issues.
I’m testing with a Motorola Defy with Android 2.2.2

I have a YouTube video embedded in a page. I can view the YouTube video and play it on the iPhone but if I view the same webpage in a webpopup for Android it’s blank. There’s an area to click on, but it does nothing. It works properly in the Android browser.

I have a mobile twitter page embedded in a webpopup. It works fine on iOS and desktop browsers, but embedded in a webpopup it shows the Twitter logo and sits there spinning an icon which never loads.
Try using this in a webpopup:
https://mobile.twitter.com/#!/techwebcast
It works perfectly in the Android Browser.

Even setting the text centrepoint in code, moving text still appears higher in Android than on iOS.

local NewsText = display.newRetinaText("", 0, 0, native.systemFont, 16)  
 NewsText:setReferencePoint( display.CenterReferencePoint )  
 NewsText:setTextColor(255,255,255)  
mainGroup:insert( NewsText )  
 NewsText.x=400  
 NewsText.y=425  

[code]
newstextleft = function( )
transition.to(NewsText, { time=10000, x=-320, onComplete=resetnewstextleft} )
end

resetnewstextleft = function( )
transition.to(NewsText, { time=1, x=640, onComplete=newstextleft} )
end

newstextleft()
[/code] [import]uid: 10389 topic_id: 18393 reply_id: 318393[/import]

Hmm. I might email Carlos. [import]uid: 10389 topic_id: 18393 reply_id: 71509[/import]

Can you share what you did for the youtube embed??

I am trying to do the same thing for a twitter feed… and can experience the same results. [import]uid: 71201 topic_id: 18393 reply_id: 71958[/import]

I sent my code to Carlos and he’s looking into it. [import]uid: 10389 topic_id: 18393 reply_id: 72069[/import]