Compile APK using Android SDK with VB.NET -


i want make android ide vb.net,
note:
i don't want build android apps visual studio, question is, how use android sdk compile android apps vb.net (for make android ide).

it sounds want build android ide in vb.net , you're looking way compile java code? that's super easy. android studio projects built using gradle , invoking gradlew assembledebug kick-off build of debug apk. older eclipse-based android projects, can invoke ant directly ant debug , build debug apk. in order invoke of these tools in vb.net you'll need invoke process.start().

for more on building android projects command line using ant see @ building , running command line.

for more on building android projects command line using gradle see @ building , running command line

here's more complete @ happens during android build , various tools invoked:

enter image description here enter image description here


Comments