So , I am creating a contact us app using corona but when typing the following code :
local webView = native.newWebView( 0, 0, 320, 480 )
webView:request( “http://www.MYSITE.com/Contactform.php” )
it gives a black screen :/
I’ve also added to the “build.settings” file the following :
settings =
{
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
},
},
}
P.S : I know I have to change “MYSITE” , and I’ve tried it with differentes sites like : m.facebook.com , but it always shows a black screen
