HTC Droid : Eris W/ 2.1 V2 Leak - Memory & Bluetooth Question
Apr 2, 2010
I upgraded from 1.5 to the "new" 2.1 leak.so far it's snappier, but I've noticed a couple anomolies. I'm hoping that someone here can enlighten me.If I do a fresh reboot then use Advanced Task Killer to kill all the apps that run on startup, I can usually get around 104 MB of free memory.But, for whatever reason, it always seems to trickle down to about 30 to 40 on any given day.I have to run ATK again just to get it back up to around 70 MB free.Is there a memory leak? Or is this caused by random apps running in the background eating memory?There are some, like MP3 Store, Market, and Voice Dialer that seem to run even after I kill them with ATK.Next question, and kind of an observation...I have a Kia Forte Koup with built in Bluetooth.The Eris syncs up just fine and I can voice dial. I've noticed that others have said that the Eris wouldn't let you voice-dial with Bluetooth, but mine does.It worked with 1.5, too. My question is whether there's a way to increase the volume further.when I had 1.5 I could easily hear calls over bluetooth, but 2.1 is much quieter. I've got the "Bluetooth In-Call Volume" maxed out, and my volume in my car is almost maxed, but it's still quieter than it used to be.Any ideas?
View 10 Replies
Apr 7, 2010
What are they? Does the version 2 get rid of all the bugs? What bugs still remain if so?
View 7 Replies
View Related
May 18, 2010
What are the differences and is it worth the bother to re-flash to 2.1v3 leak from 2.1v2 leak? (since it appears that none of us leakers are going to get the OTA)
View 8 Replies
View Related
May 22, 2010
How do I go from 2.1 ver 1 to 2.1 v3 leak on eris?? If this is already stated somewhere, I couldnt find it. If you know, or can reply with a link for me,
View 20 Replies
View Related
Mar 1, 2010
I've been rooted and running roms for a while, starting when Pete was just coming out with his first Bugless Beauties. I've been through a bunch of ROMS, and installed them pretty much all the ways you can. Lately I've been on DroidMod 1.0. I had originally installed it without flashing /data. However, I noticed that my memory was getting pretty low, down to about 90 MB according to mini info widget. So I re-flashed, but this time I allowed it to wipe /data. Wow, what a difference. Immediately, I was up to almost 180M of memory! But it's been dropping steadily since then. I'm down to about 145M and that's with not loading very many new programs. I'm very conscientious about deleting cache, etc.
View 8 Replies
View Related
Jul 24, 2010
Definite Memory Leak. Rooted Most bloatware removed also Using ATK memory starts around 280. I have atk set hourly memory leaks to around 170 atk runs brings it back to around 200 within another hour down 100 atk runs brings it back to around 130. No push, Email check hourly. No WiFi, BT and GPS. Moderate use. Could be why some are having battery issues. This problem also exists before Rooting. Hopefully 2.2 will remedy this issue. As for rooting no real performance boost after bloatware removed.
View 8 Replies
View Related
Jun 5, 2010
It says turning on, looks like it's turning on, then it blanks out the checkbox.If I can't turn it on I can't access pairing settings or anything, so there is nothing I can configure that could change this.Anyone else?My phone is still syncing, but that has never affected it before. I am also using P3's 1200LV kernel.
View 9 Replies
View Related
Jun 29, 2010
I recently updated (OTA) my phone to 2.1 and was experiencing the silent call bug so I called and had a replacement sent to me.My question: How can I tell if the replacement is the OTA 2.1 or the leaked 2.1 since it came with it installed already?
View 2 Replies
View Related
May 15, 2010
Posters with this question are all over the place. Thought I'd start a thread to sere if anyone with a leaked version had gotten the official ota. I'm on v.2 and nada.
View 49 Replies
View Related
Jun 2, 2010
I am running v3 and my wife has the OTA. The OTA is very buggy when compared to my v3. Can I flash her phone to v3? The main bug/problem with her OTA is that the phone constantly puts itself into silent mode. I did not believe it (I thought she was hitting the rocker) until i witnessed it happening. BTW a reset does not fix the issue.
View 4 Replies
View Related
Jun 27, 2009
If I create and release multiple AudioTrack objects, the GREF count continually increases which eventually causes an application crash. Even with a forced garbage collection, I end up with the same high GREF count at the end of the loop.In my application, I continuously create AudioTracks from variable lenght buffers.I guess I can try and use a fixed size pool of AudioTracks each with a buffer large enough to fit my longest sound, and try and reuse them.Is there a better/correct way to completely clear resources used by an AudioTrack?
View 5 Replies
View Related
Oct 20, 2009
I use advanced task killer to keep things under control, and handcent in favor of the stock msg app. I notice that I have upwards of 80mb free memory after killing tasks after a reboot. Over the course of the day, with only my ignored apps running, that number shrinks to 48-50mb. Does that indicate a leak somewhere?
View 6 Replies
View Related
Jan 10, 2010
I have been banging away at this one for weeks and I feel like I have exhausted my research capabilities. I am hoping that someone will see my error in the code posted below. The code is completely functional doing everything I need, but there is a major memory leak. When I try to track memory in the DDMS, the VM Heap tells me that my object count is relatively stable and the used memory is also relatively stable (it comes back down to a similar value after each GC after panning).
When I look at the memory pie chart, the free memory loses over 1meg of capacity with each map pan (overlay reload) and the Unknown memory grows. I have not found anything with the allocation tracker. Functional Summary: I load overlays onto a map based on data I get from polling my server. When I pan the map far enough I clear the overlays and load new ones.
MapFrontEnd.java (snippets): //header info private List<Overlay> overlays;
//in onCreate overlays = mapView.getOverlays();
// here I attempt to fully clean up my old Overlays for (Overlay i : overlays) {
if (i instanceof ParcelOverlay) ((ParcelOverlay) i).cleanUp(); }
View 4 Replies
View Related
Dec 4, 2009
In my app, I'm fetching data via HTTP and use the response string to create an ArrayList of objects. So what I'm doing once I get the response is:
String[] fields = response.split("<field>");
and use the field[] values like this:
ArrayList<Movie> movies = new ArrayList<Movie>(); for (int row = 1; row < fields.length; row += 9) { movies.add(new Movie(fields[row], fields[row + 1], ..., fields[row + 8]);
}
View 5 Replies
View Related
Oct 14, 2010
I have an application that uses a Service and some list activities. When the activities are opened, I can see the heap usage increase in DDMS. When the activities are closed, the heap usage decreases slightly. The service is still running in the background at this point. If the activity is started again by re-running the application and then closed, the heap usage increases again then decreases, but never returns to the original level before the activity was first opened. If it repeatedly (10-15 times) open the activity then close the activity, the heap size (both MB and # Objects) balloons!
I'd expect ListActivity's onDestroy to take care of itself when it gets destroyed. What am I missing with this? Am I using ListActivity incorrectly?
If I examine the heap using MAT, I see 10-15 ListView objects. Unfortunately, I've not got much experience with MAT, but I think it means that the instances are still hanging around rather than being garbage collected. Can anyone explain what's going on?
A test app similar to my real code is below. Create a new android application, add this to the manifest:
CODE:................
View 3 Replies
View Related
Apr 30, 2010
I went to Verizon on my lunch break, and got assisted by the actual store supervisor, which was pretty cool. He was a blackberry guy, and didn't seem to know much about Android. Really nice though. He basically had me do basic diagnostics, but when i explained that it must be hardware in my phone not working since my facebook contacts where not syncing correctly. I also complained about dialer lag, and that i shouldn't have to reset my phone every month to keep it fast.
Now, it's clear that I was running the 2.1 leak. When he compared my settings to the ones on the store's Eris, he goes, "Are you running any other hack or anything on the phone?" I pleaded innocent and was like, "No...I just got the OTA from you guys. I don't know why they're different." He didn't once check the phones "About" section, and seemed to care more about fixing the problem. He had a "tech" look at it, but they couldn't figure anything out.
After 45 minutes or so, he says that if I can show him Facebook syncing on the stores Eris with -my- account, he'd swap the phone as defective for a referb. I did, and he did it, no questions asked. Now, back on 1.5...I also now have a pretty brand new phone. (No scratches or anything). I will say...in the time i had the phone with me at work till getting home now....1.5 is horrible. Oh. My. God. Thank GOD I flashed the leak when I did...the phone is horrible. So, project for tonight is Root. Wish me luck.
View 22 Replies
View Related
Mar 24, 2010
I don't know how to get my paid for copy of mybackup pro back on my phone after the install of the 2.1 leak. In the app store I only see the free version and I downloaded this and restored my other apps.
View 4 Replies
View Related
Mar 26, 2010
I have purchased the tapatalk pro version. I updated to 2.1 and I cannot get it in the market and I could not back it up because it is marked as private. Am I out of luck until 2.1 is released officially so it will show up in the market or is there any way to just get the apk? I did pay for it so Im not trying to get a free file, but if anyone has a way to get it to me I can provide my recept that was emailed to me to show im honest.There were a few other programs, none paid, but ones I liked that dont work with 2.1's market. gUnit and tv.com for instance. All in all I think since those are the only bugs have personally seen in this software all is good
View 7 Replies
View Related
May 5, 2010
For me it is the new twitter client. There is an article on gizmodo about it today and it looks nice. But only for 2.1. I might wait another week or two though.
View 17 Replies
View Related
Mar 27, 2010
im a new member here and i was just wondering if some of your guys can do me a huge favor. can anybody tell me if copilot works for the 2.1 leak, please. i don't wanna jump in with the leak if i am not able to re-download it.
View 4 Replies
View Related
Jul 6, 2010
I have the 1.49.0000 V1 Leak of 2.1 on my Eris. I am sorry.I really don't want to look through all the threads to find the answer to this. Can I update to V3 so I can receive OTA updates? I also cannot access certain things such as HTC widgets. How do I do this? Any support would be greatly appreciated!
View 7 Replies
View Related
Jul 8, 2010
I have the leak 2.1v3 and am interested in rooting, so that I can get rid of the apps that HTC and Verizon put on my phone.Can I root? Is it decently easy to root? What are the steps to root?I did update my phone from 1.5 to 2.1v1 to 2.1v2 to 2.1v3, so even though I'm not a real technical guy,I was able to install the leaks.
View 3 Replies
View Related
Apr 15, 2010
I want a recent tally of who has leaked and who is still waiting. Feel free to express your overall satisfaction with your decision.Me: still waiting! I accept my phone the way it is. We have a good relationship.
View 14 Replies
View Related
May 24, 2010
Given that leak V3 and the official 2.1 are feature-wise identical, is there any benefit to going to V3 of the leak vs downgrading to 1.5 and going official 2.1? It seems people here are going either way.
View 4 Replies
View Related
May 3, 2010
When I first boot up the phone and check the memory (after shutting down all the apps I don't want running) I notice my phone has about 220-250 MB free after leaving the phone on for about 2-3 hours, with no activity on my part, that number gets smaller and smaller. I just rebooted my phone again because it was down to 125 MB free with no applications running.
Also, "Android System" is consuming 65% of my battery life. I realize that number is inaccurate after a fresh reboot so I played with the phone for a good 4 hours running apps and such, so that I could get a good test of how much the OS is eating up in comparison to other apps. 65% is a bit much no?
View 6 Replies
View Related
Nov 24, 2009
I am experiencing a memory / resource leak on a T-Mobile G1 device with my application. I installed the "Task Manager" application from Android market and my memory usage is not monotonically increasing. It stays relatively flat over time. Furthermore, none of the other processes are chewing up tons of memory either (really, I can get into this state with just my app running). I am not experiencing this problem on any of the other Android phones (including Eris, Hero, and Droid).
The interesting thing is that if I kill my application, the phone is *still* very slow and sluggish. The only thing that seems to be able to get me out of this situation is a battery pull. If I run my application for about 3 hours, the phone starts to become very sluggish. Even simple operations like hitting the "home" button take many seconds. I'm not sure what to do at this point and am wondering where I can go from here.
View 3 Replies
View Related
Sep 24, 2009
In my app activity A creates activity B, however when the back key is pressed it goes back to activity A. This is a simplified version of my application. I would expect memory to be reclaimed when going back to Activity A. Going to activity B allocates more memory. I am using dumpsys meminfo to get the allocated kbs. How can I easily tell what memory is creeping? I do not keep any references to activity B. I know about the ddms allocation tracker, but wondering if there is a more better tool to figure this out.
View 2 Replies
View Related
Jan 6, 2010
I'm parsing a document with large text field. In my characters section I am using StringBuilder
currentStory.append(ch, start, length);
then in my endElement i'm assigning it to the appropriate field on my object.
if (name.equals(tagDesc)) { inDesc = false;
if (currentItem != null ) { currentItem.setSummaryText(currentStory.toString());
} currentStory.setLength(0);
} setSummary is public void setSummaryText(String text) { Story = text;
}
And I am running out of memory. If I change setSummaryText to something completely weird like this:
public void setSummaryText(String text) { char[] local = text.toString(
) Story = new String(local);
}
I am fine. I just cant figure out where I am holding that reference?
Story is a member var of this object initialized with "";
Note - assigning to local String variable instead of char[] - fails as well.
View 1 Replies
View Related
Aug 10, 2009
I know that's a subject which was discuss a lot of time and I try to find a solution since more than 6 day for the memory leak which appears in my application.
I've read this page: http://www.curious-creature.org/2008/12/18/avoid-memory-leaks-on-andr...
So, I don't use static member fields, I always use recycle() and I don't use inner class.
My application use a gallery and some bitmap. I use finalize to monitor garbage collection in each class of my application: protected void finalize() throws Throwable {try {Log.d("FINALIZE", this.toString());} finally {super.finalize();}
View 2 Replies
View Related
Jun 24, 2010
My phone is low on memory, when I open my app manager it shows my mail app is using 59mb of memory. I have erased all mail and cleared the cache with no change. I am running android 2.1
View 3 Replies
View Related