Memory boosting apps... real or fake - G1 Apps and Games

Everyone knows computers, phones, pda, slows as the memory fills. Now there are ssome apps on the market that say they speed up you phone. So far I count three
- Memory up Professional
- Memory up Personal
- Memory for Lemmings
Has anyone tried any of these? What do you have to say about them? Do they work? Are you to skeptical (scarred) to try them?
I tried memory up Professional but didn't seem to work also its shareware
Memory for lemming seemed more simple but memory number keep jumping around there should be a log/graph for memory usage like windows task manager (I probably should email him that)
Haven't tried mem up personal though,

To an extend they work but overall they have no use. Android OS is built around killing services after some time and keeping the phone running in top performance. Those memory programs might free up a few KB's but not much use on that part, unless you have a program that allows you to kill services and stuff, which might have a practical use. Overall my answer is they are pretty much fake!

Just look at the definition of Lemming...
Lemming
The act of following the crowd into an investment that will inevitably head for disaster.
The version Memory for Lemmings is essentially garbage as well. He only made it to prove a point that the effects of the other pay programs are useless.

I used Memory Up when my G1 was working (doing a warranty, still waiting for the mail). It did not appear to do anything. Some claimed it did, I claim placebo effect for them.
The first thing I checked when running it was whether or not it killed open apps, it did not. Useless in my opinion. Wait for a real task manager.

From what I understand it does the same thing Oxios Memory does for Windows Mobile... it merely compacts RAM by clearing up system memory providing a slight boost but non noticeable to the human eye or feel. Android system by default will keep up to 6 applications running in the background and closes the oldest app. when the 7th application is opened (hold down the home key and try it out yourself). From what I have noticed, (and there is not real way to track virtual/RAM memory in the G1, if you don't turn off your phone but every few days... then the memory programs WILL help (slightly) to avoid the inevitable power off to clear system RAM or cool off the circuit board.

Lol welcome to the land of the stupid. I explain not only WHAT the app MemoryForLemmings does , but also HOW it does it right in the description. Not only that but I also suggest a google search term which tells you ALL ABOUT Garbage collection. But for the Google inept here we go.
Every java program has variables and objects in it. These objectd consume memory - both on the java heap and also indirectly the system. Now Old School coders like myself who used C generally null out the variables when done with them - thus freeing memory off the heap.(I am not going to explain what the heap is ****ing look it up), we are used to C where every spec of memory had to be allocated and deallocated. Java on the other hand doesnt require you to be so fussy, It keeps a running log of variables etc and whether they are being used or not and periodically it will go through and run .... wait for it ... garbage collection. It does this at a set time or at a set memory level of the heap.
But guess what, Sun in their infinite wisdom provide a way to ask the system to run garbage collection early. This is not a forced suggestion merely a hint to the OS, the OS can choose to ignore this. Guess what my app does? Can you guess? Thats right it merely suggests to the OS to finalize items thats may be running but are old and to run garbage collection. Thats it. The whole damn program is maybe 40 lines long and that includes the Dialog code.
There is nothing like a bunch of non coders getting together on a forum to write up some of the least correct assumptions I have ever seen about code.
Android does not close apps on a First in First out basis. You cannot rely on that when coding apps, Androids program management is more sophisticated than that. You cannot "compact RAM" it is not disk. Any clearing of the system memory is a crap shoot, I Included it on the app for ****s and giggles. It may speed up your system as the heap/system memory clear, but again that's a crap shoot.
I only wrote the app at all so the idiot charging 15 bucks for app wouldn't be able to scam people for something the OS would do anyway (Which by the way is ALSO in the description). I didn't even post it to the market to start just the androidcommunity boards, but they encouraged me to list it.
I really suggest you actually USE google (Golly where would you find a google search bar), before you go off half cocked.

Bratag said:
I really suggest you actually USE google (Golly where would you find a google search bar), before you go off half cocked.
Click to expand...
Click to collapse
I don't think half the visitors to xda-dev Dream understood what you wrote above. And that's why people will continue to buy these apps (on this and other platforms). Right now the Android Market is still not as bad as the iPhone App Store, where exploitation and ridiculously pointless apps hit truly saddening new plateaus.
I think i'll go write a "cell phone radiation reducer" app right now and charge twenty bucks for it.

jashsu said:
I don't think half the visitors to xda-dev Dream understood what you wrote above. And that's why people will continue to buy these apps (on this and other platforms). Right now the Android Market is still not as bad as the iPhone App Store, where exploitation and ridiculously pointless apps hit truly saddening new plateaus.
I think i'll go write a "cell phone radiation reducer" app right now and charge twenty bucks for it.
Click to expand...
Click to collapse
Sweet Ill totally buy it
I sometimes feel I am one man trying hold back the tide of stupid armed only with a soggy celery stalk.

Java?
Bratag said:
But guess what, Sun in their infinite wisdom provide a way to ask the system to run garbage collection early. This is not a forced suggestion merely a hint to the OS, the OS can choose to ignore this. Guess what my app does? Can you guess? Thats right it merely suggests to the OS to finalize items thats may be running but are old and to run garbage collection. Thats it. The whole damn program is maybe 40 lines long and that includes the Dialog code.
Click to expand...
Click to collapse
Bratag: All of the apps on my system run in Linux, not Java. So your program wouldn't really do anything for me or the 90% of android users that don't do Java? I'm not sure about the Linux/Java connection you are making. Please elaborate.

The dalvik vm is basically a tweaked java vm. With some very limited exception, almost all the code in the available apks are all java classes.

Bratag said:
There is nothing like a bunch of non coders getting together on a forum to write up some of the least correct assumptions I have ever seen about code.
Click to expand...
Click to collapse
You must be new here.

texasaggie1 said:
Bratag: All of the apps on my system run in Linux, not Java. So your program wouldn't really do anything for me or the 90% of android users that don't do Java? I'm not sure about the Linux/Java connection you are making. Please elaborate.
Click to expand...
Click to collapse
Actually all the apps on your system run In a Java Runtime Environment called Dalvik which is a virtual machine which has been optimized to efficiently run multiple instances efficiently. So everything you run is a java app and that includes the desktop.
Now this all runs on TOP of a linux KERNEL.
EDIT: damn someone beat me to it

Bratag - you rock.

Bratag said:
Actually all the apps on your system run In a Java Runtime Environment called Dalvik which is a virtual machine which has been optimized to efficiently run multiple instances efficiently. So everything you run is a java app and that includes the desktop.
Now this all runs on TOP of a linux KERNEL.
EDIT: damn someone beat me to it
Click to expand...
Click to collapse
The very reason an emulater like Smartgear, Pocketnes or MAME is impossible on Android. A black & white Gamboy emu would kill the 7201a with sound and 30fps.
Java sucks for these type of apps having to emulate the game system and be interpreted through two layers.

rushless said:
The very reason an emulater like Smartgear, Pocketnes or MAME is impossible on Android.
Click to expand...
Click to collapse
Not at all impossible if you use JNI to hook to a compiled c++ or asm library for the main engine. Heck, it's not even "impossible" to do in Java-- merely unfeasible.
Stay on topic.

Apps on Android can't touch anything outside their own sandbox due to the security model (unless the other app gives you a way to access it's data, but even then, you can't touch it's memory). I feel sorry for the poor sod who pays for these apps.

Related

Has anyone used this ram memory free up app

just wondering if anyone has used this ram memory free up app and whether its worth it, could you see a difference
http://www.handango.com/catalog/Pro...=recommendation_device_slider1&ad=rds1_246523
there are 5 reviews on that site and all say that it works....a little to expensive for me tho.
Here is an excerpt: "A mobile device's performance is limited by its resources, especially its memory or RAM. A common problem faced by vast mobile users is the insufficient working memory to support multiple concurrently running applications. The insufficient memory would cause system slowdown, application failures or even system crashes."
Ok,
1. What memory management program doesnt say that.
2. With 1, it doesnt even specify in the description exactly what it will do to 'help' android. [States 'smartphone', maybe older ones or wm...]
3. Something with android that is not normal like normal phones is this: it has its own memory manager in it. They seem not to know that. The phone only allows a certain amount of programs to run so that does not happen, but are purged at times the phone knows its needed.
Personally? I would never buy that. 'Especially' at that price, no way. I think exchange was close to that price people said s.u.c.ked, but thats necessary. This? Not necessary by almost any means and its even more. If your phone is slow purge some of your own information (backup, there are cheap tools to do that) [like sms, mms, data info for big apps, etc.] and it should help.
Answer? Dont buy. They are trying to make a [big] quick buck.
theslam08 said:
Answer? Dont buy. They are trying to make a [big] quick buck.
Click to expand...
Click to collapse
"A sucker is born every minute."

Auto Memory Mangager

