Standard/Default AndroidManifest.xml ?

I’m working on integrating Revmob and it requires some settings in AndroidManifest.xml  which I currently don’t have in my project folder.  I wonder:

Is there a standard or default AndroidManifest.xml  that I can just add the settings to?  What exactly should it look like with the Revmob stuff added?

I’ve done a bunch of searches but haven’t found anything in the docs or forums on this topic.

-Jerry

Hi Jerry,

This is done through the build.settings file

Here is an example of mine which works with Revmob: 

settings = {     orientation =     {         default ="portrait",         content = "portrait",         supported =         {             "portrait"         },     },     androidPermissions =     {         "android.permission.INTERNET",         "android.permission.ACCESS\_WIFI\_STATE",         "android.permission.READ\_PHONE\_STATE",         "android.permission.ACCESS\_NETWORK\_STATE",     }, }

Thanks CraftyDeano!   I suspected it might be added to the build settings file.  RevMob needs to change their webpage.

Hi Jerry,

This is done through the build.settings file

Here is an example of mine which works with Revmob: 

settings = {     orientation =     {         default ="portrait",         content = "portrait",         supported =         {             "portrait"         },     },     androidPermissions =     {         "android.permission.INTERNET",         "android.permission.ACCESS\_WIFI\_STATE",         "android.permission.READ\_PHONE\_STATE",         "android.permission.ACCESS\_NETWORK\_STATE",     }, }

Thanks CraftyDeano!   I suspected it might be added to the build settings file.  RevMob needs to change their webpage.