Can you use Visual Studio for Android Development?
If so how would you set the android SDK instead of .NET framework and are there any special settings or configuration?
|
Can you use Visual Studio for Android Development? If so how would you set the android SDK instead of .NET framework and are there any special settings or configuration? |
|||||||||||
|
|
|
|||||||||||||||||||||
|
|
Yes you can: http://www.gavpugh.com/2011/02/04/vs-android-developing-for-android-in-visual-studio/
In case you get "Unable to locate tools.jar. Expected to find it in C:\Program Files (x86)\Java\jre6\lib\tools.jar" you can add an environment variable JAVA_HOME that points to your Java JDK path, for example c:\sdks\glassfish3\jdk (restart MSVC afterwards) An even better solution is using WinGDB Mobile Edition in Visual Studio: it lets you create and debug Android projects all inside Visual Studio: http://ian-ni-lewis.blogspot.com/2011/01/its-like-coming-home-again.html Download WinGDC for Android from http://www.wingdb.com/wgMobileEdition.htm |
||||
|
|
Ok here is the proper answer for it Yes you can use visual studoio for android using "VS Android" Here are the steps to set it up (i) Downloading the SDK and other dependencies: 1) Download the SDK http://developer.android.com/sdk/index.html 2) Download the NDK http://developer.android.com/tools/sdk/ndk/index.html 3) Download Cygwin http://cygwin.com/install.html 4) Download the JDK http://www.oracle.com/technetwork/java/javase/downloads/index.html 5) Download VS 2010. This version is very essential because VS Android is not compatible with any other VS version http://www.microsoft.com/visualstudio/en-us/products/2010-editions/express-iso 6) Download VS Android http://code.google.com/p/vs-android/ 7) Apache Ant download http://ant.apache.org/bindownload.cgi 8) Set environment variables: [ To set environment variables, do: MyComputer->Right click->Properties->Advanced->Environment variables. ] a) ANDROID_NDK_ROOT = :\android-ndk-r8-windows\android-ndk-r8 b) ANT_HOME = :\apache-ant-1.8.4-bin\apache-ant-1.8.4 c) JAVA_HOME = \Java\jdk1.7.0_05 d) _JAVA_OPTIONS = -Xms256m -Xmx512m 9) Download Example from here http://code.google.com/p/vs-android/downloads/detail?name=vs-android_samples.zip It works like charm .... and best so far to use |
|||||
|
|
Believe me, I've tried so hard to find a decent IDE for Android developement but I failed. I used Visual Studio for many years, and it is so hard for me to get use to the way Eclipse doing things. However, the new IntelliJ supports for Android development, it's the closest you can get. |
||||
|
|
|
From the Android documentation: The recommended way to develop an Android application is to use Eclipse with the ADT plugin... However, if you'd rather develop your application in another IDE, such as IntelliJ, or in a basic editor, such as Emacs, you can do that instead. Currently, there are plug-ins for IntelliJ IDEA and NetBeans, but you can still use the tools in /tools to build, debug, monitor, measure and start the emulator. |
|||
|
|
|
If you're interested in producing HTML5 hybrid applications (web apps wrapped in a native container giving access to device functions), the Nomad Visual Studio extension supports building for android devices. |
|||
|
|
|
Besides, you can use VS for Android development too, because in the end, the IDE is nothing but a fancy text editor with shortcuts to command line tools, so most popular IDE's can be used. However, if you want to develop fully native without restrictions, you'll have all kinds of issues, such as those related to file system case insensitivity and missing libraries on Windows platform.. If you try to build windows mobile apps on Linux platform, you'll have bigger problems than other way around, but still makes most sense to use Linux with Eclipse for Android OS. |
|||
|
|
|
That depends on what you actually want to achieve. You want to keep on making normal Java-based Android application, but use Visual Studio for development? Then it's bad news, as Visual Studio has no built-in java support. Thus, if you use it out-of-the-box, you will lose all Java-specific Eclipse functionality (IntelliSense for Java, Java debugger, wizards, etc) as well as numerous Android plugins (that are Eclipse-specific and won't work with VS). On the other hand, you can use Mono for Android to develop apps in C# in VS, but they won't look as smooth as the native apps (some functionality might be missing, look-and-feel slightly different, etc.). In that case such app could sell less than a "normal" Java app that looks and feels like all other Java apps. If you are talking about native Android code (in C/C++), such as games, the news are not as bad. As Visual Studio has no problem with C++, there are numerous ways to make it work:
|
|||
|
|
|
I know this q is quite old but it might me useful: http://blogs.nvidia.com/2013/02/nvidia-introduces-nsight-tegra-to-assist-android-developers/ |
|||
|
|
|
I suppose you can open Java files in Visual Studio and just use the command line tools directly. I don't think you'd get syntax highlighting or autocompletion though. Eclipse is really not all that different from Visual Studio, and there are a lot of tools that are designed to make Android development more comfortable that work from within Eclipse. |
|||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.