Run WinMo Apps? - Android Software Development

I am wondering if there is any type of library or environment where I could run a program written exclusively for WinMo 6. I can't post the app here due to copyright issues, but is this possible?

It seems you need something similar to wine for linux, i'm just thinking why do that with all the android apps we have

I can think of lots of programs that are not available for the android. I don't think the android has a large enough base for many outfits to utilize the wonderful potential of the android. For now the vast number of apps to me are cute little things operating in a insular little bubble.
Hope things change but for now I keep my HTC Wmo phone around
Regards, PK

ezangrando said:
It seems you need something similar to wine for linux, i'm just thinking why do that with all the android apps we have
Click to expand...
Click to collapse
Oziexplorer, there's nothing so powerful for off road navigation in android.

No. You cannot.
Android = Dalvik/Java
Winmobile = C/C++ and/or DotNet
Pretty much all of the significant apps have been made from scratch for android. If you want a specific app, the best way to go about it is to bug the developer of that app. It is a good guess that they may be already working on a version for android and/or thinking about it. Your request might be the only thing they need.

Related

Which Development tools for WM 6

Hi all you experienced WM programmers.
I'm new to windows mobile, but program other environments for a living(micro controllers, embedded linux, win32 etc)
I was wondering what the development tool of choice is for WM ?
I know that on Win32 .net development sucks blocks...yes I develop extreme low latency process control stuff and the abstraction from hardware in .net makes it unusable for such programming as you totally lose control over memory allocation etc.
Being as the WM is such a limited devices I presume the same issues are found there as well. So what are you guys using to develop? strictly embedded c/c++ or is there something else out there that is useful?
Thanks in advance for any suggestions
You defiantly want embedded!
You can use the free eVC or the expansive VS 2005, but if you want quick native code programs or to write system components like today plugins and keyboards this is the only way to go.
If you think .NET is bad on a PC just wait till you see it in WM. Because of the limited resources of these devices its a sluggish nightmare!
levenum said:
You defiantly want embedded!
Click to expand...
Click to collapse
http://www.d-e-f-i-n-i-t-e-l-y.com/
Other Developer environments.
Have you considered the PPL programing environment.
Provided is an IDE environment both for the PC and PPC. This means that applications can be developed and run on both platforms. Not sure about latency, however you can create .exe files from you're code and interface to external DDL's.
There web site is http://www.arianesoft.ca/page.php?1 and a trail version can be downloaded. The trail gives basic functionality with a 15 day full function registration option.
The Developer is quite open to questions and the forums are also quite active.
Not sure how deep you wish to access the OS/HW however it may be worth considering.
Cheers.
burkay said:
http://www.d-e-f-i-n-i-t-e-l-y.com/
Click to expand...
Click to collapse
Yea, that one slipped by me even with the spell checker.
Excuses:
1) I was tired.
2) English is not my native language.
I'll just leave it there because its pretty funny. And hey, using native code instead of .NET is in defiance of Bill's wishes!

Programming CE, Book and resource recommendations

