I'm thinking of changing my handset in the near future and currently I have a Nokia N95. I'm a little undecided on either Android or Windows Mobile. Android looks very promising but the HTC Touch HD2 is looking very good. If I was to go Android, I'm probably looking at the Hero or maybe if I can wait for the X10.
However my main concern is actually getting some apps which will replicate what I can currently do with my aging N95. I suppose if there is no available app then it'll make my choice between Android and WM a whole lot easier.
If it's not too much trouble, if some experienced WM/Android users could give me the names of some apps that I require it'd be much appreciated.
Call recorder - Needs to automatically record calls in the background with no beep if possible. Would be nice for it to be able to manually record clips with hotkeys from main screen.
Network client to access network shares, mainly windows shares but sometimes linux (NFS) (guess this is no problem for WM, but for Android?)
Weather application - I've seen this in action already on the HD2, not sure about Android.
Convertor application - Converts currencies (able to retrieve latest rates) and measurements, volumes, etc.
VNC/Remote desktop client - Again, should be easy for WM, but for Android?
SSH client - Needs to be able to tunnel so I can have access to secure connections when using free wifi. (I think I saw ConnectBot for Android, no idea for WM)
Application that can automatically switch profiles (silent, ring, etc.) based on a set of rules such as time or (even better) by location
Media player application (think this is built into WM - but what codecs can it play?)
Many thanks
kai_ said:
I'm thinking of changing my handset in the near future and currently I have a Nokia N95. I'm a little undecided on either Android or Windows Mobile. Android looks very promising but the HTC Touch HD2 is looking very good. If I was to go Android, I'm probably looking at the Hero or maybe if I can wait for the X10.
However my main concern is actually getting some apps which will replicate what I can currently do with my aging N95. I suppose if there is no available app then it'll make my choice between Android and WM a whole lot easier.
If it's not too much trouble, if some experienced WM/Android users could give me the names of some apps that I require it'd be much appreciated.
Call recorder - Needs to automatically record calls in the background with no beep if possible. Would be nice for it to be able to manually record clips with hotkeys from main screen.
Network client to access network shares, mainly windows shares but sometimes linux (NFS) (guess this is no problem for WM, but for Android?)
Weather application - I've seen this in action already on the HD2, not sure about Android.
Convertor application - Converts currencies (able to retrieve latest rates) and measurements, volumes, etc.
VNC/Remote desktop client - Again, should be easy for WM, but for Android?
SSH client - Needs to be able to tunnel so I can have access to secure connections when using free wifi. (I think I saw ConnectBot for Android, no idea for WM)
Application that can automatically switch profiles (silent, ring, etc.) based on a set of rules such as time or (even better) by location
Media player application (think this is built into WM - but what codecs can it play?)
Many thanks
Click to expand...
Click to collapse
Hi, I've been using android for the past six month (never touched WinMo) so hopefully I can help out
1) Call Recorder - No idea, I really don't think this is possible on Android at the moment
2) Next work shares - There are apps in the market for accessing files, but I'm not sure if they will suit your needs
3) Weather - If you get a Hero, you will have HTC's very nice forecast app, very similar to the one present in TouchFlo on WinMo phones. Which has widgets of several sizes. There are also apps in the market which offer more functionalitybut aren't quite so sexy.
4) Currency conversion - Haven't installed one because I haven't needed it, but I'm sure there will be one in the market.
5) VNC - There are a couple of free VNC apps in the market which are both very good.
6) SSH - No idea, sorry.
7) Profiles - There's an app in the market called "Locale" which I'm fairly sure does everything you asked for
8) Media Player - This is where android falls short. Mp4 or 3gp are the only natively supported codecs, and I've yet to see an app which supports any more.
SSH with COnnectBot
Hi guys, looking for help here.
Well, I'm a Chinese, and in China we're not really using the Internet but a very tightly controled huge LAN. Lots of sites and services are nation-wide blocked by the legendary Great Firewall (GFW). Unfortunately, Twitter and Facebook are two of the millions of blocked sites. So, the fantastic client Peep comes as a useless piece of work.
Previously I've been working on an Android phone, and implemented mobile twitting via a custom API built upon Google App Engine (not GFWed here yet). Twidroid allows login via API, so everything was smooth. But moving back onto WinMo this has become problematic. I heard Pocketwit could do a equivalent job, however, the application itself tends to be buggy and butt-ugly.
I'm trying to locate the app files of Peep inside the OS, and find some way to tweak the communication module, replace the Twitter official site URL into my API. In theory this should work. But what's weird is that I can't find the Peep directory in the Windows folder. Any suggestion on where to find it? Or has anybody already done what I'm trying to achieve? Would you kindly share your knowledge?
A million thanks here.
Eh... no reply so far?
Well, I dug a little bit more into it, finding two Peep-related files, one "HTC_twitter.png" and one "HTC_twitter.qtc". However, neither of them seems to have anything like a URL inside.
Additionally there is a Twitter_pages.xml in the folder ManilaXML. There's nothing related to login server inside either.
Any other thoughts on where I could find a breakthrough...?
https://dev.twitter.com/docs/api-faq
You should have a look into TwitterService.dll and probably also TwitterApp.exe.
Hi guys,
I'm currently using an iPhone as my primary phone and android as a secondary one. I want to shift to windows phone (mango) but there are a few apps on the android not available on winmo which I can't live without. Is there any way to run android apps on the windows mobile the same way(or ANY way) its done on the blackberry play book?
Thanks
I don't think there's any. But there are alternate apps.
Android apps on WP7 would be incredibly difficult, though theoretically it could be done with enough effort.
Most Android apps use Dalvik (a dialect of Java). This is totally incompatible with the Silverlight/C# that WP7 apps use, but there are enough similarities between them that it might be possible to build a tool that either translates the Dalvik instructions to MSIL (the binary that compiling C# produces) at launch, or dynamically interprets it (the latter would be very slow, though).
However, even with purely Dalvik apps, there are other problems. WP7 apps are limited to a very restrictive sandbox, with no access to the vast majority of the filesystem (for example). Android apps, by comparison, have a great deal of access to the device they run on, so even a very simple app may expect to have permissions that wouldn't be available on WP7. Instead, attempts to access restricted parts of the filesystem would have to be "virtually" redirected within the sandbox. This is possible in many cases, but a *lot* of work to code and has all kinds of weird edge cases.
Additionally, Android apps have a very different runtime model from WP7 apps. The biggest change is in how they handle leaving the foreground; WP7 apps are either suspended or dehydrated, while Android apps often just keep running (they can elect to suspend, but aren't required to). WP7 does support background tasks (with strict limitations, at least if you stick to the official APIs), but moving the Android app runtime into those background tasks would be quite difficult.
Finally, there's the issue of hybrid apps (apps that use native code in addition to managed runtimes like Sliverlight or Dalvik). These are much more common on Android than on WP7 (at least, than on WP7 outside this webite). Android runs on a Linux kernel, using POSIX system calls and APIs. WP7 runs on a CE kernel, using win32 system calls and APIs. There's a very loose mapping from one to the other (see the Wine project for running Win32 apps on desktop Linux) but it adds a lot of overhead and would be another layer, at least as tricky as the managed part, to the difficulty of this project.
Short version: nope, sorry.
GoodDayToDie said:
Android apps on WP7 would be incredibly difficult, though theoretically it could be done with enough effort.
Most Android apps use Dalvik (a dialect of Java). This is totally incompatible with the Silverlight/C# that WP7 apps use, but there are enough similarities between them that it might be possible to build a tool that either translates the Dalvik instructions to MSIL (the binary that compiling C# produces) at launch, or dynamically interprets it (the latter would be very slow, though).
However, even with purely Dalvik apps, there are other problems. WP7 apps are limited to a very restrictive sandbox, with no access to the vast majority of the filesystem (for example). Android apps, by comparison, have a great deal of access to the device they run on, so even a very simple app may expect to have permissions that wouldn't be available on WP7. Instead, attempts to access restricted parts of the filesystem would have to be "virtually" redirected within the sandbox. This is possible in many cases, but a *lot* of work to code and has all kinds of weird edge cases.
Additionally, Android apps have a very different runtime model from WP7 apps. The biggest change is in how they handle leaving the foreground; WP7 apps are either suspended or dehydrated, while Android apps often just keep running (they can elect to suspend, but aren't required to). WP7 does support background tasks (with strict limitations, at least if you stick to the official APIs), but moving the Android app runtime into those background tasks would be quite difficult.
Finally, there's the issue of hybrid apps (apps that use native code in addition to managed runtimes like Sliverlight or Dalvik). These are much more common on Android than on WP7 (at least, than on WP7 outside this webite). Android runs on a Linux kernel, using POSIX system calls and APIs. WP7 runs on a CE kernel, using win32 system calls and APIs. There's a very loose mapping from one to the other (see the Wine project for running Win32 apps on desktop Linux) but it adds a lot of overhead and would be another layer, at least as tricky as the managed part, to the difficulty of this project.
Short version: nope, sorry.
Click to expand...
Click to collapse
That was quite disheartening for the OP
But I liked the thorough explanation.
for curiosity, which apps are you looking for?
Thanks a million for the detailed reply. I can give up on this now otherwise would have gone crazy searching. As for the apps I wanted to use Rako which basically controls the lighting in my house and creston media which controls my theatre. These I can't live without.
Additional ones would be anonymous email and sms bomb.( to bug my friends)
as for the lighting you got me..
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
buffalosolja42 said:
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
Click to expand...
Click to collapse
Crestron controls my theater as a whole i.e lights, projector, blu ray etc. I just need to press 1 button and lights dim, screen comes down, blurry starts playing and so on. For the xbox controller its only for the xbox
buffalosolja42 said:
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
Click to expand...
Click to collapse
drupad2drupad said:
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
Click to expand...
Click to collapse
Okay im a noob and i have noooo idea what that is
drupad2drupad said:
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
Click to expand...
Click to collapse
That is just for developers who want to port their app.
jessenic said:
That is just for developers who want to port their app.
Click to expand...
Click to collapse
Exactly! So yes, Android app can come to WP, only if developers are hard working to port it.
However, I haven't done more than making ROMs for WM, Themes for Android, but I am currently porting 2 apps from Android to WP. Honestly, all porting is made so dead easy that a little bit of English and Bing at hand, and you are off to a great start! It's slow process but anyone can port if they want to.
Hey.
I'm currently working on an Audio Scrobbler for Last.fm.
I already ported the parts for scrobbeling and report now listening etc. form the C# Lib to Silverlight for Windows Phone.
So far it works very well.
But now comes the second big part:
receiving data from Zune Player in a Background Agent.
You can't use the MediaPlayer from XNA since you can't add a Reference to the Framework.
Now I'm flat on my back.. I got no idea how to receive the current song and information like duration, already played time, Artist and Track name.
Easiest would be a Work Arround to add a reference to the XNA Framework in an Background Agent.. Since it will not be posted to the official Marketplace it's not important what big M thinks about it.
Maybe one of you can help me out?
Off course the Scrobbler will be for Unlocked phones since only then you can run the Background Agent more often than every 30min.
So there is no problem in using RootTools or Interrop stuff.. but I have no idea of what I can do and since there is no complete documentation I don't find anything in the web.
App will be for free, so I can't give any reward but a Credit
Regards
Hi All,
I'm new to the android and I'm wondering how applications which are also kind of social web based apps works and how do you approach developing something like that.
For instance zedge.net which is wallpapers, ringtones application / website. On the one end you have application on your android but on the other end you have website with your own account synch. with your android etc.
I'm just wondering if there are any supporting libraries / environments allowing one developer think of developing similar solutions like zedge.net. Not necessary exact the same but with similar android application (client) and website (server) architecture ?
Any tips much appreciated.
thanks
Evo