Not sure if you all are familiar with this app, I haven't seen anyone speak upon it on XDA yet, so just thought I'd share my experience with it.
http://www.androlib.com/android.application.com-lim-android-automemman-wBjq.aspx
IMO, this app is pretty cool. Very simple and easy to use, although it doesn't come with detailed instructions on how to use, so I felt the need to explain a little bit about it:
Tired of lags to and from Dialer/Contacts/Call Log?
Have you ever pressed the call button to dial a number/contact and nothing happens for 10 to 15 seconds then finally the call goes through and starts to ring?
Ever went back to home screen after fooling around with an app, or web surfing the browser only to find that a widget or two is missing or is not loading/refreshing properly?
Gmail not syncing daily as it usually does?
Market taking forever to load up the downloads page or lagging connection with G-talk to promptly start the download/updates you started?
Well these are the memory/background/content provider situations that need to stay snappy if nothing else does, agree?
Then this app may or may not be the answer to all of your problems.
For me it was. First and foremost, it is a FREE app, yay! (at least to my current knowledge, unless developer has changed it)
*FYI* This app does require root permissions, so if you are not rooted this will be of no use to you.
After installing, when first opening the app, super permissions should pop up, just check the always box and press allow for root access. Close the app, then re-open.
Now, there are 4 options you may choose, DEFAULT< CUSTOM< MILD< AGGRESSIVE
Default settings will be what you see on first use, those are the default Android memory settings for your G1
Custom- self explanatory, you move the bars of each memory category according to how you prefer- *Note* the amount shown is not exact memory, it is a threshold, basically a set amount not to exceed, Your phone will automatically choose how much to use according to how much it needs, but its limitations will be set by the threshold you choose. Go ahead and make your adjustments, then click the custom button, this will save these settings. So the next time you want to re-enter those settings, just hit the custom button, and it will restore.
Mild- Simply a preset application setting
Aggressive- Another preset app setting
You choose what works best for you, I would suggest playing around with different settings until you have achieved a memory usage that gives you the most improvement, *Note* Do note mistake this as a speed app, it only controls memory, so don't expect some super fast change, but if you set it up properly, and memory is being managed to the best case scenario of your usage, speed will increase, believe me.
Start with the presets, see how they work throughout the day, if you notice no difference, or worst than it already was, change it to something else.
Personally, my best experience has been with the Aggressive preset. Its been the most effective for my phone, however; this won't be the case for everyone. Aggressive basically raises the threshold for background data(widgets,home, cache, etc.) And content provider (google apps, settings, G-talk and stuff) And Empty application- this means, IMO, the amount of free memory sitting around available, for soon to come data or apps that you might open later, I.E.- multi-tasking, Call screen, new mms or sms
It also lowers the threshold of the foreground and running apps, so that they don't suck up so much memory the phone lags before it can open other things in memory. Get it? But as I stated, different people will have different preferences.
If you haven't already, try it out! If you don't like it, or don't need it...maybe results won't change things enough for you to have any use for it, you can always uninstall, and it won't harm any memory or data on your phone.
Also, regardless of threshold settings, if you open or use more memory than threshold limits, it will not break or crash you phone causing reboots or anything like that. So don't worry. The app does not prevent you from doing anything on your phone, it simply manages it according to your use.
I hope this comes in handy for someone, as it has been more than useful for me on a daily basis. You can find more information via market or the link above.
Don't take offence to this, but any "speedup" you think you are getting from it is entirely a function of the placebo effect.
There is no advantage to forcing memory to remain "free", and in fact, doing something like this will actually make the phone SLOWER than it would otherwise be.
Android has a VERY well thought out memory management system. It keeps a record of processes running and their priorities. In the event that more memory is required for a higher priority application, it will automatically select some other application to kill off in order to get that.
What this does is it ensures that you ALWAYS have the memory FULLY utilized, which means optimal performance under every circumstance.
An unfortunate trap that you are falling into is the traditional view of memory -- for example on a DESKTOP system, you don't have anything killing off unused processes, which means that every program you open will use up more memory, so the more FREE memory you have, the more new programs you can open before it starts swapping, and therefore you aim to always have a big chunk of free memory because more free memory means more applications can be open.
Android doesn't work like this!!!
What you are doing is forcing a memory utilization threshold on the thing. This has the same effect as simply reducing the total memory available on the device. That means that important applications are *MORE LIKELY TO GET KILLED OFF*.... which has exactly the OPPOSITE effect from what you seem to be after, which is to ensure that these important applications are NOT killed off.
I could be wrong, but I believe the intent of this is to allow the Android internal memory manager to be tweaked so that certain applications/processes have a higher priority and remain in memory and those that you deem as "less important" are removed first.
Here is a thread on the Hero forum about it:
http://forum.xda-developers.com/showthread.php?t=622666
Also, here is another App that does the same thing... only it will allow the settings to persist through a reboot...
http://www.androlib.com/android.application.com-rs-autokiller-wEwp.aspx
With this App, I do not notice an increase in free (meaning useless) memory... I do notice that key processes that I deem important are still running on CM 4.2.14.1... Even after running many of the ~160 apps I have, including games...
Individual results may vary... Nobody runs the same exact configuration and apps on their G1...
L8r
@Ibcoder
That means that important applications are *MORE LIKELY TO GET KILLED OFF*.... which has exactly the OPPOSITE effect from what you seem to be after, which is to ensure that these important applications are NOT killed off.
Click to expand...
Click to collapse
But it doesn't do that, the threshold simply states a measurable amount of reserve...but not a limitation. Theres a difference. Limits and thresholds are not the same, So what you are saying is not how the app works. All apps open in memory remain in memory, of course you still have to use kill switches and task managers to control unwanted memory hogs, but the app basically controls the memory in use, thats all Im saying, so if that memory is being divided properly, responsive times will increase, I know android had its own setting of doing this, hence the word *DEFAULT*...that is what the app is for, if you don't want to let Android control your memory usage, the app gives you the option to customize it
Also, here is another App that does the same thing... only it will allow the settings to persist through a reboot...
http://www.androlib.com/android.application.com-rs-autokiller-wEwp.aspx
Click to expand...
Click to collapse
Cool app! Thanks for the link, never seen this one.
But wouldn't auto kill be the same as all the other task managers and explorer apps? Its made to kill off unwanted apps, processes, and background services to free memory right? Well, I have plenty of those, and they all work quite fine.
The app I am discussing above is not a killer, its only a manager, it just gives the proper amount of memory to the category you specify to be more important memory users, thus for saving wasted memory. It doesn't specifically kill off or make memory, just manages it.
thanx though, I will try that out.
I recently saw this new app in the Market, but was unsure what advantage it will have on performance, if any. I'll pay attention to this thread to see where the discussion leads on it's usefulness (or potential lack thereof).
TeeJay3800 said:
I recently saw this new app in the Market, but was unsure what advantage it will have on performance, if any. I'll pay attention to this thread to see where the discussion leads on it's usefulness (or potential lack thereof).
Click to expand...
Click to collapse
Ok, and I don't blame ya, that's how I test everything on xda, roms,apps, hacks, you name it....but only after I review enough good responses (preferably 3)
But on the contrary, there have been times that something was reviewed poorly, but after my own experience turned out to be great! You'll see that a lot in the android market as well, great apps with two star/3 star ratings all because some asshole didn't know how to use it, LoL
Try it dude, you got nothing to lose...won't break ya phone, but if ya want to play safe nandroid your current stuff first.
Klyentel said:
Cool app! Thanks for the link, never seen this one.
But wouldn't auto kill be the same as all the other task managers and explorer apps? Its made to kill off unwanted apps, processes, and background services to free memory right? Well, I have plenty of those, and they all work quite fine.
The app I am discussing above is not a killer, its only a manager, it just gives the proper amount of memory to the category you specify to be more important memory users, thus for saving wasted memory. It doesn't specifically kill off or make memory, just manages it.
thanx though, I will try that out.
Click to expand...
Click to collapse
As far as I know, they are pretty much the same... The XDA thread I mentioned above has both the Dev of the App you posted and the Dev of the App I posted... They both created one at around the same time... One with sliders and one with fields... The only difference I think is that AutoKiller uses a service to write the settings on a reboot...
Still playing with this to see if it makes any real difference... I know if I set the values too aggressive, then the browser reloads every time I come back to it...
I know if I set the values too aggressive, then the browser reloads every time I come back to it
Click to expand...
Click to collapse
yeah that has happened to me too.
The linux kernel keeps a buffer cache of recently used files in RAM. So whenever an application wants to access something on the flash, instead of going to the flash file system, it can just get it from the file buffer cache in RAM, a significant speed increase.
If the RAM is currently being taken up by unused android apps, then that leaves less room for the buffer cache, so in theory, by killing off unused android apps more quickly, that will allow the linux kernel to allocate more space for the buffer cache and thus speeding up the system.
Am I way off here?
Dave
lbcoder said:
Don't take offence to this, but any "speedup" you think you are getting from it is entirely a function of the placebo effect.
There is no advantage to forcing memory to remain "free", and in fact, doing something like this will actually make the phone SLOWER than it would otherwise be.
Android has a VERY well thought out memory management system. It keeps a record of processes running and their priorities. In the event that more memory is required for a higher priority application, it will automatically select some other application to kill off in order to get that.
What this does is it ensures that you ALWAYS have the memory FULLY utilized, which means optimal performance under every circumstance.
An unfortunate trap that you are falling into is the traditional view of memory -- for example on a DESKTOP system, you don't have anything killing off unused processes, which means that every program you open will use up more memory, so the more FREE memory you have, the more new programs you can open before it starts swapping, and therefore you aim to always have a big chunk of free memory because more free memory means more applications can be open.
Android doesn't work like this!!!
What you are doing is forcing a memory utilization threshold on the thing. This has the same effect as simply reducing the total memory available on the device. That means that important applications are *MORE LIKELY TO GET KILLED OFF*.... which has exactly the OPPOSITE effect from what you seem to be after, which is to ensure that these important applications are NOT killed off.
Click to expand...
Click to collapse
@dwang-agreed, as I stated @lbcoder, what he is saying is that the app holds everything in memory which slows down system, but it does not do that, and he implied that I stated it limited use of apps, which is incorrect, it does not operate as a limiter, or a kill switch, only a manager. Sort of like, organizing processes by priority based upon setting of threshold tolerance. Of course killing off unwanted apps and processes have to be done manually, via kill widgets or file explorers, When I first posted about this app I assumed that concept to be in mind of the reader....sadly I was wrong. I guess everything around here has to be put in perspective as if the reader knows nothing...sort of like an "101 handbook for Dummies" type thing.
What you are suggesting is incorrect, contrary to the product description, and quite frankly, impossible.
And you can't read.
There is no "I" in lbcoder.
Klyentel said:
@Ibcoder
But it doesn't do that, the threshold simply states a measurable amount of reserve...but not a limitation. Theres a difference. Limits and thresholds are not the same, So what you are saying is not how the app works. All apps open in memory remain in memory, of course you still have to use kill switches and task managers to control unwanted memory hogs, but the app basically controls the memory in use, thats all Im saying, so if that memory is being divided properly, responsive times will increase, I know android had its own setting of doing this, hence the word *DEFAULT*...that is what the app is for, if you don't want to let Android control your memory usage, the app gives you the option to customize it
Click to expand...
Click to collapse
lbcoder said:
What you are suggesting is incorrect, contrary to the product description, and quite frankly, impossible.
And you can't read.
There is no "I" in lbcoder.
Click to expand...
Click to collapse
First and foremost buddy, I quite frankly don't give a dam how you spell your name with an "I" or an "L"
Secondly, what I am stating is not incorrect, and is possible, because I have the app, use it everyday, and does exactly what I said it does via OP. Thank you very much. If you disagree, then don't download the app. Simple as that.
or heres a better idea create one of your own. I will be more than happy to try it if you feel you can do better, but don't downsize the quality of this one, straying other users away from trying it, as it may be as useful to them as it is me. Got it?
Now get ya DREAM on...(with android that is )
and leave me alone.

Task switching without reloading? What memory is required?

Am running PA 3.60 which is great. I've now run some additional script that culls out and slims down the ROM and gapps. Again, everything runs great. I probably have a lot more memory free now than before. But I'm not sure what good that is.
Traditionally, we want to free up memory so we can install more apps - a2d and other methods help to keep things clear.
I don't want to do that - I want to be able to run more than one or two apps at the same time. But I don't know which memory types to clear up to do that.
The ROM is in, well, ROM, so making it smaller may not help free up memory if there's fixed 512MB used for it.
I know Android is actually running a lot of processes at once. What I mean is that if I load an app, say Candy Crush, then run another app, say Grindr, I can switch back and forth pretty much ok and each app resumes where it left off without any noticable reloading/refreshing. But if I then run another app, say Scruff, then as soon as I try to switch back to one of the others, it has to reload/refresh/restart. So clearly, there wasn't enough memory available to keep all 3 resident and it swapped some out or simply released it.
Logically, if I have more of a certain type of memory free, this will not happen as often. I know it depends on how much memory and other resources an app requires, but I don't need to get into that level of analysis yet. First and foremost, what sort of memory should I try to make as much of as possible to let me swtich between apps without so much reloading?
douginoz said:
Am running PA 3.60 which is great. I've now run some additional script that culls out and slims down the ROM and gapps. Again, everything runs great. I probably have a lot more memory free now than before. But I'm not sure what good that is.
Traditionally, we want to free up memory so we can install more apps - a2d and other methods help to keep things clear.
I don't want to do that - I want to be able to run more than one or two apps at the same time. But I don't know which memory types to clear up to do that.
The ROM is in, well, ROM, so making it smaller may not help free up memory if there's fixed 512MB used for it.
I know Android is actually running a lot of processes at once. What I mean is that if I load an app, say Candy Crush, then run another app, say Grindr, I can switch back and forth pretty much ok and each app resumes where it left off without any noticable reloading/refreshing. But if I then run another app, say Scruff, then as soon as I try to switch back to one of the others, it has to reload/refresh/restart. So clearly, there wasn't enough memory available to keep all 3 resident and it swapped some out or simply released it.
Logically, if I have more of a certain type of memory free, this will not happen as often. I know it depends on how much memory and other resources an app requires, but I don't need to get into that level of analysis yet. First and foremost, what sort of memory should I try to make as much of as possible to let me swtich between apps without so much reloading?
Click to expand...
Click to collapse
Try enabling zram, I haven't tried it personally but its supposed to allow for more multitasking.
Sent from my Nexus One using xda app-developers app
Moved To Q&A​
You may of considered it dev based, but its a question so belongs in the Q&A section.​
I've tried ZRAM now for a couple of days but makes no difference. I also have the problem on another Android device. I'm convinced its some sort of design limitation of the opsys or something. When I start up Grindr, it takes a long time to load all the images, make connections, etc. Then I start of Gruff, and it does the same. As long as I don't try to go to another app, I can flip between the two of them without them restarting/reloading/reinitialising themselves. That is clearly because their pages didn't get swapped out of memory or flagged for deletion and deleted.
But if I do something else, or even try to use additional functions within either app, its too much and the next time I try to flip to the other app, it has to reload and reestablish connections etc.
Its not just those apps either. The same with a game like Candy Crush. Or many many apps.
So either my devices don't have enough memory of some form to allow many concurrent apps to run without being swapped out, or Android can't handle it and unnecessarily swaps out or deletes a process's memory pages to make room for the next process, >>> even if the device has plenty of memory<<<.
I don't know which type of memory the opsys needs if this is the case. I'd like to know so that i can make sure there's ample available so that this constant restarting doesn't keep happening. It seems stupid to me that Android does this if the device has got "heaps" of available memory (no pun intended). Newer devices will continually have more and more built in memory, so if Android is doing this arbitrarily and not because of space issues then its, well, stupid.
I have to assume its my devices that are the problem. They're both old (Nook Color, Nexus One). But with the NC, I'd assume we can partition some of that 5GB for use as main memory to run lots of processes concurrently, without this annoying swapping/page deletion/forcing re-inits all the time.
I'm also having problems figuring out where in XDA to post this question - its not NC specific, or dev specific, but I need answers from people that know the Android architecture so I can work out if its possible to stop this from happening.

Lumia 520, Windows phone experience?