Hello,
After a decade of not doing C, I find that alot of things have changed when programming c++ native for CE. Even things like:
string somestring;
no longer function. Wow!.
strcpy has been replaced with StringCchCopy. Wow, MS has done a number here... and so on...
Anyhow I searched xda and found allot of good threads. But what if I'm looking at re-learning C++, with a focus on CE programming only? What books and other resources would you recommend, its almost like starting from scratch. I got vs2005 + emu + been reading allot of MSDN, did some basic apps. etc.
BTW: How the .... do you declare a variable length string???
and in VS2005 is running the debugger the only way to get the app to start automatically ???
Thanks
*bump*, anyone?
Couple of notes:
1) I strongly recommend avoiding VS, it is unbearably slow and balky.
2) strcpy and all the other functions are still supported by c runtime on CE (VS 2005 complains about them but you can ignore it). The problem is all windows API on CE use UNICODE so you have to declare strings as WCHAR (thats MS speak for unsigned short) and use wcscpy, and such.
3) The only book I know on CE specifically is this and I only read the two sample chapters online, so can't really recommend it. (Though the sample chapters were very useful). What you need is to get a good book on Win32 programming that will get you well on your way.
4) There is an MFC class CString which wraps up all string related functions very nicely. If you are not using MFC but clean C/C++ the only thing I can think of is malloc and free or the C++ versions new and delete.
Check out the links in my sig if you want to see code examples of small but functioning apps.
I disagree with levenum's comment on VS, but agree at the same time (weird I know). I wouldn't use VS for native development because it has A LOT of extra features that I think would be useless for native developers. Also, the lighter eVC++ has pretty much everything you need to write native apps.
I had this book called "Programming Windows CE 3.0" or something along those lines a few years ago. I got it for like $3 on Amazon. If you can find an updated version of that (or even the old version would be useful) then you should buy it. It will show you all you need to know to get started. You can learn the new api's from browsing msdn.
If you're only a little rusty with C/C++ I would suggest jumping right in to the Sdk samples and seeing how they do things.
Thanks, the reason why I wanted to use VS is so that maybe later I wouldn't mind going into MFC. So having one platform would be nice.
So far I have done some basic things, like drawing, etc, but I find I'm having a harder time making strings and including the api's to work. Almost all of the msdn examples fail to compile properly.
I have an old book MFC for Windows 95 by MS, is it even worth looking at ?
robp said:
I disagree with levenum's comment on VS, but agree at the same time (weird I know). I wouldn't use VS for native development because it has A LOT of extra features that I think would be useless for native developers. Also, the lighter eVC++ has pretty much everything you need to write native apps.
I had this book called "Programming Windows CE 3.0" or something along those lines a few years ago. I got it for like $3 on Amazon. If you can find an updated version of that (or even the old version would be useful) then you should buy it. It will show you all you need to know to get started. You can learn the new api's from browsing msdn.
If you're only a little rusty with C/C++ I would suggest jumping right in to the Sdk samples and seeing how they do things.
Click to expand...
Click to collapse
could you provide some links for msdn. also i know how to program in c but how do i compile a program for windows ce could you recommend a free one. thanks
The only way to code for Windows Mobile for free is to use embedded Visual C++. You'll have to google it to find a link.
Once you have that downloaded, check out:
http://msdn2.microsoft.com/en-us/library/bb158662.aspx
The new solution files most probably won't open in eVC++ but you can create new projects and add the source files yourself.
You'll want to look at the samples in the Win32 folder.
robp said:
The only way to code for Windows Mobile for free is to use embedded Visual C++.
Click to expand...
Click to collapse
That's not entirely true - there's still ceGCC (it works on linux or windows using cygwin) - however this one lacks resource (window, forms, etc) editor (but if you have resources already created it will compile/link properly). But it works great with apps where you want to handle all the graphics and user interaction by yourself (like games, or programs with 100% custom UI), for example using SDL, pocketHAL, etc.
Also, wxWidgets seems to have support for windowsCE, and might be made to work with ceGCC, but i haven't tested it yet.
Sorry, I actually meant to put "(I think)" after that sentence lol.
Actually I think you should be able to use any C++ compiler as long as you have the necessary libraries, and I think all the libs you need are in the sdk download. But the easiest route for beginners in native coding is probably eVC++
Well, now i can agree with you
That is, unless you want to create games - in that case ceGCC+XFlib might be a good way to go for someone with general programming knowledge, but not familiar with winCE-specific coding. Some games coded with it (and their sources) can be found on XFlib homepage: www.xflib.net.
thanks for the info
Ok, as I wouldn't mind at a later time going into MFC, and building dll's for mobile. How much "harder" would it be for me to learn VS2005 native for ce instead of using evc++ ?
Just trying to weight the cons and the pros. BTW where can I get eVC ?
Thank you.
Two more free options: PellesC and Lazarus + WinCE add-on
I don't think it would much harder. Once you get the hang of it you'll find that it makes life much easier. If you buy a boxed retail version it comes with a nice book that will take you from n00b to master in a few hours (not really but it's still a great reference).
I think the hardest part of upgrading to newer versions of VS is learning the new project file setup. Atleast that's what it looks like from watching other students at my school go from VS6.0 to VS2k5 and 2k8.
Also, I should note that I prefer VS2008 hands-down, but I don't disagree with other people who say eVC++ is faster. While I haven't done any real native development since eVC++ 4 was new, I still dabble a bit (especially since getting active on this forum) and VS2005 works great to me.
So, my advice would be to use the newest tools available to you, unless money is an issue. But don't be worried about upgrading. Your life will only get easier once you do.
robp said:
Also, I should note that I prefer VS2008 hands-down, but I don't disagree with other people who say eVC++ is faster. While I haven't done any real native development since eVC++ 4 was new, I still dabble a bit (especially since getting active on this forum) and VS2005 works great to me.
So, my advice would be to use the newest tools available to you, unless money is an issue. But don't be worried about upgrading. Your life will only get easier once you do.
Click to expand...
Click to collapse
Well I just got eVC and will give it a try too. But I am pretty much used to vs2005. I do not think I can't afford the vs2008 right now. How much difference is there between 2005 and 2008 when it comes to programming for WM?
I'm looking to create some commercial applications for WM. For the last 10 years I'v been doing .com apps, now I figured I would do some for the mobile platform. We have all the graphics/design/marketing guys for .com, so it should work out just fine for WM.
One thing we noticed when working with exec type people is their frustration, I see exactly how we can help them resolve their frustration with WM, Symb, and java type phones...
Thanks
marek101 said:
Well I just got eVC and will give it a try too. But I am pretty much used to vs2005. I do not think I can't afford the vs2008 right now. How much difference is there between 2005 and 2008 when it comes to programming for WM?
I'm looking to create some commercial applications for WM. For the last 10 years I'v been doing .com apps, now I figured I would do some for the mobile platform. We have all the graphics/design/marketing guys for .com, so it should work out just fine for WM.
One thing we noticed when working with exec type people is their frustration, I see exactly how we can help them resolve their frustration with WM, Symb, and java type phones...
Thanks
Click to expand...
Click to collapse
Honestly I wouldn't rush to upgrade. VS2008 is better, but doesn't add much to the WM development arena.
And if you already have VS2005 and are used to it, I would stick with that and forget about eVC++. You should give the compact framework a try. I promise you'll love it
compact framework, that's a part of the .NET isn't it?.
For the time being, for learning purposes, I think I will stick with the native for now. Once I get a grip, I will explore .net. The thing is I really don't like bulky apps for WM. Most of the apps I came across that required the .net framework were slow, any apps that use the .net with a today plug in seem to really slow down my phone.
BTW is HTC Home plug in written with the .net?
Thanks
marek, it seems to me that you are under the impression that you need VS 2005 to use MFC.
eVC fully supports MFC as well as creating DLLs and MFC DLLs.
It admit the reason I don't like VS is because I only write in native and don't like .NET languages a lot.
Since you want to create commercial apps you should note that any app created with WM 5 SKD will not be backwards compatible with WM 2003 which reduces your clients range.
You should compile with WM 2003 SDK which is forward compatible.
Our primary target audience would be WM6. We will make every effort to make WM5 compatible apps. Yes it does reduces significantly the client base, but also there are many positives...
We are still looking for more programmers for the simple concepts we have developed. I believe this will work out just fine. Having WM5 support is a "would be nice" but not required. WM5 has a bag of problems, 2003 I don't even want to touch it.
Thanks
I have to admit that I love VS because I love using .net
But VS is also a much more powerful editor in general than eVC is. It's still nice but the experience isn't as smooth as it is in newer versions, which is expected since the newer versions build on the previous ones.

[Q] How to change JAVA applications into Android Applications

So I have an application ready, but its written all in JAVA. I have the avd and sdk and eclipse all configured, but how would I change stuff like mouseListener into "touchListener". If you guys dont know what im talking about PM me xD?
siddysidsid said:
So I have an application ready, but its written all in JAVA. I have the avd and sdk and eclipse all configured, but how would I change stuff like mouseListener into "touchListener". If you guys dont know what im talking about PM me xD?
Click to expand...
Click to collapse
I dont have the answer you want, but you could always use the android java app. You can find it on google, it works with some java apps, cant guarantee it will support yours.
Unfortunately I do not think it is possible to turn a Java-based applications into Android without rewriting it. Even though the programming language is the same, the UI components of Android are different that standard Java.
It for sure is not possible to port it to Android without rewriting parts of it.
All UI stuff definitely needs to be adapted and/or rewritten. Also dependent on your application you have might have to optimize parts of it to work well with Android due to lower hardware specifications and so on.
Ahh well thats unfortunate. I was hoping for some kind of program that woudl do this for me.
Duplicate, thread closed.
http://forum.xda-developers.com/showthread.php?t=897686

[Q] Can HD2 run Android Apps(on WM 6.5)

Hello Friends,
I have a question for all of the mobile developers. You might think I'm Joking. But its Serious. Is there any way to run android apps(2.1-2.3) in HTC HD2(Leo) which is running Windows Mobile? Many People Say 'NO'. But emulation of any OS is possible. We all thought that we can run PS2 games only on Sony Playstation 2 but we were proved wrong by PCSX2 by launching first PS2 Emulator. So I want to know is there any emulator by which I can run android apps on my HTC HD2? Its difficult but I think XDA Developers can make this type of emulators. It will also help thousands of people. I am an IT Professional and a software developer(Windows) but i don't know about developing apps for mobile. Otherwise would have made/wrote android apps in WM language/scripts. Some News also came that there are certain Converters which can convert Android Apps into J2ME or WM apps. I need a solution to this problem.
Regards,
Arun
Themegastar1 CEO
I believe there was originally an Android emulator running on WM, but it was slooooooooow!!! There's a whole slew of reasons as to why an Android emulator won't run well on WM, memory being the obvious main one. That's why Android ports were developed to run off the SD card, first dumping Windows from the memory and then running Linux.
Depending on your development experience, you may want to look into programming for Android anyway, if that's where your interest lies. If you've done anything like C# (or other .Net based language like VB.Net) then it's not that big a leap. If you've already done Java development then it's really not a problem - you just need to learn the Android SDK.
If you are intersted, have a look at the following tutorial...
http://www.vogella.de/articles/Android/article.html
It's a great starting point for Android development. It walks you through setting up the dev environment and then a few simple apps to get you going. Any OO experience you have will definitely help. (It may actually prove difficult without it - I can't say for sure.)
Hope this helps
themegastar1 said:
Hello Friends,
I have a question for all of the mobile developers. You might think I'm Joking. But its Serious. Is there any way to run android apps(2.1-2.3) in HTC HD2(Leo) which is running Windows Mobile? Many People Say 'NO'. But emulation of any OS is possible. We all thought that we can run PS2 games only on Sony Playstation 2 but we were proved wrong by PCSX2 by launching first PS2 Emulator. So I want to know is there any emulator by which I can run android apps on my HTC HD2? Its difficult but I think XDA Developers can make this type of emulators. It will also help thousands of people. I am an IT Professional and a software developer(Windows) but i don't know about developing apps for mobile. Otherwise would have made/wrote android apps in WM language/scripts. Some News also came that there are certain Converters which can convert Android Apps into J2ME or WM apps. I need a solution to this problem.
Regards,
Arun
Themegastar1 CEO
Click to expand...
Click to collapse
I just did a search on your question. And from all the sites i've seen they all come up with the same answer: "no"
The two systems are too far apart from each other to be able to 'port' or emulate it apparently.
At least, this is what i found. Maybe some others might have more luck.
Problem still Not Resolved.
I read both of Your Comments, but still problem is not resolved. johncmolyneux you have told me that there is an emulator(Slow ones), can u tell me the name of that emulator? And I don't want to install android. I have given thanks to you both, but still My problem is not resolved. I need a way to run android apps on wm 6.5.
themegastar1 said:
I read both of Your Comments, but still problem is not resolved. johncmolyneux you have told me that there is an emulator(Slow ones), can u tell me the name of that emulator? And I don't want to install android. I have given thanks to you both, but still My problem is not resolved. I need a way to run android apps on wm 6.5.
Click to expand...
Click to collapse
It was about 8-9 months ago so no, I'm afraid don't know the name, but it was on xda so you can search the forum for it.
Let me put it clearly though. The emulator was so slow that it was immediately dropped and no-one ever used it. It's basically Windows, running a Linux emulator, running Android. It was terrible and unusable.
Why is it imperative that you run Android apps on WM? If you explain then maybe we can understand more and hopefully offer more constructive help.
Why I want to run Android Apps on WM.
The Reason for this is- I need Google Goggles for my HD2 and some other apps too. But Windows Mobile Technology is Better, Easy to Use and Expensive. And HTC offers HTC Sense along with HD2 which makes it more easy to use and attractive too. These all things are not possible by using Android. But Android has a big App Marketplace. This is the reason why I want to run android apps in WM.
Okay, I'll make it very clear then. You will not get this. The only solutions available are to find a version of google goggles on WM (not likely), or to run Android on your phone.
You can run it from the SD card, but it does mean a restart every time you want to switch from WM to Android and then back again.
Also, there are many Android builds available that include HTC Sense. There's some very nice Desire HD builds out there.
Sorry to give bad news, but you are not going to get what you're asking for.
OK! Necessity leads to invention!
Ya, but still, IF I make something then the problem will be resolved. I'm thinking to make Android Emulator in this Summer(May-June 2011). If I made it, then it will be good for all WM users, so nobody will switch to Android to get all apps. Anyway, johncmolyneux thanks for your efforts. By the way, Which Phone you are using. And with which OS(WM/Android/Bada/Ubuntu/S40/S60/Symbian 3rd Edition or any other) you are using? Necessity leads to invention!
Regards
Arun Wadhwa
Themegastar1 Owner
Please give me THANKS!!!!!
Well good luck with that mate - I think you'll need it
I'm using a Nexus One Gingerbread ROM at the minute. It's fast and stable - everything works just like a native Android device!
You do realize that you can boot into Android from Windows mobile on your hd2. That way you have winmo still on your phone, and when you need to use Android, you can use haret.exe to boot into an Android build running from the SD card. You have to restart the phone to get back into Windows mobile, but that only takes a minute or 2. And it only takes a minute to boot into Android. This way you can run both OS's on your hd2.
Sent from my HTC HD2 using XDA App
themegastar1 said:
Ya, but still, IF I make something then the problem will be resolved. I'm thinking to make Android Emulator in this Summer(May-June 2011). If I made it, then it will be good for all WM users, so nobody will switch to Android to get all apps.
Click to expand...
Click to collapse
Excelent example of high achievment goal.
So what you need?
Remapping all Android API to WM API with necessary additional functionality, so running whole Android emulator will be not necessary. This will save memory and gain some speed.
Similar to already known solutions on Linux platform which can run Windows applications on several platforms like winehq.org.
How much effort will be necessary?
Depends on which applications area that has to be covered.
Depends on knowledges about both operating systems.
Depends on accessibility to source code of the system and the applications which supposed to run with this framework.
Is summer vacations enough?
Future will reveal, but if you really are genius, please turn to good side
So this project will be definitely something which people will pay for, those who has WM favorites programs and are not willing to change the whole system to run some new.
Anyway aplications will be maybe running, but most of them will miss the stability and advantages of the Android operating system.
pedroxxx said:
Excelent example of high achievment goal.
So what you need?
Remapping all Android API to WM API with necessary additional functionality, so running whole Android emulator will be not necessary. This will save memory and gain some speed.
Similar to already known solutions on Linux platform which can run Windows applications on several platforms like winehq.org.
How much effort will be necessary?
Depends on which applications area that has to be covered.
Depends on knowledges about both operating systems.
Depends on accessibility to source code of the system and the applications which supposed to run with this framework.
Is summer vacations enough?
Future will reveal, but if you really are genius, please turn to good side
So this project will be definitely something which people will pay for, those who has WM favorites programs and are not willing to change the whole system to run some new.
Anyway aplications will be maybe running, but most of them will miss the stability and advantages of the Android operating system.
Click to expand...
Click to collapse
I think I got some of the Ideas, I have to Create a platform build on Windows Mobile with the help of WM API, it will require Android SDK too. If I will create an app that has the compatibility of Android, I could name it as Emulator. Means just another platform running on a OS.
i would donate for this...
work hard guys..gudluck!

