I can't find where to set the compiler option to reduce the type checking in Eclipse.
It doesn't like putting -I0 in Compile Time Options.
Thanks!
I can't find where to set the compiler option to reduce the type checking in Eclipse.
It doesn't like putting -I0 in Compile Time Options.
Thanks!
Using -l 0 in Compiler Time Options works for me with the 4.1.6 SDK. What I'm starting to do is setting the type checking and optimizer level in the projects monkey.jungles files though. Like this:
project.manifest = manifest.xml project.typecheck = 0 project.optimization = 2
ok a uppercase "I" and a lowercase "l" look identical. I used the capital "eye". But I like your new approach. Thanks!
Yes, I like doing it in jungles, as you can set it off for apps that don't have the type checking stuff (old apps), and turn it on for new apps.