Hello,
I m researching about windows phone n I haven't used windows phone since 6.5
I m an avid android user n want to get a taste of windows phone.
I usually have following uses apart from call/texting :
*browsing with flash, download files, surf websites.
*EBook reading with PDF , mobi , epub , office
*Whatsapp , Viber and Tango
*Facebook
*Opera Mobile Browser /chrome/ Firefox/dolphin or similar
* Video player with all video support like vlc n MX player pro in android
*Games n few HD games too
Also can you control brightness?
How much is internal memory available to user when you buy the phone . I know you won't get exactly 8gb.
How does 512 ram limits your experience with apps and games?
dont compare WM6.5 with new WP series... is totally different....
flash not supported (and never be because dead... only is problem on pages which not give proper support to html5)
all this (ebooks, docs, pdf) open on phone
whatsapp, viber, skype working, tango not support wp8
facebook work, official or not officiall apps work, also you can use browser
no support for firefox, chrome or opera... only IE or Nokia Express...
only wmv and mp4 video files work, no mkv or subtitle support, no other media players support
games (HD or which you want play) in marketplace work but if you want gamer experience 512 RAM devices not for you.... you must buy device with more RAM....
2 gb ram is taken by OS and dont forget other things... 8 gb not enough for gamers... how i say it: if you want play games take device with 1GB+ RAM and minimum 16 GB of memory, 32 GB is recommended....
nobody can tell you did 512 mb device have problems with games and apps because if game need more than 512 mb ram you cant install it....
Mostly right. A few caveats:
* Flash is not "dead" though you might argue it's heading there. Windows RT still supports it, and an awful lot of the web still tries to use it. It is a problem on the phone. On the other hand, Flash for Android *is* dead, so you don't actually *lose* anything there by switching to WP8.
* You'll need apps for document formats other than Office formats (which are supported natively), but there exist free apps for ebook reading.
* Odd that Tango is missing (it's available for WP7), but it does seem to be that way. Skype integrates well, though. I haven't used the others.
* Lots of Facebook stuff (OS-level integration, some good apps, and yes it works fine in the browser too).
* IE10 is a pretty solid browser, fast and HTML5-capable. It's better than the old default Android browser before Chrome, for sure. Is there a specific reason you need an alternate browser? There are tons of "browser" apps, but (like on iOS), they are all just wrapped around the native browser control rather than actually having their own rendering engine.
* VLC has said that they are bringing the player to WP8! It's still being ported and not available yet, though (no real ETA either). I don't use MKV so I can't speak to the quality of apps for it, but I'd kind of expect them to exist.
* The Lumia 520 screen isn't "HD" (800x480) so there's arguably no point in "HD" games for it, but they do exist. Many are Xbox Live games as well. The point about the RAM issue is valid, though; you will need a 1GB phone for the really "big" games.
* Brightness control works fine, either manual control or automatically based on the light sensor. I don't know how good the actual screen brightness is, though.
* One-point-something gigs of storage (not RAM, despite what dxdy said) are used by the base OS, yeah. The remaining 6GB or so is enough for quite a lot of apps, but you'll want to get a microSD card for music/movies/etc. to avoid wasting the internal storage with those. You can't install apps to the microSD though.
A word of warning: WP8 is more locked down than Android, never mind WinMo. Things like browsing the filesystem or registry are officially impossible, and even with homebrew we can't really do it yet (much of the registry is readable, but not all). So far, there are no public bootloader unlocks (so, no custom ROMs yet) either.
On the 521 the o/s takes up 1.9 gigs. The 52x series phones are great phones to start with. There's a lot of good games that'll run on it too. So don't let that phase you!
Sent from my Nokia 521 using XDA Windows Phone 7 App
Overall I believe the phone is worth the price you pay for it. It is very fluid and I haven't had any problems with it.
ed00. said:
Overall I believe the phone is worth the price you pay for it. It is very fluid and I haven't had any problems with it.
Click to expand...
Click to collapse
yes, you are right... but people want cheap phone and play big games
Thank you everyone for your time and your help. Appreciated!
MY NEEDS IN A PHONE
I usually use my phone when I am in bed. This too is usually for reading, browsing, watching movie (5 inch) etc or playing card games like spades etc. Further, I would need good messaging support, while I do not like to update my tiles every hour or so but only once in a day be good for me. I hope multitasking is enabled as if i am browsing, I can switch my apps to games/messaging if required. Lastly I am not looking to put a lot of money in Windows phone especially when the platform is new and when it gets a bit better, my high end device would be unable to fully utilise apps of that period as Windows only offer 1 gb of ram till date with mostly dual core support. I hope I can get few good free apps and I hope there are good games on windows 8.
I will get an SD card and i hope to move apps to sd card is supported or it is by default ? The option that there is no file manager/ file browser is also a bummer but I guess I will manage.
Can I setup multiple email accounts too ?
Now my choice goes from either getting Nexus 5 or just Lumia 520.
Basically, I have an android tablet and an android phone. The only reason I want to change my android phone is that, mostly I am using my tablet and use my phone only when I do not have access to my tablet due to any reason. Thus, my high end android phone is not fully utilised and even a basic phone will do.
MY EXPERIENCE :
The reason to change to windows phone is because it promises great battery life even on its budget models. Looking at phones from different manufactures, HTC sets that I have used, have always some problem with signals strength draining more battery while Sony has low battery life in general. LG and Motorola promise good battery but I havenot tried them yet. Samsung is most promising out of all with quick updates, better battery life and good support from developers. In a way, I guess every manufacturer has something great to offer but at the same time, it is limited to some issues except Nexus devices.
I have used all android and iphone and although I admire android, I just want to taste how windows 8 platform works out for me. I have used Nokia for a long time too, with trying everything from Symbian to its budget phones. Nokia promises very good battery life but lack of applications is big disadvantage. I said farewell to symbian when the apps were dwindling and I realised that Symbian (s60, Belle, Anna ) is going for an end soon.
Windows phone never really impressed me with lack of features, optimisation and how hard it is to find an application. Moreover, most of the apps are PAID which are not as good as even free android or IOS apps(Iphone has very few apps free though but still alot). However, the reason to try for a new platform is also intriguing.
What I do not like about Symbian s40 is no multitasking and generally limited support from developers and manufacturers with good battery life and small screens.
Windows phone on the other hand, the platform is still too young and it might be a good choice to try for Windows phone in a year or so, when it will have more support and I guess doing much better than now. Maybe more applications are officially supported.
Android at the same time is rocking and doing very well if you have a nexus device. I already have 4 updates since August till today, every time, bringing new features and updates. Plus, a nexus device gives you updates till a very long time. I am not sure this about windows phone.
I know 4 inch is small for watching a movie but the option to run a movie on lower end android device and how much support is given is just amazing. I usually use Opera Classic browser for my phone while Chrome, Dolphin and Opera Classic for my tablet. Every browser has its own advantage as Opera offers you to download files within browser whilst Chrome browser offers sync features to your all history, bookmarks and even access them on your PC just by logging in your gmail account. Dolphin has flash support and although, I can run everything including video websites on my Chrome, the mental peace that I have with Dolphin, that it will run any flash is just too good.
I do not think that I will have time to convert, large media files into mp4 or wmv so I can watch movies on my phone. So that's a real bummer!
Do you mean this VLC player ? Have anyone used it ? how does it perform ?
http://www.windowsphone.com/en-us/s...-for-vlc/2b27eb95-c86f-4989-8c81-3d4efa994654
dxdy said:
dont compare WM6.5 with new WP series... is totally different....
flash not supported (and never be because dead... only is problem on pages which not give proper support to html5)
all this (ebooks, docs, pdf) open on phone
whatsapp, viber, skype working, tango not support wp8
facebook work, official or not officiall apps work, also you can use browser
no support for firefox, chrome or opera... only IE or Nokia Express...
only wmv and mp4 video files work, no mkv or subtitle support, no other media players support
games (HD or which you want play) in marketplace work but if you want gamer experience 512 RAM devices not for you.... you must buy device with more RAM....
2 gb ram is taken by OS and dont forget other things... 8 gb not enough for gamers... how i say it: if you want play games take device with 1GB+ RAM and minimum 16 GB of memory, 32 GB is recommended....
nobody can tell you did 512 mb device have problems with games and apps because if game need more than 512 mb ram you cant install it....
Click to expand...
Click to collapse
Does that mean, I can not open videos on my browser ? In Android , I run all videos on my browser without any problem. I installed flash myself which is supported by Dolphin browser, however, even without it, I can easily run yahoo videos and many other video websites like dailymotion, metacafe etc. Didnot try youtube as I have dedicated application for that.
GoodDayToDie said:
Mostly right. A few caveats:
* Flash is not "dead" though you might argue it's heading there. Windows RT still supports it, and an awful lot of the web still tries to use it. It is a problem on the phone. On the other hand, Flash for Android *is* dead, so you don't actually *lose* anything there by switching to WP8.
* You'll need apps for document formats other than Office formats (which are supported natively), but there exist free apps for ebook reading.
* Odd that Tango is missing (it's available for WP7), but it does seem to be that way. Skype integrates well, though. I haven't used the others.
* Lots of Facebook stuff (OS-level integration, some good apps, and yes it works fine in the browser too).
* IE10 is a pretty solid browser, fast and HTML5-capable. It's better than the old default Android browser before Chrome, for sure. Is there a specific reason you need an alternate browser? There are tons of "browser" apps, but (like on iOS), they are all just wrapped around the native browser control rather than actually having their own rendering engine.
* VLC has said that they are bringing the player to WP8! It's still being ported and not available yet, though (no real ETA either). I don't use MKV so I can't speak to the quality of apps for it, but I'd kind of expect them to exist.
* The Lumia 520 screen isn't "HD" (800x480) so there's arguably no point in "HD" games for it, but they do exist. Many are Xbox Live games as well. The point about the RAM issue is valid, though; you will need a 1GB phone for the really "big" games.
* Brightness control works fine, either manual control or automatically based on the light sensor. I don't know how good the actual screen brightness is, though.
* One-point-something gigs of storage (not RAM, despite what dxdy said) are used by the base OS, yeah. The remaining 6GB or so is enough for quite a lot of apps, but you'll want to get a microSD card for music/movies/etc. to avoid wasting the internal storage with those. You can't install apps to the microSD though.
A word of warning: WP8 is more locked down than Android, never mind WinMo. Things like browsing the filesystem or registry are officially impossible, and even with homebrew we can't really do it yet (much of the registry is readable, but not all). So far, there are no public bootloader unlocks (so, no custom ROMs yet) either.
Click to expand...
Click to collapse
aclegg2011 said:
On the 521 the o/s takes up 1.9 gigs. The 52x series phones are great phones to start with. There's a lot of good games that'll run on it too. So don't let that phase you!
Sent from my Nokia 521 using XDA Windows Phone 7 App
Click to expand...
Click to collapse
ed00. said:
Overall I believe the phone is worth the price you pay for it. It is very fluid and I haven't had any problems with it.
Click to expand...
Click to collapse
Hnk1 said:
Does that mean, I can not open videos on my browser ?
Click to expand...
Click to collapse
no.. most of videos work but on some sites not... all depend did this site have right support to show video in html5
P.S:
and also you cant move apps on WP to SD.... dont except all what you want from Android on WP... WP is great but many people simply disappointment because have too much expectations....
you can setup multiple email accounts...
about battery: all smart phones (no mater which one: android: iPhone or WP) have problems with battery... and dont expect more than day for battery life... with videos, games and heavy duty you be lucky if battery last one day
my thinking is: you want to have cheaper device and want it all on it.... seems (this my opinion) WP not for you.... this is problem for "Android spoiled" users hehehe
dxdy said:
no.. most of videos work but on some sites not... all depend did th. E site have right support to show video in html5
P.S:
and also you cant move apps on WP to SD.... dont except all what you want from Android on WP... WP is great but many people simply disappointment because have too much expectations....
you can setup multiple email accounts...
about battery: all smart phones (no mater which one: android: iPhone or WP) have problems with battery... and dont expect more than day for battery life... with videos, games and heavy duty you be lucky if battery last one day
my thinking is: you want to have cheaper device and want it all on it.... seems (this my opinion) WP not for you.... this is problem for "Android spoiled" users hehehe
Click to expand...
Click to collapse
Thank you so much for your reply.
One last question : how about signal strength? How will you rate on scale of ten.
I m not expecting too much out of a budget phone. I am not ready to spend big money on platform which I might like or might not.
My simple plan is to taste it n before buying one, I just want to see what WP can do for me.
If battery life is bad, then it's a deal breaker for me. On official website, its 9:40 3g time with over 14hrs on 2g.
Video playback is 7 hrs n browsing for 8.
I guess i will just buy one by the end of weekend just to see what it can do actually.
Hnk1 said:
Thank you so much for your reply.
One last question : how about signal strength? How will you rate on scale of ten.
I m not expecting too much out of a budget phone. I am not ready to spend big money on platform which I might like or might not.
My simple plan is to taste it n before buying one, I just want to see what WP can do for me.
If battery life is bad, then it's a deal breaker for me. On official website, its 9:40 3g time with over 14hrs on 2g.
Video playback is 7 hrs n browsing for 8.
I guess i will just buy one by the end of weekend just to see what it can do actually.
Click to expand...
Click to collapse
The signal strength is a 8-9/10 I haven't had any problems with this aspect of the phone. I honestly believe that you will have a pleasant experience with the WP. This is my first time using a windows phone ( before I was a android user) and I have really started to grow to like it alot.
ed00. said:
The signal strength is a 8-9/10 I haven't had any problems with this aspect of the phone. I honestly believe that you will have a pleasant experience with the WP. This is my first time using a windows phone ( before I was a android user) and I have really started to grow to like it alot.
Click to expand...
Click to collapse
I can't say anything about a 520, but I'd have to say it varies per lumia device. I have a 928 which is Verizon's (a CDMA carrier like sprint, but different from everyone else) flagship phone at the moment (that's soon to quickly change) and the signal on my HTC 7 Trophy had great reception, id give it a 9/10 while the 928, I'd give a 7/10. The calls all sound great, but I'm kinda on the edge of their coverage with LTE/4G, let alone 3G. Essentially the trophy I got 3-4 bars of 3G, while on the 928, I get 1-2 bars of LTE that usually bounces between 3G and 1X. The other GSM services are pretty poor across my whole home, while on the Trophy I almost never had any signal unless I stood absolutely still in a given spot (I haven't tested on the 928, I don't have a microSIM.) I had access to #DATA to get a decible reading on the signal strength on the Trophy, but that's not on a 928.
So, I can't vouch for the 520, but it could just be better depending on the band your carrier uses. Everything is bad in my region, because the trees are thick and the cell towers barely peak over them not to mention they are using the 2200MHz? band.
I bought the LUMIA and it is not up to my standards.
SORRY
I AM VERY MUCH DISAPPOINTED.
GOING BACK TO ANDROID
Hnk1 said:
I bought the LUMIA and it is not up to my standards.
SORRY
I AM VERY MUCH DISAPPOINTED.
GOING BACK TO ANDROID
Click to expand...
Click to collapse
why? I LOVE WP! :'(
thals1992 said:
why? I LOVE WP! :'(
Click to expand...
Click to collapse
I will explain in order :
1. Firstly the amount of clicks you have to do in order to turn off wifi or data or go into airplane mode....or generally do anything...... you have to go into settings and there are no tiles apps to directly switch on or off anything. I got a tile app but then again, it just redirects me to settings.
In android, I only have to swipe down and use toggle buttons.
2. Battery life, I thought I was up for a treat as Windows Phone is known for battery but really ?
Overnight on power saver mode with airplane mode turned ON, my phone battery reduced to 27 from 52.
On hundred percent charge and used it less than an hour, 27 after just 24 hours while the phone was on airplane mode ?
Android gave me so much better life on 2.3.6 (GB) while it has gone better and better on JB.
3. The amount of data live tiles take is just stupid. I took around 1.26 Gb in one day alone ? I know I downloaded few apps (around 400 Mb) but that went till 1.26 without anything else, that's a lot of data. I used like half the data even while streaming videos.
4. The amount of taps I can open on my UC browser/IE after which, I get the message, trying to restore memory. . .. . is only 3 to 4 while I could manage even 10 easily on Opera Classic.
5. Applications are not optimised to run on WP as well as it is on Android.
6. Windows Store! Where are all the useful applications ? What about a good movie player, a good ebook reader that can support all formats at once. You even pay to get the worst apps ever. LIMITED! It is so much limited. WP claims it has reached a long number of apps but I can hand pick useful and really good application out of all they ever made. I have to install 5 apps to do half run stuff which one app in android did for me!
7. Where is a good file explorer? Why can't I just manage my files from my phone ?
Why do I have to connect it to computer every time, I need to manage my files or anything ?
8. Bluetooth a song from an android device, I can not find it anywhere at all. Not in Xbox Music or anywhere really. And I couldnot manage my files to know where it went and how will i ever manage to play it ? Restarted so it might just refresh but no, BAD!
9. Many applications are paid in WP which are free in android. Come on, MS should invest in free apps to attract customers.... no
10. Free Music forever from Nokia, well it turns out, the feature is still not available in MOST of the regions. While advertising, they were too EAGER to show they will give you free music for rest of life. TURNS out only few countries are supported.
11. What about a good MUSIC PLAYER???????
12. YOU CAN NOT TURN OFF AUTO ROTATE, REALLY ????
13. Minimum customisation
14. Still needs to catch up with Android and IOS on so many levels.
15. Getting Windows 8 if you need to develop apps.
16. JUST 3 brightness mode supported ??? Why can not I manage in percentage huh ? For me, the least bright is too bright for me at night!!
There is so many more things I do not like about WP
But only good things I noticed in WP are
1. Good sound hardware than most of budget and mid range Android phones.
2. Better Signals strength compared to HTC. While Sony and Samsung do just as equal.
3. Try option is good in WP store but android has usually free versions. What I like is that every apps has try option that's not true for every app in Google Play
The number of clicks needed to change settings is a well-known issue, though the need to change settings is probably a lot less than you think it is. Unlike Android, WP8 is smart enough to turn off stuff like the GPS, and put the Bluetooth and WiFi into extremely low-power modes, when they aren't being used. I see no battery difference whether I leave them on (but inactive) or not.
Assuming you weren't doing something dumb like expecting the battery to last all day while you played games, you have a defective phone. Mine will go over 3 *weeks* if left idle in Battery Saver mode. That's without using Airplane Mode too, just Battery Saver. Battery loss is less than 5% for an entire day in that mode.
No, Live Tiles do not take gigabytes. It's highly unlikely they even take megabytes per day, in most cases. Some will, but not many. A typical tile push is tens of kilobytes, no more.
I have 4 tabs open constantly and hit 6 pretty often; I have literally never seen a message about memory after having the phone for months. Admittedly, my phone has 2x the RAM of yours; assuming you have the 520 like this thread is about, you got one of the lowest-end WP8 devices that exists.
Your optimization claim is absurd; even if you were using the same hardware on both platforms (which I'm pretty sure you weren't), I really doubt you have any real idea how to test how well an app is optimized.
I have several Ebook reader apps, at least one of which supports all the formats I've tried so far (I don't use the others anymore). You aren't looking very hard if you can't find them. As for video, VLC is coming.
I'm not sure what sort of file management you're trying to do on the device, since even using a PC there isn't much you can do, but... yeah. There isn't much you can do. Well, without hacks (which we don't have for the Lumias yet).
It should be possible to save received songs to your library - I know it is with photos - but it doesn't happen automatically.
As for item #10, that's a case of know what you're buying. Not our fault you didn't read the ads more closely. I mean, I sympathize, but I'm also rolling my eyes. "Know what you're buying" is rule number one of being a smart customer. That goes for most of this list, actually.
I have no particular problem with the built-in music player, but there are plenty of alternatives, some of which are linked to right here on XDA...
Orientation lock is coming in the next update. Known complaint, though it's never bothered me.
Your number 14 is meaningless; WP8 has features that both Android and iOS lack, just as both of them have features that both of the other two major platforms lack. That's the way the world works.
The need for Win8 for app development is annoying, yes. I mean, I have Win8 at home, so that's no problem, but it's an annoying restriction. Technically I think you actually can run the compiler on Win7, it's just the other tools (emulator in particular) that need Win8.
Just use auto-brightness; at least on my phone the dimmest level (i.e. in a dark room) which the automatic mode goes to is much dimmer than the manual "dim" mode.
The customization stuff has been missing since WP7 and I don't think that it is going to change. It was nice when it was available on fully unlocked (essentially flashing a custom rom for WP) devices
every people have own thinking..... for me (locked) WP8 much better than (full unlocked) WP7 and 100x better than Android....
@Hnk1
i laugh when read your reason... in most of then you simply dont know how to use WP...
GoodDayToDie said:
The number of clicks needed to change settings is a well-known issue, though the need to change settings is probably a lot less than you think it is. Unlike Android, WP8 is smart enough to turn off stuff like the GPS, and put the Bluetooth and WiFi into extremely low-power modes, when they aren't being used. I see no battery difference whether I leave them on (but inactive) or not.
Assuming you weren't doing something dumb like expecting the battery to last all day while you played games, you have a defective phone. Mine will go over 3 *weeks* if left idle in Battery Saver mode. That's without using Airplane Mode too, just Battery Saver. Battery loss is less than 5% for an entire day in that mode.
No, Live Tiles do not take gigabytes. It's highly unlikely they even take megabytes per day, in most cases. Some will, but not many. A typical tile push is tens of kilobytes, no more.
I have 4 tabs open constantly and hit 6 pretty often; I have literally never seen a message about memory after having the phone for months. Admittedly, my phone has 2x the RAM of yours; assuming you have the 520 like this thread is about, you got one of the lowest-end WP8 devices that exists.
Your optimization claim is absurd; even if you were using the same hardware on both platforms (which I'm pretty sure you weren't), I really doubt you have any real idea how to test how well an app is optimized.
I have several Ebook reader apps, at least one of which supports all the formats I've tried so far (I don't use the others anymore). You aren't looking very hard if you can't find them. As for video, VLC is coming.
I'm not sure what sort of file management you're trying to do on the device, since even using a PC there isn't much you can do, but... yeah. There isn't much you can do. Well, without hacks (which we don't have for the Lumias yet).
It should be possible to save received songs to your library - I know it is with photos - but it doesn't happen automatically.
As for item #10, that's a case of know what you're buying. Not our fault you didn't read the ads more closely. I mean, I sympathize, but I'm also rolling my eyes. "Know what you're buying" is rule number one of being a smart customer. That goes for most of this list, actually.
I have no particular problem with the built-in music player, but there are plenty of alternatives, some of which are linked to right here on XDA...
Orientation lock is coming in the next update. Known complaint, though it's never bothered me.
Your number 14 is meaningless; WP8 has features that both Android and iOS lack, just as both of them have features that both of the other two major platforms lack. That's the way the world works.
The need for Win8 for app development is annoying, yes. I mean, I have Win8 at home, so that's no problem, but it's an annoying restriction. Technically I think you actually can run the compiler on Win7, it's just the other tools (emulator in particular) that need Win8.
Just use auto-brightness; at least on my phone the dimmest level (i.e. in a dark room) which the automatic mode goes to is much dimmer than the manual "dim" mode.
Click to expand...
Click to collapse
thals1992 said:
The customization stuff has been missing since WP7 and I don't think that it is going to change. It was nice when it was available on fully unlocked (essentially flashing a custom rom for WP) devices
Click to expand...
Click to collapse
Well, being honest, it is just a personal choice of using a platform which suits you. I am not going personal with anyone and it’s just my personal opinion that could be different amongst individuals. My only reason to buy a Lumia 520 was to have a FEEL of WP8 before considering a high end device.
I think WP has potential if it makes the right decisions and increases its quality application in the market. I used windows 6.5 on Omnia and it had good browsers and good video support. However, I guess I bought a platform which has not yet given it’s full and it is still in its very early stages. Maybe I am just too much hooked to Android that I am not ready to accept WP8.
I do agree to your few claims that you made but not to everyone. I am comparing Xperia U with same specification as Lumia 520 which I both own. 512 ram and dual core 1 GHz processor with 16 million colours.
I tried loving WP8 with Amber. I just could not. I guess if MS just spent like a million dollars in developing specific applications, it can help in the long way. Another disappointment is that if you have to programme for WP, you need to buy a development account and you need WINDOWS 8 with 64 BIT SYSTEM to start programming. That's a real bummer for small app developers like me who could chip in just a bit to help WP grow a bit faster. THIS was another reason, I just put my phone on sale today. I cannot invest another 1000 dollars on developing application (new 64 bit system with windows 8 and developers account) which I might just make for a hobby or try to optimise WP8 to my taste by making some apps which may benefit thousands other. THUS, only SERIOUS DEVELOPERS WILL CONSIDER making applications and these applications would be mostly paid, regardless of their quality as I saw on WP8 market.
If MS takes incentive and is serious about its growth, a mere million pounds it can spend to make these few specific applications rather than just promoting MS Office and other of its products. MS support is very good in these phones.
Applications like a proper dedicated video player that can support all formats of video with audio codecs. Adding subtitle support would be very much appreciated too. When you develop a platform, you always have to take all devices and not just the high end devices. Like Lumia 1020 supports more codecs than Lumia 520. I do understand that there are limitations due to hardware but it must not be forgotten that there are many others using lower end devices too.
Secondly, a proper ebook reader which can support all sort of books. like epub, mobi, word, pdf, rtf, etc,fb2,xeb etc. And also, ebook reader should support sd card rather than downloading from sky drive. only Mohoo supports sd card and sadly, it doesnot support all types of epub. Thirdly, a bunch of good and interesting games. A wide range of them so everyone from different taste can enjoy them.
There are so many applications that are used by everyone. MS needs to focus on that. Maybe a policy that if you are developing specific applications, you do not need to pay any fee and MS will support your work.
And the list goes on really from File management, Storage management, Data management etc
There is really no good storage management. You can only put pictures, videos, music, documents in your sd card but not applications. Neither applications can use sd card for their cache and data. This also eats a lot of space if you are a regular at whatsapp , viber or skype etc.
At least, there should be option to save game data and application cache and data into your sd card.
For many people, the lesser things to worry about is good while for some, they just want to have more options. WP8 just makes you more comfortable if you just want to stick to basics. Maybe this is the case for many who love WP8.
Also, you need to open different applications in order to run a particular file that is compatible with it. I find it easier to arrange my internal memory/storage card and then just use a file explorer to open every file. In WP8, I have to just open apps and then open a file. Sometimes, I need to look two Ebook readers in a list to see which file is supported by which reader.
App drawer is more quick way to find application in my opinion, thus when I had a long list of applications, it took some time. It could have been easier if I could arrange my list according to my need rather than in a alphabetical order or need to search every time I need to open an app.
Why do I have to press so many backs to close an application huh? There could be close button or a cross ?
In Android, I just press home button and use a task killer widget to kill all background apps with one touch.
I was very much disappointed with NO REAL notification center. I am just used to it.
Also, WP8 has problems running applications in the background. So whatsapp and such applications are not 100 % flawless.
PLUS, NO FILE MANAGEMENT WITHIN THE PHONE. I have to connect it to PC every time I need to transfer data or anything. And then I have to manage every file accordingly. Why my system doesnot do that for me. I just have to put it and my system automatically refreshes itself to do that for me.
I cannot open files until after a few minutes or after few restarts till they are refreshed in the system.
Installing Apps via Sd card is such a pain really. Restart your phone and it won't show.
Then I learnt the trick to dismount memory card and then restart so you can install apps from your sd card. I know you can do that via market too but market won't show every app due to different regions. So that's cool ?
Also, not all apps are supported for all regions. Why?
RESTART YOUR PHONE BY CHANGING YOUR REGION and then you can install that particular application by matching region.
No control over your internal memory and you just cannot delete stuff until it’s full and you then get to use SHRINK STORAGE to get your memory back after a restart. ANOTHER RESTART ? PLUS, it should be a build in feature as it is so BASIC.
BATTERY LIFE increased when I turned off auto sync. Tiles updates once a day. Disabled background Applications. Reduced brightness and such. SO THIS IS GOOD POINT. AGREED WITH YOU COMPLETELY
Well, NO OPTION TO STOP AUTO ROTATING . I love to read in my bed before going to sleep. When I hold it in one side, it just auto rotates. I did install legimi and other apps and I stopped auto rotating but most of apps does not support that. So if I am doing anything else like texting, it will keep on rotating. That makes me giddy already!
NO real good games compared to Android. Just bunch of games on WP that are good.
BROWSER TABS INCREASED with using IE but I was not so happy. It was just kind of sluggish. WP8 only has few browsers to offer which are not good except from UC Browser. I am not a fan of IE. Night mode was interesting to see though.
OREINTATION & VIDEO PLAYER ARENOT HERE SO YOU CAN NOT TALK IN FUTURE. I CAN SAY, to prove my point, Android in future will have better or same battery life to WP8.
KNOWN ISSUE IS STILL an issue to the users. KNOWN OR UNKNOWN, ISSUE IS AN ISSUE.
ABOUT YOUR CLAIM, I RESEARCHED ALOT BEFORE BUYING A LUMIA and saw its all features. I really do not need a free music for life as I hardly listen to music but the way they put it up was a bit deceptive.
I am NOT talking about my region of music for free. but if you go to nokia website, it clearly states that in bold, free music for life. not many are lucky like me and you because they fell into this ad hoax by buying this phone, only to realise their region is not supported.
I can go on and on really, but my point simply is to be constructive and things that I feel WP8 lacks.
I guess if there were a good movie player, a browser either opera or chrome or dolphin, applications to be installed on SD or at least their data/cache etc , with a good ebook reader, a few good games i could enjoy (applications are still very less), a proper file and storage management with option to manage my data I WOULD HAVE BEEN SOLD TO WP8 and WON'T HAVE THOUGHT OF SELLING MY PHONE. I MIGHT HAVE ALSO THOUGH OF DEVELOPING APPS ON WP8.
If MS does that, I might give it another try.
dxdy said:
every people have own thinking..... for me (locked) WP8 much better than (full unlocked) WP7 and 100x better than Android....
@Hnk1
I laugh when read your reason... in most of then you simply don’t know how to use WP...
Click to expand...
Click to collapse
Well, I believe that after reading my detailed account on WP8 you might think again. I strongly feel that people need to learn to respect rather than laughing. What you really are laughing at is your negligence to foresee things clearly but rather simply living in an illusion.
Hnk1 said:
Well, being honest, it is just a personal choice of using a platform which suits you. I am not going personal with anyone and it’s just my personal opinion that could be different amongst individuals. My only reason to buy a Lumia 520 was to have a FEEL of WP8 before considering a high end device.
Another disappointment is that if you have to programme for WP, you need to buy a development account and you need WINDOWS 8 with 64 BIT SYSTEM to start programming. I cannot invest another 1000 dollars on developing application (new 64 bit system with windows 8 and developers account) which I might just make for a hobby or try to optimise WP8 to my taste by making some apps which may benefit thousands other. THUS, only SERIOUS DEVELOPERS WILL CONSIDER making applications and these applications would be mostly paid, regardless of their quality as I saw on WP8 market.
Click to expand...
Click to collapse
They have a few hiccups and that requirement for Win8 is kinda bs on MS's part. There are ways around it. To upgrade to Windows 8 x64 its only ~$100. And that's the same price as it was for XP and Windows 7.
Applications like a proper dedicated video player that can support all formats of video with audio codecs. Adding subtitle support would be very much appreciated too. When you develop a platform, you always have to take all devices and not just the high end devices. Like Lumia 1020 supports more codecs than Lumia 520. I do understand that there are limitations due to hardware but it must not be forgotten that there are many others using lower end devices too.
Click to expand...
Click to collapse
Codecs are the same across all WP8 devices. I'm not sure where you got that one. MS just covers the basics and several other developer's take care of including other codecs, but are unable to hardware accelerate the decoding to relieve the CPU from doing all the decoding work and making your phone hot and when its not plugged in, your phone dead.
Secondly, a proper ebook reader which can support all sort of books. like epub, mobi, word, pdf, rtf, etc,fb2,xeb etc. And also, ebook reader should support sd card rather than downloading from sky drive. only Mohoo supports sd card and sadly, it does not support all types of epub. Thirdly, a bunch of good and interesting games. A wide range of them so everyone from different taste can enjoy them.
Click to expand...
Click to collapse
This implies that including all the different ebook file types makes the app proper. Sounds like a nightmare for developers anyways. I understand them only intending on only including the standard file types.
There are so many applications that are used by everyone. MS needs to focus on that. Maybe a policy that if you are developing specific applications, you do not need to pay any fee and MS will support your work.
Click to expand...
Click to collapse
Some companies are being just stubborn and that's only going to change if the WP market share changes. Companies are not going to make WP apps, just because they can. They are completely basing it on the ~9% total marketshare worldwide and they won't do it, because they won't have a huge profit return.
And the list goes on really from File management, Storage management, Data management etc
There is really no good storage management. You can only put pictures, videos, music, documents in your sd card but not applications. Neither applications can use sd card for their cache and data. This also eats a lot of space if you are a regular at whatsapp , viber or skype etc.
At least, there should be option to save game data and application cache and data into your sd card.
Click to expand...
Click to collapse
Everyone is banking off using your skydrive. MS is banking on that too, but there are a few things that can be moved around into Music+Videos. Besides that MS intended for these thing to be cloud only anyways. Going from WP7 to WP8, that's completely evident. WP7 used Zune and that was the pre-evolution of Xbox Video. WP8 just uses any app that supports MTP or MS's wrapper that enables iTunes support. The worst part is that the application data can't be backed up unless the developer has added in skydrive support to export the settings.
For many people, the lesser things to worry about is good while for some, they just want to have more options. WP8 just makes you more comfortable if you just want to stick to basics. Maybe this is the case for many who love WP8.
Click to expand...
Click to collapse
Yes, this is true, but in the hands of developers, its a mess. Power users' just realize they didn't want prople to be plugging the phone in and out of USB.
Also, you need to open different applications in order to run a particular file that is compatible with it. I find it easier to arrange my internal memory/storage card and then just use a file explorer to open every file. In WP8, I have to just open apps and then open a file. Sometimes, I need to look two Ebook readers in a list to see which file is supported by which reader.
Click to expand...
Click to collapse
That's the developer's fault for not supporting more than one format. Anyways, don't they have websites dedicated to converting ebooks anyways? MS didn't intend on having people use the USB.
App drawer is more quick way to find application in my opinion, thus when I had a long list of applications, it took some time. It could have been easier if I could arrange my list according to my need rather than in a alphabetical order or need to search every time I need to open an app.
Click to expand...
Click to collapse
These apps are supposed to be pinned. That's also why a search function was provided. [note: Samsung did make a app folders for the startmenu, but its only good for samsung.]
Why do I have to press so many backs to close an application huh? There could be close button or a cross? In Android, I just press home button and use a task killer widget to kill all background apps with one touch. I was very much disappointed with NO REAL notification center. I am just used to it.
Click to expand...
Click to collapse
All of these are in GDR3. The notification center is being added into WP8 to ease users into the new platform. If you use WP as intended, all your notifications are inside the respectively pinned live tiles. I usually have to mash the back button to close all the apps running, but most people hit the start button.
Also, WP8 has problems running applications in the background. So whatsapp and such applications are not 100 % flawless.
Click to expand...
Click to collapse
I'm starting to experience that more and more. Some live tiles won't update unless I relaunch the app even though it was running hours ago (almost everything I have is set to update a the lowest interval - 30 minutes.)
PLUS, NO FILE MANAGEMENT WITHIN THE PHONE. I have to connect it to PC every time I need to transfer data or anything. And then I have to manage every file accordingly. Why does my system not do that for me. I just have to put it and my system automatically refreshes itself to do that for me. I cannot open files until after a few minutes or after few restarts till they are refreshed in the system.
Click to expand...
Click to collapse
Again why do you need to be transferring files back and forth? Skydrive is supposed to be taking care of that for you.
Installing Apps via Sd card is such a pain really. Restart your phone and it won't show.
Then I learnt the trick to dismount memory card and then restart so you can install apps from your sd card. I know you can do that via market too but market won't show every app due to different regions. So that's cool?
Also, not all apps are supported for all regions. Why?
RESTART YOUR PHONE BY CHANGING YOUR REGION and then you can install that particular application by matching region.
Click to expand...
Click to collapse
Apps were meant to be installed from your region to your region. Exceptions are minimal. Installing apps to the SD fells like an afterthought. AFAIK, installing from SD still requires the phone to be online. So, I can't really tell you as the 928 (a flagship phone for verizon) doesn't have a microSD slot.
No control over your internal memory and you just cannot delete stuff until it’s full and you then get to use SHRINK STORAGE to get your memory back after a restart. ANOTHER RESTART ? PLUS, it should be a build in feature as it is so BASIC.
Click to expand...
Click to collapse
Its been an issue in the past, but its slowly getting better. Nokia's storage checker lets you remove some temporary files. The other files are pertaining to photos and album covers that are cached that gets removed when you use SHRINK STORAGE that essentially fills the phone up completely and empties it.
Well, NO OPTION TO STOP AUTO ROTATING . I love to read in my bed before going to sleep. When I hold it in one side, it just auto rotates. I did install legimi and other apps and I stopped auto rotating but most of apps does not support that. So if I am doing anything else like texting, it will keep on rotating. That makes me giddy already!
Click to expand...
Click to collapse
This is also another GDR3 fix. I can't say I ever thought to install another app to prevent autorotation. WP7 never received that feature unless you were using a custom rom on a unlocked device.
NO real good games compared to Android. Just bunch of games on WP that are good.
Click to expand...
Click to collapse
Not exactly in my book. This will be different depending to who you talk to. I have Halo:SA, Bejeweled Live and +Live, UNO, Civilization Revolution, COLLAPSE, Earthworm Jim, The Sims FreePlay, and Wordament.
BROWSER TABS INCREASED with using IE but I was not so happy. It was just kind of sluggish. WP8 only has few browsers to offer which are not good except from UC Browser. I am not a fan of IE. Night mode was interesting to see though.
Click to expand...
Click to collapse
Nokia also has a browser too if you are interested.
OREINTATION & VIDEO PLAYER ARENOT HERE SO YOU CAN NOT TALK IN FUTURE. I CAN SAY, to prove my point, Android in future will have better or same battery life to WP8. KNOWN ISSUE IS STILL an issue to the users. KNOWN OR UNKNOWN, ISSUE IS AN ISSUE.
Click to expand...
Click to collapse
Other Music and video players are here, but its up to the developers to make them useful. After all they are only working to pay off they time they put in and the ~$20 it took to buy a developer account.
ABOUT YOUR CLAIM, I RESEARCHED ALOT BEFORE BUYING A LUMIA and saw its all features. I really do not need a free music for life as I hardly listen to music but the way they put it up was a bit deceptive. I am NOT talking about my region of music for free. but if you go to nokia website, it clearly states that in bold, free music for life. not many are lucky like me and you because they fell into this ad hoax by buying this phone, only to realise their region is not supported.
Click to expand...
Click to collapse
I'm not sure they ever ran something about free music forever.
I can go on and on really, but my point simply is to be constructive and things that I feel WP8 lacks.
Click to expand...
Click to collapse
It seems that you are screaming across the forum table, but thats just me. We are here to help you. If you want to help WP8, go rate some of their suggestions over at uservoice.
I guess if there were a good movie player, a browser either opera or chrome or dolphin, applications to be installed on SD or at least their data/cache etc , with a good ebook reader, a few good games i could enjoy (applications are still very less), a proper file and storage management with option to manage my data I WOULD HAVE BEEN SOLD TO WP8 and WON'T HAVE THOUGHT OF SELLING MY PHONE. I MIGHT HAVE ALSO THOUGH OF DEVELOPING APPS ON WP8. If MS does that, I might give it another try.
Click to expand...
Click to collapse
This just is because you have only lived on WP for a very short time.
Well, I believe that after reading my detailed account on WP8 you might think again. I strongly feel that people need to learn to respect rather than laughing. What you really are laughing at is your negligence to foresee things clearly but rather simply living in an illusion.
Click to expand...
Click to collapse
I'm not laughing, I just think this is the view of many people who try to use WP after using Android. I'd also like to note that many of Apple users won't have this issue.
Its just an issue of people not understanding how MS (or MS misunderstanding people for that matter) intended on people using WP and users are looking for other ways to do when the features are just not quite up to par.
Sorry for the wall of text, but I felt obligated to help.
thals1992 said:
They have a few hiccups and that requirement for Win8 is kinda bs on MS's part. There are ways around it. To upgrade to Windows 8 x64 its only ~$100. And that's the same price as it was for XP and Windows 7.
Codecs are the same across all WP8 devices. I'm not sure where you got that one. MS just covers the basics and several other developer's take care of including other codecs, but are unable to hardware accelerate the decoding to relieve the CPU from doing all the decoding work and making your phone hot and when its not plugged in, your phone dead.
This implies that including all the different ebook file types makes the app proper. Sounds like a nightmare for developers anyways. I understand them only intending on only including the standard file types.
Some companies are being just stubborn and that's only going to change if the WP market share changes. Companies are not going to make WP apps, just because they can. They are completely basing it on the ~9% total marketshare worldwide and they won't do it, because they won't have a huge profit return.
Everyone is banking off using your skydrive. MS is banking on that too, but there are a few things that can be moved around into Music+Videos. Besides that MS intended for these thing to be cloud only anyways. Going from WP7 to WP8, that's completely evident. WP7 used Zune and that was the pre-evolution of Xbox Video. WP8 just uses any app that supports MTP or MS's wrapper that enables iTunes support. The worst part is that the application data can't be backed up unless the developer has added in skydrive support to export the settings.
Yes, this is true, but in the hands of developers, its a mess. Power users' just realize they didn't want prople to be plugging the phone in and out of USB.
That's the developer's fault for not supporting more than one format. Anyways, don't they have websites dedicated to converting ebooks anyways? MS didn't intend on having people use the USB.
These apps are supposed to be pinned. That's also why a search function was provided. [note: Samsung did make a app folders for the startmenu, but its only good for samsung.]
All of these are in GDR3. The notification center is being added into WP8 to ease users into the new platform. If you use WP as intended, all your notifications are inside the respectively pinned live tiles. I usually have to mash the back button to close all the apps running, but most people hit the start button.
I'm starting to experience that more and more. Some live tiles won't update unless I relaunch the app even though it was running hours ago (almost everything I have is set to update a the lowest interval - 30 minutes.)
Again why do you need to be transferring files back and forth? Skydrive is supposed to be taking care of that for you.
Apps were meant to be installed from your region to your region. Exceptions are minimal. Installing apps to the SD fells like an afterthought. AFAIK, installing from SD still requires the phone to be online. So, I can't really tell you as the 928 (a flagship phone for verizon) doesn't have a microSD slot.
Its been an issue in the past, but its slowly getting better. Nokia's storage checker lets you remove some temporary files. The other files are pertaining to photos and album covers that are cached that gets removed when you use SHRINK STORAGE that essentially fills the phone up completely and empties it.
This is also another GDR3 fix. I can't say I ever thought to install another app to prevent autorotation. WP7 never received that feature unless you were using a custom rom on a unlocked device.
Not exactly in my book. This will be different depending to who you talk to. I have Halo:SA, Bejeweled Live and +Live, UNO, Civilization Revolution, COLLAPSE, Earthworm Jim, The Sims FreePlay, and Wordament.
Nokia also has a browser too if you are interested.
Other Music and video players are here, but its up to the developers to make them useful. After all they are only working to pay off they time they put in and the ~$20 it took to buy a developer account.
I'm not sure they ever ran something about free music forever.
It seems that you are screaming across the forum table, but thats just me. We are here to help you. If you want to help WP8, go rate some of their suggestions over at uservoice.
This just is because you have only lived on WP for a very short time.
I'm not laughing, I just think this is the view of many people who try to use WP after using Android. I'd also like to note that many of Apple users won't have this issue.
Its just an issue of people not understanding how MS (or MS misunderstanding people for that matter) intended on people using WP and users are looking for other ways to do when the features are just not quite up to par.
Sorry for the wall of text, but I felt obligated to help.
Click to expand...
Click to collapse
Thank you so much for your time and comments. I really appreciate them. The laughing part was not for you at all. My dear apologies!
I do understand your points and everything I wrote was according to my experience. I was hooked to my PC for a long time just trying to do stuff. Yes, MS has decreased developers account to 20dollar for 60 days. In the Uk, it is 35 quids and 60 quids.
Also, if you look at supported formats by 1020 to 520, you will see that 1020 supports MP4/DivX/XviD/H.264/H.263/WMV player ( MP3/WMA/WAV/eAAC+ player) while 520 only supports (MP3/WAV/eAAC+/WMA player) MP4/H.264/H.263/WMV player. So there is a difference in codecs out of the box
Yes you can upgrade with only 100 dollars but I have a 32 bit machine with windows 7 ultimate. My PC can not support a 64 bit system due to limitations of my motherboard. So I will need to update my PC while easier would be to get a new Laptop running wp8 64 bit.
I am not saying developers to support every format in wp8 but even epub is not fully supported. I have to check through different apps to see if the images are also supported so that's a bummer for me.
You are right about the market share and I guess that's another major reason apart from MS greed to get money out of developers rather funding them. Developers will always work where they find profit and Wp8 isnot a very versatile and widely used platform that MS could have thought of implementing such measures.
Games are there, but they are not my type mostly. Some of heavy games do not support 512 ram. Plus, out of those games I played in wp8, I think android and IOS have more detailed games and graphics are much nicer. It's just like game developers made an application quickly as they know they won't find much people using it but at the same time, take an extra mile to make the same game better in IOS and Android.
Yes, there are websites and ways to convert books. But what is easier for you? Just download it and it will be there in your phone where you can immediately use or where you have to download it, then convert it and then put into sd card and restart to get your ebooks. Also, moon + reader pro supports all formats of epub, mobi and pdf. It also supports SD and many other formats. This is not the case with any windows phone appliaction.
I am not a person who will first download files to pc, then sync to your sky drive and then again download into your phone. For me, just download on your phone is easier. Plus, even if i download on my PC, it just takes a minute to copy all the files to my phone rather than syncing them for about 5 to 7 minutes. (I am using 2mb connection )
Yes pinning is a nice way but I do not like to pin 20 apps on my tiles. It be much easier for me to make one tile for games, one for ebook reader and thus arrange every app with a category.
Yes, I know you have to be online to install apps as WP8 checks if it is compatible or not. But for me it's more convinient as I need to install different apps from different regions. Like few apps are only available in US and not the UK. So i downloaded all and installed one batch of UK and then changed the region and installed the other batch using US region.
I hope storage and management gets better soon.
You are right about Nokia browser but I will like to see from major companies like Mozilla, Google Chrome, Opera at least.
About Music, there is a way to make it work. I researched a bit. Again change your region will help after a restart.
I agree that I have not used much of WP8, but it didnot attract me much that I could think about using a WP8 as a primary device. Battery life is better and that is only advantage I can think of WP8.
Cheers once again

I want to see what's consuming my ram.

Hello everyone.
Even after hibernating all the apps, still 2GB of my ram is used. I want to look at all the processes that are using the ram. How can I do that?
Cheers!
Until someone comes up with a better answer...
Settings/Apps. Under each app there are stats for used storage and memory used in the past few hours. Might give you a clue.
xhamadeex said:
Hello everyone.
Even after hibernating all the apps, still 2GB of my ram is used. I want to look at all the processes that are using the ram. How can I do that?
Cheers!
Click to expand...
Click to collapse
Because ANDROID KNOWS that UNUSED RAM is WASTED RAM.
It ***preloads*** all of the things, in order of what it believes is the likelihood of you using those particular things.
This way when you actually DO use one of those things, it is ***already loaded*** (and starts fast).
Stop "hibernating" things. You are breaking Android.
doitright said:
Because ANDROID KNOWS that UNUSED RAM is WASTED RAM.
It ***preloads*** all of the things, in order of what it believes is the likelihood of you using those particular things.
This way when you actually DO use one of those things, it is ***already loaded*** (and starts fast).
Stop "hibernating" things. You are breaking Android.
Click to expand...
Click to collapse
Hmm.. You have a point..
So, is using Greenify a bad Idea?
xhamadeex said:
Hmm.. You have a point..
So, is using Greenify a bad Idea?
Click to expand...
Click to collapse
Bad idea.
yea there's two built-in ways to view running processes. One is directly Settings. Scroll down to where it says Memory. Open and check it out. I know. Google might as well not even wasted their time making that activity since it's next to useless. The other one is located in Developer Options. It's labeled "Running Services" and gives you stats on what apps are running, how long, etc. Yea, not very helpful either since there isn't much you can do besides uninstall some things or do the root and ransack thing. It's intentionally made like that, just like the way android battery stats are completely useless for nailing down offensive background services. Google likes it that way. They make money by tracking your location and serving you up with as many ads as possible. While it's true what dude said about the way Android preloads and makes a lot of stuff ready in RAM, hibernating, and using task killers is basically like working against your system resources, don't listen to people who yell things at you because they've been brainwashed by companies and developers who want their services installed, front-and-center, autostarting, and running 24/7 in your device's memory. Why else you think every website has a banner talkin' bout "oooh ooh install our app" and grant as many permissions as possible while some even go as far as sabotaging their own services via their website so users feel forced to install the app. They don't care about you, your cpu, or your experience as long as it's filled with ads and periodically uploading analytics and usage stats and the best way to do that is to have background and persistent services to silently restart their location polling or pointless notification systems designed solely around getting you to interact with the app. I'm not talking about things like email, messaging, or whatever other app you depend on or feel is important enough to keep close at a tap of finger. My suggestion is to analyze those settings activities I named earlier or a 3rd party one like BBS and make some decisions about what you are willing to delete. Compromises can be made depending on what's important to you and also with root. Half (or more) of the apps in your phone that have boot receivers and other various event listeners up the wazoo have no business knowing your phone is even on until you tap it's little icon. This is opinion of course because others will tell you you're breaking android and a bunch of other nonsense they've been fed by google to address the people, like me, who are tired of seeing google and other apps (usually ones my by behemoth corporations) that run constantly in the background even though I open up and use whatever particular app maybe once a week. If you're rooted, there is a lot you can do to take control of apps that like to stay nudged up as close as possible in the queue and keep open connections. It all depends on you and how you use your device. Don't listen to know-it-alls who yell at you IN ALL CAPS. Either accept the fact that google, facebook, admob (and whoever else app you have that thinks it's the most important) own your phone, or do a little research for yourself because regardless of what homeboy said, it's easy to see that available RAM feels way smoother than ram that has to wait for android to move pokey balls out of the way...just sayin
ElwOOd_CbGp said:
yea there's two built-in ways to view running processes. One is directly Settings. Scroll down to where it says Memory. Open and check it out. I know. Google might as well not even wasted their time making that activity since it's next to useless. The other one is located in Developer Options. It's labeled "Running Services" and gives you stats on what apps are running, how long, etc. Yea, not very helpful either since there isn't much you can do besides uninstall some things or do the root and ransack thing. It's intentionally made like that, just like the way android battery stats are completely useless for nailing down offensive background services. Google likes it that way. They make money by tracking your location and serving you up with as many ads as possible. While it's true what dude said about the way Android preloads and makes a lot of stuff ready in RAM, hibernating, and using task killers is basically like working against your system resources, don't listen to people who yell things at you because they've been brainwashed by companies and developers who want their services installed, autostarting, and running 24/7 in your device. Why else you think every website has a banner talkin' bout "oooh ooh install our app" and grant as many permissions as possible while some even go as far as sabotaging their own services via their website so users feel forced to install the app. They don't care about you, your cpu, or your experience as long as it's filled with ads and periodically uploading analytics and usage stats and the best way to do that is to have background and persistent services to silently restart their location polling or pointless notification systems designed solely around getting you to interact with the app. I'm not talking about things like email, messaging, or whatever other app you depend on or feel is important enough to keep close at a tap of finger. My suggestion is to analyze those settings activities I named earlier or a 3rd party one like BBS and make some decisions about what you are willing to delete. Compromises can be made depending on what's important to you and also with root. Half (or more) of the apps in your phone that have boot receivers and other various event listeners up the wazoo have no business knowing your phone is even on until you tap it's little icon. This is opinion of course because others will tell you you're breaking android and a bunch of other nonsense they've been fed by google to address the people, like me, who are tired of seeing google and other apps (usually ones my by behemoth corporations) that run constantly in the background even though I open up and use whatever particular app maybe once a week. If you're rooted, there is a lot you can do to take control of apps that like to stay nudged up as close as possible in the queue and keep open connections. It all depends on you and how you use your device. Don't listen to know-it-alls who yell at you IN ALL CAPS. Either accept the fact that google, facebook, admob (and whoever else app you have that thinks it's the most important) own your phone, or do a little research for yourself because regardless of what homeboy said, it's easy to see that available RAM feels way smoother than ram that has to wait for android to move pokey balls out of the way...just sayin
Click to expand...
Click to collapse
Holy wall of text Batman!
You've got a couple of points hidden inside that rambling, but dude... If you want anyone to read that, try that little thing called paragraphs.
Didgeridoohan said:
Holy wall of text Batman!
You've got a couple of points hidden inside that rambling, but dude... If you want anyone to read that, try that little thing called paragraphs.
Click to expand...
Click to collapse
Ah...apologies. I may have been a little bit hopped up last night on the leftover holiday spirits but how else to explain what I see as google's all-over-the-place ridiculous approach at making it as god awful experience as possible for people interested in granular control over their devices' /system. I just got done flashing, setting up, and going thru the motions on a new phone so I may have been a little annoyed as well. lolz hope it helps someone.

Categories

Resources