[IDE] Using IntelliJ IDEA for Android development

When starting with Android development most people start so by using Eclipse, so did I. Unfortunately for me this was a quite frustrating experience no matter if I developed on Windows or Linux. I often had troubles launching projects after some changes and was forced to rebuild the whole workspace (which takes a while esp. if you included a couple library projects). So after a while I decided to switch to IDEA which is a lot more satisfying. I never had any issues with broken projects and everything just builds so much faster.
One big difference (and it seems many people have troubles with it) is IDEA's handling of library projects. Unfortunately I think this is done in a very logical way, as each "project" is handled as a model. Means you create a project ("My app"), add a module for your main app project, and add new modules for each library project you would add. For each modules you can set the dependencies and say on which modules it depends.
In the newest version (12) Jetbrains also added an Android UI designer, which was one of the features not available before.
If you are curious you can download and install IDEA from their website, or when you are using Ubuntu you can simply download it from Software center.
http://www.jetbrains.com/idea/
And here's a nice article given a quick introduction:
http://www.itwriting.com/blog/7083-intellij-idea-the-best-ide-for-programming-android.html
IDEA rocks, +1. It makes my little Arch box work like a real PC at times
i use idea too,just feel good
Sent from my Nexus 4
What about the on-the-fly analysis performed by IDEA during development? Does it detect many bugs?
Have you never used this functionality?
Nobody uses this feature of IDEA?
I've only had a brief play with it so far - updated the Android SDK and loaded 1 project from GitHub, but it compiles like lightning compared to Eclipse. Thanks for letting us know about this - it's much appreciated
So how does it handle multi-module projects? The advantage of Eclipse/Qt Creator is you can keep multiple projects open at once plus the plugin integration with Maven and Git.
I briefly tried out IntelliJ a couple months back and immediately stepped away when it failed multi-module requirement for me.
More speed than molasses Eclipse would be nice, though the Windows version runs tolerably on fast i5 and SSD.
If it supports .webp on the UI designer (unlike Eclipse), then I'll be all over it!
IntelliJ IDEA has no workspace concept like Eclipse, but its project can have multiple modules: http://www.jetbrains.com/idea/documentation/migration_faq.html .
I'm a total noob/beginner when it comes to programming - never really been into it. That said, I've recently been giving it a go using Eclipse - creating my own Android app. I've just installed IDEA and find it far better to use then Eclipse. Really loving it actually.
I never got into Eclipse. The only Eclipse project I tried using was IBM's Lotus version of OpenOffice. The thing was huge, bloated with Eclipse libraries.
Netbeans is my preferred IDE (also good for C++ and others) but it, unfortunately, falls short for Android.
Intellij worked first try. Glad to see a forum for this on XDA!
Really happy this gets some attention, I've switched from Eclipse to IDEA a while ago and I can't go back.
IDEA is just so smart and works so nice!
I think the best part of IntelliJ is that when you are programming you do it in one environment, from IntelliJ I can see Jira stories, commit svn/git and everything else I do while programming, without switching to 5 different applications
I hope more and more people will switch to IntelliJ, thanks for this thread!
Isn't anyone here bothered by the slow compile times compared to Eclipse? I'm working on a relatively large project, and each time anything is modified it seems to rebuild from scratch. Eclipse in comparision is able to launch the app with the new changes almost instantly.
I love IntelliJ when it comes to it's editor and project management, but in the end it takes about 20s to get my changes on the screen. I'm probably saving some time not having to bother with corrupted workspaces and such though.
I have been using it for more than a year now, haven't looked back at eclipse again.
One thing that bugs me about all of these options is that they don't work on Android itself. Not a big deal for me yet, but I see it becoming more important as we start to see Android devices with bigger screens and keyboards.
I know that AIDE is a decent IDE that runs on Android, but it only runs on Android and it doesn't compare with Eclipse or IntelliJ (yet).
I heard that the current version of Eclipse (4.2) enables some degree of GUI independence, and the next version (due in June) enforces that. That would be a good step forward, but still mostly a theoretical one.
If JetBrain were to undertake the rather large task of making IntelliJ work on Android, as well as existing desktop platforms, they would certainly get my $.
I wonder - is the new Gradle based build system compatible with Android itself?
I found the new-ish GAE Endpoints service to be quite interesting in that part of the build process (code generation) happens on the server as a service. This strikes me as very Googly and I wonder whether Google will provide Android build as a service sometime in the near to medium future. That would certainly help move us towards a platform independent future, though I guess AIDE has shown that it is not the build system, but the IDE, that is holding us back from developing on Android.
I've been using IntelliJ since just after I started Android development (2+ years ago). I had tried Eclipse before that, and besides the excellent feature set, always found the editor to be lacking in many ways (still no virtual space). So when starting with Android development I just hated it because I had to do it in Eclipse. No offense to the people who use and love it, I'm sure that it is a great IDE, it just does not suit me at all.
When I discovered IntellJ, I immediately felt comfortable within the IDE. This made me enjoy the coding that much more which, to me, beats out any feature that an IDE can ever have. IntelliJ has some shortcomings, but overall I find it an exceptional IDE for Android development. It can be a tad sluggish in large projects, but not to the point of annoyance. It is also insanely stable, and I have NEVER in 2 years of working with it had a single crash - just brilliant.
Also, having been using it over an extended period, I can safely say that they excellent developers at JetBrains have constantly been improving on the Android support within the IDE. Feature wise, I think that IntellJ is definitely almost on par with Eclipse, and they have done this without any official support from Google (as far as I know). If Google would take notice of IntelliJ and provide support (I'm thinking ADT) that would just make it even better - here's hoping.
I would highly recommend anyone attempting android development to give IntellJ a go - the Community Edition is free. Especially developers coming from Visual Studio
Thanks, tried it, but I prefer Eclipse.
I'm a new programmer (now learning), and it seems better for me now.
DubelBoom said:
Thanks, tried it, but I prefer Eclipse.
I'm a new programmer (now learning), and it seems better for me now.
Click to expand...
Click to collapse
I think this is an important point. Try all the options available, and make a choice based on what you prefer.
I'm just glad that at this point Android has at least two very capable IDEs to provide that choice.
I really cant figure out how to get IDEA to see my install of the android SDK. It looks like their setup tutorial assumes default locations for jdk and android-sdk on windows. How do you setup paths if android-sdk is somewhere else? (using a mac)
Also, second link on the first post seems to be dead right now.
truehybridx said:
I really cant figure out how to get IDEA to see my install of the android SDK. It looks like their setup tutorial assumes default locations for jdk and android-sdk on windows. How do you setup paths if android-sdk is somewhere else? (using a mac)
Also, second link on the first post seems to be dead right now.
Click to expand...
Click to collapse
Check my answer here: http://stackoverflow.com/a/16485929/104891 .
I am on my second attempt at using IDEA for Android dev and I am stuck at the same point as last time, and its the only thing that Eclipse has going for it: I want to create a new Android app, min SDK 8, target SDK 17 (or whatever). This is fairly easy in Eclipse and I can go though the wizard for a new project, choose my settings, even the app icon and end up with the bare outline of my app that has the ICS style (ie an ActionBar & Holo theme)... can I hell do this is IDEA. I know that there is something I am/am not doing that is causing this but I have followed tutorials for adding support libs and even had a go at ActionBarSherlock.
I think this is where a lot of users are scared off of IDEA - I think its interface and usability is better than Eclipse, hell, the GUI editor for the layout XML files is better in IDEA than in Eclipse! (Eclipse freaked out on me several times trying to put static, non moving buttons at the bottom of the screen with a vertical scrollview above them, IDEA, sure, no problem!).
If they could sort the basics out, like getting the wizards included and even if they could allow you to add in various other frameworks (ABS, ViewPager etc) then they would have a winner.
On that matter, anyone got a tutorial on setting up a new project in IDEA the same as Eclipse with Holo theme?
Thanks

Categories

Resources