Re: [mono-android] Error Deploying Project After Including Java Source file

2012-04-16 Thread craig
Thanks it's working now. I deleted the Java file and re-created it from within Visual Studio. After that it worked fine. Maybe the old file was somehow using the wrong encoding as you suggested. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Error-Deploying-Proj

Re: [mono-android] Error Deploying Project After Including Java Source file

2012-04-16 Thread Jonathan Pryor
On Apr 16, 2012, at 9:35 PM, craig wrote: > I went into project properties, created an Android Manifest, and then changed > package name to "com.test" to match the package name of my java source file. This shouldn't be necessary... > The project builds fine but it errors out during the deploy pr

[mono-android] Error Deploying Project After Including Java Source file

2012-04-16 Thread craig
I'm trying to demo using Java Source code via JNI but having issues. I created a new Mono 4 Android project. I also created a simple Java file named Test.java. Here is the contents of Test.java: [code] package com.test; public class Test { public Test() { }