On Mar 22, 2012, at 9:10 AM, Andrew Johnson wrote:
> My AndroidManifest.xml contains <uses-permission
> android:name="android.permission.INTERNET" /> and its build action is Content.
This is incorrect. The Build action should be None. Furthermore, edit your
.csproj and confirm that it contains the following XML fragment:
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
I suspect it doesn't; if it doesn't contain the above fragment, you need to add
it to the topmost <PropertyGroup>:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- ... -->
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
</PropertyGroup>
<!-- ... -->
</Project>
- Jon
_______________________________________________
Monodroid mailing list
[email protected]
UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid