Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Developing Android applications with Visual Studio 2008

I've recently obtained an HTC Desire and I'm interested in porting my 3D engine to the device. I have a slight annoyance however. I'd love to be able to do development under Visual Studio 2008. Am I to assume I'm going to need to re-process my SLN files to do GCC builds? Its not a vast issue as I already have an application that processes SLN and VCProj files through GCC and then links them together at the other end. I'll just need to set up the right libraries with it.

Are there any other gotchas I need to think about? Or, indeed, is there an easier way?

Any info would be much appreciated!

Cheers :)

like image 503
Goz Avatar asked Nov 26 '22 20:11

Goz


1 Answers

You will need to use your own or the NDK supplied build system. I believe Visual Studio can be set up to call external commands to build. You can of course use Visual Studio as the code editor, and call the NDK supplied make on the Makefile to build your application. You can't use Visual Studio as a debugger.

like image 163
Yann Ramin Avatar answered Nov 28 '22 09:11

Yann Ramin