build.settings file wrong?

Hi, 

I have finished building my game, and it worked perfectly on my device. 

When it worked great, I decided to add ads with AdMob. I have changed my build.settings to enable the plugin and permissions, but since that, the app no longer installs on my device - it shows - “App not installed.”

I have searched the forums for a similar case and it says that the most common reason for this error is a build.settings not written correctly. 

I’ve tried many versions of build.settings file but none of them worked…

this is the current file:

settings = { orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "portrait", supported = { "portrait", } }, excludeFiles = { -- Include only the necessary icon files on each platform iphone = { "Icon-\*dpi.png", }, android = { "Icon.png", "Icon-Small-\*.png", "Icon\*@2x.png", }, }, plugins = { ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, }, -- -- Android Section -- android = { usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", }, }, }