web view without internet conection

 
Hey guys, i´m trying to create a web view app, but if i build my app via C-simulator and load it  on my device, the app can not connecting.
 
i had red something about a build.settings file, but i´m not sure how i can create one, i just use LuneEdite 2010 and rename the file into build.settings.lua (without the .lua ending, the file handel like a regular .txt file)
 
i just copied the code of this page : http://docs.coronalabs.com/api/library/native/newWebView.html
 
like: for the main.lua

local webView = native.newWebView( display.contentCenterX, display.contentCenterY, 320, 480 ) webView:request( "http://www.coronalabs.com/" ) -- or webView:request( "localfile.html", system.ResourceDirectory ) 

and build.settings.lua

settings = { android = { usesPermissions = { "android.permission.INTERNET", }, }, }

now, whats wrong?