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 process. The > problem seems to be related to the following lines in the output console (If > you look at the javac command line parameters, it doesn't appear to be > including my Test.java source file as one of the parameters): It is; it's using a javac "response file" (the "@C:\Users\CSchulte\AppData\Local\Temp\tmp5921.tmp" parameter), which lists all the files to compile (as there may be more files than the command-line length permits). Unfortunately there's no way to preserve the response file contents for sanity-checking. :-( What encoding is Test.java using? It needs to be UTF-8 or a compatible charset (such as 7-bit ASCII). Unfortunately, I'm unable to reproduce. If the file encoding isn't the solution, could you please file a test case and attach the project so I can further investigate? Thanks, - Jon _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
