Related
Cyanogen mod 5 and RA 1.7 recovery, 2.2 radio G1.
After booting into Cyanogen 6 or a similar rom, after I enable wifi, and only after wifi is connected the phone will start arbitrarily restarting, no matter what it's doing within a short period after wifi is connected. I believe this may have started happening after I accidentally forgot to uncheck google data collection. Is google issuing a remote restart?
Scrotius said:
Cyanogen mod 5 and RA 1.7 recovery, 2.2 radio G1.
After booting into Cyanogen 6 or a similar rom, after I enable wifi, and only after wifi is connected the phone will start arbitrarily restarting, no matter what it's doing within a short period after wifi is connected. I believe this may have started happening after I accidentally forgot to uncheck google data collection. Is google issuing a remote restart?
Click to expand...
Click to collapse
...Dude..
No.
Scrotius said:
Cyanogen mod 5 and RA 1.7 recovery, 2.2 radio G1.
After booting into Cyanogen 6 or a similar rom, after I enable wifi, and only after wifi is connected the phone will start arbitrarily restarting, no matter what it's doing within a short period after wifi is connected. I believe this may have started happening after I accidentally forgot to uncheck google data collection. Is google issuing a remote restart?
Click to expand...
Click to collapse
I think its all in your setup, How did yo setup your SDCard, Which Rom are you using, are you using the MTD hacks, are you OCing, tons of questions that could help us help you. hahaha lol
After you boot, let it sit. CM6 and such reboot if you go in on the ROM within the first 3-5 minutes after boot. At least until it has gone into sleep after booting.
Probably. Google's a pretty evil company, seems like something they'd do to stop you from making your phone as nice as possible. Try opening your phone with a screwdriver and removing the antenna, that should do the trick.
Come on man... than was happening to me with every froyo rom I tried too. All you need to do is to connect your in fastboot mode to your computer and do a fastboot erase system -w to clean your phone from any file that is not being wiped in recovery and then reflash the rom you want to use. If your don't know how to use fastboot search in the forum. Cheers.
Sent from my HTC Dream using Tapatalk
etu_aty said:
Come on man... than was happening to me with every froyo rom I tried too. All you need to do is to connect your in fastboot mode to your computer and do a fastboot erase system -w to clean your phone from any file that is not being wiped in recovery and then reflash the rom you want to use. If your don't know how to use fastboot search in the forum. Cheers.
Sent from my HTC Dream using Tapatalk
Click to expand...
Click to collapse
Nice a Junior Member owning another Junior Member very nice, thats what I like to see. hahaha JK. But he's right if you didnt wipe your system in fastboot you will always have problems. Froyo for some reason needs that system clean.
Cyanogenmod is supposed to get a random reboot. Everyone I know who has flashed it has reported a random reboot soon after the first boot. Its normal. And this thread is quite paranoid.
This is actually a problem with the CM kernel.
It's a problem I'm trying to fix on my rom. If you switch to the default AOSP kernel, the problem stops, but you lose camera/camcorder.
I've debugged it and I know why the reboots occur when wifi or 3G data is enabled.
The Java GPS code downloads the GPS xtra data via wifi or 3G and it sends that data to the JNI code which calls the inject_xtra_data function in libgps.so and the ARM9 crash occurs soon after resulting in a reboot.
A cheap fix is to remove the call to inject_xtra_data which is what I did with my CM6 ARM9 crash test fix but GPS doesn't work anywhere near as efficiently without the xtra data. My latest cheap fix is to delay the inject_xtra_data call until a sv_send callback has occurred.
I can even cause an ARM9 crash by using Mike Lockwood's GPS Test app. All is required is to start the GPS and then use the option to inject the xtra data a few times in quick succession and inject the time too if it decides it doesn't want to ARM9 crash right away.
Now the RPC code is designed in such a way that it should be able to handle the abuse we are causing with the GPS Test app but it seemingly cannot and here is what happens:
Code:
08-03 18:24:45.070 D/RPC ( 82): begin: clnt_call
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d reading data.
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d sending call (XID 222).
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d received CALL.
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d waiting for reply.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d waking up callback thread.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d dispatching RPC call (XID 3173, xdr 0x32bcd0) for callback client 3100005b:b93145f7.
[B]08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d expecting XDR == NULLcallback client 3100005b:b93145f7!
[/B]08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d cloning XDR for callback client 3100005b:b93145f7.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d marking input buffer as free.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d reading data.
08-03 18:24:45.100 D/RPC ( 82): 3000005b:90380d3d received REPLY (XID 222), grabbing mutex to wake up client.
08-03 18:24:45.100 D/RPC ( 82): 3000005b:90380d3d got mutex, waking up client.
08-03 18:24:45.110 D/RPC ( 82): 3000005b:90380d3d received reply.
08-03 18:24:45.110 D/RPC ( 82): 3000005b:90380d3d decoding reply header.
08-03 18:24:45.120 D/RPC ( 82): 3000005b:90380d3d call success.
08-03 18:24:45.120 D/RPC ( 82): 3000005b:90380d3d marking input buffer as free.
08-03 18:24:45.140 D/RPC ( 82): input_xdr_busy != 0
08-03 18:24:45.140 D/RPC ( 82): end: clnt_call
The line in bold is where things have gone pear shaped.
I've even debugged it as far back as Donut and I can cause Donut to ARM9 crash too so I suspect it's either a problem in the librpc source or the kernel rpc router but there is no way I'm going to spend hours going through that messy code. I'm hoping someone at Google who knows the code well enough will happen upon a fix.
Royalknight6190 said:
Nice a Junior Member owning another Junior Member very nice, thats what I like to see. hahaha JK. But he's right if you didnt wipe your system in fastboot you will always have problems. Froyo for some reason needs that system clean.
Click to expand...
Click to collapse
I wastnt owning him, that's just my personal experience and that was the way I fixed it. There is no need to make things complicated for him, just try to help him find a fix...
Sent from my HTC Dream using Tapatalk
Some peopl really make me weep heavily for the future. Talk about severe paranoia and a lack of being able to read a few pages of a thread.
Oh NOES the evil Googelz Is trying to brakez your phonez.... Only through your at home secured wifi, and not through the cell phones data.
Come on.... Seriously?
akivlin said:
I've debugged it and I know why the reboots occur when wifi or 3G data is enabled.
The Java GPS code downloads the GPS xtra data via wifi or 3G and it sends that data to the JNI code which calls the inject_xtra_data function in libgps.so and the ARM9 crash occurs soon after resulting in a reboot.
A cheap fix is to remove the call to inject_xtra_data which is what I did with my CM6 ARM9 crash test fix but GPS doesn't work anywhere near as efficiently without the xtra data. My latest cheap fix is to delay the inject_xtra_data call until a sv_send callback has occurred.
I can even cause an ARM9 crash by using Mike Lockwood's GPS Test app. All is required is to start the GPS and then use the option to inject the xtra data a few times in quick succession and inject the time too if it decides it doesn't want to ARM9 crash right away.
Now the RPC code is designed in such a way that it should be able to handle the abuse we are causing with the GPS Test app but it seemingly cannot and here is what happens:
Code:
08-03 18:24:45.070 D/RPC ( 82): begin: clnt_call
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d reading data.
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d sending call (XID 222).
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d received CALL.
08-03 18:24:45.070 D/RPC ( 82): 3000005b:90380d3d waiting for reply.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d waking up callback thread.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d dispatching RPC call (XID 3173, xdr 0x32bcd0) for callback client 3100005b:b93145f7.
[B]08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d expecting XDR == NULLcallback client 3100005b:b93145f7!
[/B]08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d cloning XDR for callback client 3100005b:b93145f7.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d marking input buffer as free.
08-03 18:24:45.080 D/RPC ( 82): 3000005b:90380d3d reading data.
08-03 18:24:45.100 D/RPC ( 82): 3000005b:90380d3d received REPLY (XID 222), grabbing mutex to wake up client.
08-03 18:24:45.100 D/RPC ( 82): 3000005b:90380d3d got mutex, waking up client.
08-03 18:24:45.110 D/RPC ( 82): 3000005b:90380d3d received reply.
08-03 18:24:45.110 D/RPC ( 82): 3000005b:90380d3d decoding reply header.
08-03 18:24:45.120 D/RPC ( 82): 3000005b:90380d3d call success.
08-03 18:24:45.120 D/RPC ( 82): 3000005b:90380d3d marking input buffer as free.
08-03 18:24:45.140 D/RPC ( 82): input_xdr_busy != 0
08-03 18:24:45.140 D/RPC ( 82): end: clnt_call
The line in bold is where things have gone pear shaped.
I've even debugged it as far back as Donut and I can cause Donut to ARM9 crash too so I suspect it's either a problem in the librpc source or the kernel rpc router but there is no way I'm going to spend hours going through that messy code. I'm hoping someone at Google who knows the code well enough will happen upon a fix.
Click to expand...
Click to collapse
I have flashed a ARM9 RC2 patch that has fixed this problem, but it does not work with the latest version is there anyway to make a version that will work no matter the version/ can you point me to a version that works with the latest nightly of Cyanogen? Also is he looking into this and will it be fixed soon I hope so because I cant use any Froyo roms without getting reboots. :/
mindstormmaster1 said:
I have flashed a ARM9 RC2 patch that has fixed this problem, but it does not work with the latest version is there anyway to make a version that will work no matter the version/ can you point me to a version that works with the latest nightly of Cyanogen? Also is he looking into this and will it be fixed soon I hope so because I cant use any Froyo roms without getting reboots. :/
Click to expand...
Click to collapse
It is an obscure bug and I would guess that it is unlikely anyone with the programming/debugging skill to solve it is actually looking at solving it. I was working on it but I shelved solving it because I cheaply fixed it by only allowing inject_xtra_data to be called after a sv_send callback. Doing so allows the xtra data to be injected without causing an ARM9 crash.
I made the CM6 crash test fix updates because I know how frustrating the random reboots are but I am relatively new to Android and I only became involved because I am working on a ROM based on AOSP.
Also it's known that CM6 RC2 introduced kernel changes that cause a different type of random reboot. The information about the ARM9 crash is found in last_kmsg but most users don't know to grab a copy and they assume the reboot is the same problem as before which of course causes further confusion.
You could try asking for an update on the CM6 issues tracker:
http://code.google.com/p/cyanogenmod/issues/detail?id=1763
akivlin said:
It is an obscure bug and I would guess that it is unlikely anyone with the programming/debugging skill to solve it is actually looking at solving it. I was working on it but I shelved solving it because I cheaply fixed it by only allowing inject_xtra_data to be called after a sv_send callback. Doing so allows the xtra data to be injected without causing an ARM9 crash.
I made the CM6 crash test fix updates because I know how frustrating the random reboots are but I am relatively new to Android and I only became involved because I am working on a ROM based on AOSP.
Also it's known that CM6 RC2 introduced kernel changes that cause a different type of random reboot. The information about the ARM9 crash is found in last_kmsg but most users don't know to grab a copy and they assume the reboot is the same problem as before which of course causes further confusion.
You could try asking for an update on the CM6 issues tracker:
http://code.google.com/p/cyanogenmod/issues/detail?id=1763
Click to expand...
Click to collapse
yes, the nightly's have recently changed kernel-wise so your fixes don't apply to them. if you would tell me how you did it, i'd love to learn how to work on it.
i still consider myself new to android development and this is one of the areas i know the least about and it's a good chance to learn more
Apologies for not replying sooner. I didn't know anyone had replied.
The CM6 issues tracker has details of the ARM9 crash problem so you could check there to get up to speed on it.
etu_aty said:
Come on man... than was happening to me with every froyo rom I tried too. All you need to do is to connect your in fastboot mode to your computer and do a fastboot erase system -w to clean your phone from any file that is not being wiped in recovery and then reflash the rom you want to use. If your don't know how to use fastboot search in the forum. Cheers.
Sent from my HTC Dream using Tapatalk
Click to expand...
Click to collapse
Please tell step by step method to clean system through fastboot as I am not able to flash a stable FROYO on my G1.. al the time my market and browser not working properly.
as u mentioned wipe thru recovery sometimes not wipe the file properly.
I've tried flashing CM v7.0.0 + DT's A2SD v2.7.5.3B04. Coming from CM v6.1.0, I do a full wipe prior to flashing CM7, Gapps, A2SD. When Nexus attempts to repopulate the SD card/phone from the marketplace every app shows up "Download Unsuccessful." Internet/3G works properly as I can visit webpages. I can properly install .apk's from the SD card. Also during some flash attempts, I've had apps start downloading right away, but after X amount, all remaining apps go "Download Unsuccessful." Downloading/Updating manually from MarketPlace does not work either.
Doing "a2sd check" shows that A2SD is installed properly. While it shows a2sd is flashed properly, I've also tried flashing CM7 only and I also get the same thing, booting with and without a SD card.
Last night after several attempts with CM7, I did a nandroid restore back to CM6.1.1, however afterwards I was getting the "Download Unsuccessful" when trying to update/download new apps. I wiped everything and turned off phone for the night, since I was worn out. Work up the next morning nandroid restored the same exact backup that I used the previous night, and I can download/update apps perfectly fine.
I've tried doing several things I've read like wiping market data/cache from settings > applications and or from titanium backup. Some places say to wipe them from check in services, google apps, and other things, but some of these things do not appear to be installed on this device.
I've been struggling with this issue for 2 weeks now while trying to flash CM7, and it's really frustrating. I'm confident it has nothing to do with my SD Card or phone, but rather the google account itself maybe, maybe even google "blocking" for some sort of abuse and it resets the the next day after x hours? Anyone got any recommendations as to how to remedy this?
Did you wipe system partition also?
That's recommended coming from cm6 to cm7.
Also try to clear market data (can be done via titanium back up)
Yes I've tried wiping the system partition. While I am using AmonRa v2.2.1, I've wiped using a forum users format-signed.zip file that wipes the system partition. While I can't remember who that user is and want to say it's Temasek, I frequently see them in the CM thread. Also I've wiped with Clockwork v3.0.0.5 and I am aware that it has ext issues. I've formatted and repartitioned SD card to be safe. I've tried installing with both AmonRa and Clockwork v2.5.1.4/v3.0.0.5.
Many times I've tried clearing market data through system > applications as well as through titanium backup. This never solved my issue.
I even tried the #51 nightly, and still had the same problem. While CM7.0.1 just hit, I doubt it's much different than #51. I don't believe my problem is with CM or a2sd, but something else that I cannot pin down.
alienmonkey said:
I've tried flashing CM v7.0.0 + DT's A2SD v2.7.5.3B04. Coming from CM v6.1.0, I do a full wipe prior to flashing CM7, Gapps, A2SD. When Nexus attempts to repopulate the SD card/phone from the marketplace every app shows up "Download Unsuccessful." Internet/3G works properly as I can visit webpages. I can properly install .apk's from the SD card. Also during some flash attempts, I've had apps start downloading right away, but after X amount, all remaining apps go "Download Unsuccessful." Downloading/Updating manually from MarketPlace does not work either.
Doing "a2sd check" shows that A2SD is installed properly. While it shows a2sd is flashed properly, I've also tried flashing CM7 only and I also get the same thing, booting with and without a SD card.
Last night after several attempts with CM7, I did a nandroid restore back to CM6.1.1, however afterwards I was getting the "Download Unsuccessful" when trying to update/download new apps. I wiped everything and turned off phone for the night, since I was worn out. Work up the next morning nandroid restored the same exact backup that I used the previous night, and I can download/update apps perfectly fine.
I've tried doing several things I've read like wiping market data/cache from settings > applications and or from titanium backup. Some places say to wipe them from check in services, google apps, and other things, but some of these things do not appear to be installed on this device.
I've been struggling with this issue for 2 weeks now while trying to flash CM7, and it's really frustrating. I'm confident it has nothing to do with my SD Card or phone, but rather the google account itself maybe, maybe even google "blocking" for some sort of abuse and it resets the the next day after x hours? Anyone got any recommendations as to how to remedy this?
Click to expand...
Click to collapse
I am having this exact same issue... Upgraded from CM6.1 to CM7.0.2 (HTC Hero CDMA) Market Version I had on CM6 was 2.2.6 ... when installed CM7 it came with market versinn 2.3.3 ... and nothing downloaded successfully before I done anything after the first boot... did full wipes of everything during the install, also using FireRat's Partition Mod...
so then I started trying fixes... cleared data and cache of market and download manager... rebooted into recovery and cleared dalvik and cache and rebooted.. nothing!
so then i tried reinstalling the market...nothing
so then I wiped everything and reflashed again, nothing
so then I upgraded to a modified themed market version 2.3.6 obtained from XDA
still nothing...
Apps stored on sdcard install fine... and using APKtor app...apps install from there
but then dont download or install from the regular market, appbrain, or applanet
even tried unmounting sdcard
im running out of solutions for a fix to this issue...
I tried flashing Market Version 2.2.6 - 2.3.2 - 2.3.3 - 2.3.6 - themed 2.3.6 ...tried removing updates, tried reflashing gapps 30 times.. cleared market and download manager cache/data over 10 times
cleared phones dalvik-cache and cache 3-4 times ...went into root explorer and changed the permission for vending.apk
none of this has changed the unsuccessful downloads so far
even did a full wipe and reflashed CM7 and gapps with nothing else... and market didnt work then... beginning to wonder if this isnt something to do with the ROM instead of the .apk and its data
adb logcat
Okay I decided to do a ADB LOGCAT while trying to download an application through APPPLANET instead of the GOOGLE MARKET... still getting a download unsuccessful... so I'm coming to the conclusion that this is not a market issue, but some sort of JAVA issue maybe...
here is a CUT from the LOGCAT... I can provide a full LOG if necessary...
Code:
D/A2DP ( 134): a2dp_stop
D/A2DP ( 134): bluetooth_stop
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:Stopped from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/BluetoothHidService.cpp( 172): hid_event_filter...
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/A2DP ( 134): Received BT_RESPONSE - BT_STOP_STREAM
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
V/BluetoothEventRedirector(11723): Received android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/BluetoothA2dpService( 172): A2DP state : device: 00:1C:D8:3E:51:F4 State:4->2
D/CachedBluetoothDevice(11723): onProfileStateChanged: profile A2DP newProfileState 2
D/BABTService( 288): Received action: android.bluetooth.a2dp.action.SINK_STATE_CHANGED
W/System.err(11705): org.json.JSONException: End of input at character 0 of
W/System.err(11705): at org.json.JSONTokener.syntaxError(JSONTokener.java:446)
W/System.err(11705): at org.json.JSONTokener.nextValue(JSONTokener.java:93)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:154)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:171)
W/System.err(11705): at com.android.BlackMarketApp.DownloadTask$DownloadFilesTask.run(DownloadTask.java:244)
V/NotificationService( 172): Active profile: Default
I/PROFILE ( 172): Group: Gmail containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Phone containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Calendar containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Email containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: SMS containing : com.android.BlackMarketApp : false
V/ProfileManager( 172): No active group, returning default: Other
V/NotificationService( 172): Pkg: com.android.BlackMarketApp group: Other
D/dalvikvm( 288): GC_EXPLICIT freed 58K, 53% free 2630K/5575K, external 0K/0K, paused 67ms
D/dalvikvm( 676): GC_CONCURRENT freed 385K, 50% free 3209K/6407K, external 36K/548K, paused 7ms+7ms
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
V/JuiceDefender.Service( 3987): Screen brightness set to 39%, dim 0% - sensor: 1864
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
I/StagefrightPlayer( 134): setDataSource('/system/media/audio/ui/Effect_Tick.ogg')
D/A2DP ( 134): bluetooth_start
D/AudioFlinger( 134): setParameters(): io 1, keyvalue routing=0, tid 168, calling tid 134
I/AudioHardwareMSM72XX( 134): Routing audio to Handset
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:Playing from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/BluetoothHidService.cpp( 172): hid_event_filter...
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/A2DP ( 134): Received BT_RESPONSE - BT_START_STREAM
D/A2DP ( 134): Received BT_RESPONSE - BT_NEW_STREAM
V/BluetoothEventRedirector(11723): Received android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/CachedBluetoothDevice(11723): onProfileStateChanged: profile A2DP newProfileState 4
D/BluetoothA2dpService( 172): A2DP state : device: 00:1C:D8:3E:51:F4 State:2->4
D/BABTService( 288): Received action: android.bluetooth.a2dp.action.SINK_STATE_CHANGED
I/PerformBackupThread( 172): Initializing (wiping) backup state and transport storage
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
E/PerformBackupThread( 172): Error backing up @[email protected]
E/PerformBackupThread( 172): java.io.FileNotFoundException
E/PerformBackupThread( 172): at android.os.Parcel.openFileDescriptor(Native Method)
E/PerformBackupThread( 172): at android.os.ParcelFileDescriptor.open(ParcelFileDescriptor.java:115)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$PerformBackupTask.processOneBackup(BackupManagerService.java:1429)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$PerformBackupTask.run(BackupManagerService.java:1287)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$BackupHandler.handleMessage(BackupManagerService.java:314)
E/PerformBackupThread( 172): at android.os.Handler.dispatchMessage(Handler.java:99)
E/PerformBackupThread( 172): at android.os.Looper.loop(Looper.java:123)
E/PerformBackupThread( 172): at android.os.HandlerThread.run(HandlerThread.java:60)
W/PerformBackupThread( 172): Backup pass unsuccessful, restaging
D/A2DP ( 134): a2dp_stop
D/A2DP ( 134): bluetooth_stop
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:Stopped from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/BluetoothHidService.cpp( 172): hid_event_filter...
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/A2DP ( 134): Received BT_RESPONSE - BT_STOP_STREAM
V/BluetoothEventRedirector(11723): Received android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/CachedBluetoothDevice(11723): onProfileStateChanged: profile A2DP newProfileState 2
D/BluetoothA2dpService( 172): A2DP state : device: 00:1C:D8:3E:51:F4 State:4->2
D/BABTService( 288): Received action: android.bluetooth.a2dp.action.SINK_STATE_CHANGED
I/EventLogService( 246): Aggregate from 1304709038588 (log), 1304709038588 (data)
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
D/dalvikvm( 172): GC_CONCURRENT freed 1268K, 36% free 8030K/12359K, external 0K/512K, paused 8ms+33ms
I/StagefrightPlayer( 134): setDataSource('/system/media/audio/ui/Effect_Tick.ogg')
D/A2DP ( 134): bluetooth_start
D/AudioFlinger( 134): setParameters(): io 1, keyvalue routing=0, tid 168, calling tid 134
I/AudioHardwareMSM72XX( 134): Routing audio to Handset
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:Playing from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/BluetoothHidService.cpp( 172): hid_event_filter...
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/A2DP ( 134): Received BT_RESPONSE - BT_START_STREAM
D/A2DP ( 134): Received BT_RESPONSE - BT_NEW_STREAM
V/BluetoothEventRedirector(11723): Received android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/CachedBluetoothDevice(11723): onProfileStateChanged: profile A2DP newProfileState 4
D/BluetoothA2dpService( 172): A2DP state : device: 00:1C:D8:3E:51:F4 State:2->4
D/BABTService( 288): Received action: android.bluetooth.a2dp.action.SINK_STATE_CHANGED
V/NotificationService( 172): Active profile: Default
I/PROFILE ( 172): Group: Gmail containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Phone containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Calendar containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Email containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: SMS containing : com.android.BlackMarketApp : false
V/ProfileManager( 172): No active group, returning default: Other
V/NotificationService( 172): Pkg: com.android.BlackMarketApp group: Other
D/dalvikvm(11705): GC_FOR_MALLOC freed 256K, 48% free 3703K/7047K, external 526K/1024K, paused 104ms
D/A2DP ( 134): a2dp_stop
D/A2DP ( 134): bluetooth_stop
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:Stopped from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/BluetoothHidService.cpp( 172): hid_event_filter...
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
D/A2DP ( 134): Received BT_RESPONSE - BT_STOP_STREAM
E/BluetoothEventLoop.cpp( 172): event_filter: Received signal org.bluez.AudioSink:PropertyChanged from /org/bluez/224/hci0/dev_00_1C_D8_3E_51_F4
V/BluetoothEventRedirector(11723): Received android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/CachedBluetoothDevice(11723): onProfileStateChanged: profile A2DP newProfileState 2
D/BluetoothA2dpService( 172): A2DP state : device: 00:1C:D8:3E:51:F4 State:4->2
D/BABTService( 288): Received action: android.bluetooth.a2dp.action.SINK_STATE_CHANGED
D/dalvikvm(11705): GC_FOR_MALLOC freed 225K, 48% free 3701K/7047K, external 526K/1024K, paused 55ms
W/System.err(11705): org.json.JSONException: End of input at character 0 of
W/System.err(11705): at org.json.JSONTokener.syntaxError(JSONTokener.java:446)
W/System.err(11705): at org.json.JSONTokener.nextValue(JSONTokener.java:93)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:154)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:171)
W/System.err(11705): at com.android.BlackMarketApp.DownloadTask$DownloadFilesTask.run(DownloadTask.java:244)
V/NotificationService( 172): Active profile: Default
I/PROFILE ( 172): Group: Gmail containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Phone containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Calendar containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: Email containing : com.android.BlackMarketApp : false
I/PROFILE ( 172): Group: SMS containing : com.android.BlackMarketApp : false
V/ProfileManager( 172): No active group, returning default: Other
V/NotificationService( 172): Pkg: com.android.BlackMarketApp group: Other
V/JuiceDefender.Service( 3987): Screen brightness set to 34%, dim 0% - sensor: 1379
D/dalvikvm(11723): GC_EXPLICIT freed 72K, 53% free 2640K/5511K, external 0K/0K, paused 70ms
D/dalvikvm( 908): GC_EXPLICIT freed 25K, 56% free 2877K/6535K, external 0K/0K, paused 69ms
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
W/Smack/Packet( 246): notify conn break (IOEx), close connection
D/Smack ( 246): [XMPPConn] close connection, notifyClosed=false
D/dalvikvm(11771): GC_EXPLICIT freed 31K, 53% free 2602K/5447K, external 0K/0K, paused 68ms
V/JuiceDefender.Service( 3987): Screen brightness set to 32%, dim 0% - sensor: 1160
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
D/dalvikvm( 246): GC_CONCURRENT freed 381K, 49% free 3445K/6663K, external 0K/0K, paused 6ms+12ms
D/dalvikvm( 246): GC_CONCURRENT freed 445K, 49% free 3406K/6663K, external 0K/0K, paused 7ms+16ms
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
D/GTalkService( 246): [RosterMgr] roster not modified
D/GTalkService( 246): [OtrMgr] OTR not modified
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
I/PerformBackupThread( 172): Initializing (wiping) backup state and transport storage
E/PerformBackupThread( 172): Error backing up @[email protected]
E/PerformBackupThread( 172): java.io.FileNotFoundException
E/PerformBackupThread( 172): at android.os.Parcel.openFileDescriptor(Native Method)
E/PerformBackupThread( 172): at android.os.ParcelFileDescriptor.open(ParcelFileDescriptor.java:115)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$PerformBackupTask.processOneBackup(BackupManagerService.java:1429)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$PerformBackupTask.run(BackupManagerService.java:1287)
E/PerformBackupThread( 172): at com.android.server.BackupManagerService$BackupHandler.handleMessage(BackupManagerService.java:314)
E/PerformBackupThread( 172): at android.os.Handler.dispatchMessage(Handler.java:99)
E/PerformBackupThread( 172): at android.os.Looper.loop(Looper.java:123)
E/PerformBackupThread( 172): at android.os.HandlerThread.run(HandlerThread.java:60)
W/PerformBackupThread( 172): Backup pass unsuccessful, restaging
I/TelephonyRegistry( 172): notifyServiceState: 0 home Jared A. Gosney (N/A) 31000 EvDo rev. A CSS supported 9 1192RoamInd: 128DefRoamInd: 1EmergOnly: false
notice the
Code:
W/System.err(11705): org.json.JSONException: End of input at character 0 of
W/System.err(11705): at org.json.JSONTokener.syntaxError(JSONTokener.java:446)
W/System.err(11705): at org.json.JSONTokener.nextValue(JSONTokener.java:93)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:154)
W/System.err(11705): at org.json.JSONObject.<init>(JSONObject.java:171)
W/System.err(11705): at com.android.BlackMarketApp.DownloadTask$DownloadFilesTask.run(DownloadTask.java:244)
is this my problem?! and how do I fix it?!
I found a fix, that worked for my market
http://forum.xda-developers.com/show...postcount=4650
I have this same issue. I tried to flash a new ROM last night, went fine and Google started restoring apps automatically. I then restored my Titanium and everything was fine but I then could not download anything from the market.
I tried another fresh install wiping everything and weirdly Google restored my apps again but after it had finished I couldn't download anything else.
So I figured it was an issue with the ROM so I restored my Nandroid. But guess what I know still cannot download anything from the market.
I have tried everything suggested like wiping Market cache, data, Uninstall updates etc but nothing works. I can push apps to my phone from market.android.com but cannot download from my phone. It is so frustrating.
How did you fix? The link above doesn't work.
Exact same issue here. Seems like apps will still install if done through the online market though. Apps that I have removed are still showing as installed there which leads me to believe it is an issue with the app not communicating with googles servers properly. The only way this would make sense is if the online market bypasses your market client entirely, which could make sense.
I've had this happen. The way I fixed it was to change my password on my Gmail account and then do a full wipe ( hard reset). Two things happened, 1) my device got a new ID and 2) the new password forced Google's servers to reauthenticate me ( my device)
Edit: Change Password First!
Sent from my N1, running CM7 and IntersectRaven's latest kernel. (AVS)
I've come to the realization that Google puts a 12-24hr ban in place on irregular market place activity. My apps always update on fridays/saturdays for the most part. When going from CM6 to CM7 i always did it on a friday or saturday. and would get this error. Even doing a nandroid restore on the same day after getting the error would still give me the error. Turned phone off waited till next morning and nandroid restore all ok. Decided to flash CM7 on a sunday and bam market downloads are ok.
Forward to this weekend when I realize all my market links are missing and I have to redownload all apps. Everything is working ok as I make my way from A to S in apps, however about 8pm-10pm I get the error again close to the end of S. Wake up in the morning 7:30, reboot, and still get the error. I get to work at 9am and things are downloading ok. No reflash, no nandrestore, no titanium restore.
I believe that google is placing some sort of 12hr hold on market accounts due to irregular activity, maybe to help with fraudulent credit cards and download/unstall of paid apps to get free. If you getting this error wait 12-24hrs and see what happens.
Thanks man, us just came back on its own
Sent from my Nexus S using XDA App
Hey everyone
Because there is a limit of posts you need to have before you can post in the development section and i am getting PM's with always the same questions, it's the best solution to create a own thread here for everyone.
Any Questions, Problems, Troubleshooting go in here.
Thanks for your understanding, else the development thread is too cluttered
Link to NamelessRom for the P970: http://forum.xda-developers.com/showthread.php?t=2610681
If possible, please report your issues with logs on our JIRA Instance, so we can keep track of the bugs / feature requests.
Click here to get to JIRA
Well, let the discussion and troubleshooting begin
Reserved for a FAQ, a list of links to posts or something like that
nice idea:good:
well, then I start...
any news to fix the gps in the coming days?
mechtiger's post ( http://forum.xda-developers.com/showpost.php?p=53777961&postcount=965 )
Hi all, Just a quick question with no proof Has anyone else had an issue from daily 27th upwards of when you plug a charger in the phone hard locks up and only a battery pull fixes it?
Thanks in advance and if no one else is I will try and work out how to get a log
Click to expand...
Click to collapse
Hi dear devs,
I have same issue since 26th (nameless-4.4.4-20140626-p970-NIGHTLY). (Didn't try 25th, 27th and 30th.) I installed 29th today and have same issue again. 24th was clear. Firstly i installed 26th via update center on 24th (so without any wipe) and haven't got any bug. than i installed cm10 with full wipe and than installed 26th directly with full wipe and this issue occured. Same result with 29th. Tried 24th again, worked well. Now i'm using cm10. (cwm 6.0.4.5)
When i plug usb to phone (charger or pc) it freezes. On booting too. If i plug charger when phone closed, it shows only LG logo. No charge or boot.
Sorry, i haven't any log. I'm noob.
Edit: Tried nameless-4.4.4-20140701-p970-NIGHTLY, phone hard locks.
Can we someday be able to install latest cwm recovery for our OB ?
Hi, the latest cwm for p970 what I'ev seen is 6.0.4.5 and worked well for me so far. You can download installer from this section http://forum.xda-developers.com/showthread.php?t=1624565
Did you miss some feature from higher versions ?
mr_rious said:
nice idea:good:
well, then I start...
any news to fix the gps in the coming days?
Click to expand...
Click to collapse
I did some GPS testing and there you can see my result:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I use app GPS Status for downloading A-GPS data from internet. I think GPS in P970 working bad without A-GPS data, downloading them improves lock position speed for few days. The first lock after phone restart (rom update) takes little bit longer about 1-3min, where GPS searching for sattelites and caching information about them. With restart are these informations wiped out and phone need them acquire again. The lock speed could be individual, depending on many things, position, signal strenght (you should be outside with direct view to the sky, behind most new plastic windows is bad signal due present metalic layer on glass), and there could be bad contact with antena onside phone too. If I'm wrong correct me please.
bzn7 said:
Hi dear devs,
I have same issue since 26th (nameless-4.4.4-20140626-p970-NIGHTLY). (Didn't try 25th, 27th and 30th.) I installed 29th today and have same issue again. 24th was clear. Firstly i installed 26th via update center on 24th (so without any wipe) and haven't got any bug. than i installed cm10 with full wipe and than installed 26th directly with full wipe and this issue occured. Same result with 29th. Tried 24th again, worked well. Now i'm using cm10. (cwm 6.0.4.5)
When i plug usb to phone (charger or pc) it freezes. On booting too. If i plug charger when phone closed, it shows only LG logo. No charge or boot.
Sorry, i haven't any log. I'm noob.
Edit: Tried nameless-4.4.4-20140701-p970-NIGHTLY, phone hard locks.
Click to expand...
Click to collapse
I wasn't able to reproduce this issue for get a log of it. Try use app named CatLog -> open it -> in menu press record -> set file name -> make procedure in witch there is problem -> if phone freeze, reboot and see if LogCat was able to save file on your SD card -> if you get that file you have log and you can post it
Regards
Is there a way to disable horizontal lockscreen?
EDIT: Found it. You have to enable and then disable again lockscreen rotation for changes to really apply.
From a clean install the lockscreen rotates.
KM7ECZ said:
I wasn't able to reproduce this issue for get a log of it. Try use app named CatLog -> open it -> in menu press record -> set file name -> make procedure in witch there is problem -> if phone freeze, reboot and see if LogCat was able to save file on your SD card -> if you get that file you have log and you can post it
Regards
Click to expand...
Click to collapse
Hi again,
>installed [20140701 + Gapps minimal (Bank's) + AOSP Browser Sync] with full wipe
>installed catlog from play store
>started recording
>plugged charger in and phone freezed
>ejected charger
>pulled battery
The logs:
Code:
07-02 00:46:57.003 D/AndroidRuntime( 5439):
07-02 00:46:57.003 D/AndroidRuntime( 5439): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:46:57.019 D/AndroidRuntime( 5439): CheckJNI is OFF
07-02 00:46:57.073 D/dalvikvm( 5439): Trying to load lib libjavacore.so 0x0
07-02 00:46:57.089 D/dalvikvm( 5439): Added shared lib libjavacore.so 0x0
07-02 00:46:57.089 D/dalvikvm( 5439): Trying to load lib libnativehelper.so 0x0
07-02 00:46:57.097 D/dalvikvm( 5439): Added shared lib libnativehelper.so 0x0
07-02 00:46:57.097 D/dalvikvm( 5439): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:46:57.183 E/cutils-trace( 5439): Error opening trace file: No such file or directory (2)
07-02 00:46:57.472 E/memtrack( 5439): Couldn't load memtrack module (No such file or directory)
07-02 00:46:57.472 E/android.os.Debug( 5439): failed to load memtrack module: -2
07-02 00:46:57.644 D/AndroidRuntime( 5439): Calling main entry com.android.commands.am.Am
07-02 00:46:57.644 D/dalvikvm( 5439): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:46:57.691 D/AndroidRuntime( 5439): Shutting down VM
07-02 00:46:57.925 I/Choreographer( 5223): Skipped 40 frames! The application may be doing too much work on its main thread.
07-02 00:46:59.363 D/AndroidRuntime( 5456):
07-02 00:46:59.363 D/AndroidRuntime( 5456): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:46:59.363 D/AndroidRuntime( 5456): CheckJNI is OFF
07-02 00:46:59.456 D/dalvikvm( 5456): Trying to load lib libjavacore.so 0x0
07-02 00:46:59.480 D/dalvikvm( 5456): Added shared lib libjavacore.so 0x0
07-02 00:46:59.488 D/dalvikvm( 5456): Trying to load lib libnativehelper.so 0x0
07-02 00:46:59.495 D/dalvikvm( 5456): Added shared lib libnativehelper.so 0x0
07-02 00:46:59.495 D/dalvikvm( 5456): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:46:59.628 E/cutils-trace( 5456): Error opening trace file: No such file or directory (2)
07-02 00:47:00.066 E/memtrack( 5456): Couldn't load memtrack module (No such file or directory)
07-02 00:47:00.073 E/android.os.Debug( 5456): failed to load memtrack module: -2
07-02 00:47:00.323 D/AndroidRuntime( 5456): Calling main entry com.android.commands.am.Am
07-02 00:47:00.339 D/dalvikvm( 5456): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:00.534 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:00.542 I/Choreographer( 5223): Skipped 77 frames! The application may be doing too much work on its main thread.
07-02 00:47:00.573 D/AndroidRuntime( 5463):
07-02 00:47:00.573 D/AndroidRuntime( 5463): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:47:00.581 D/AndroidRuntime( 5463): CheckJNI is OFF
07-02 00:47:00.636 D/AndroidRuntime( 5456): Shutting down VM
07-02 00:47:00.644 D/dalvikvm( 5463): Trying to load lib libjavacore.so 0x0
07-02 00:47:00.659 D/dalvikvm( 5463): Added shared lib libjavacore.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): Trying to load lib libnativehelper.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): Added shared lib libnativehelper.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:47:00.800 E/cutils-trace( 5463): Error opening trace file: No such file or directory (2)
07-02 00:47:00.925 D/lights ( 1828): liblights: set_light_buttons: 255
07-02 00:47:00.941 W/ProcessCpuTracker( 1828): Skipping unknown process pid 5456
07-02 00:47:01.066 I/Choreographer( 5223): Skipped 33 frames! The application may be doing too much work on its main thread.
07-02 00:47:01.167 E/memtrack( 5463): Couldn't load memtrack module (No such file or directory)
07-02 00:47:01.175 E/android.os.Debug( 5463): failed to load memtrack module: -2
07-02 00:47:01.558 D/AndroidRuntime( 5463): Calling main entry com.android.commands.am.Am
07-02 00:47:01.566 D/dalvikvm( 5463): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:02.050 D/AndroidRuntime( 5463): Shutting down VM
07-02 00:47:02.370 D/AndroidRuntime( 5491):
07-02 00:47:02.370 D/AndroidRuntime( 5491): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:47:02.378 D/AndroidRuntime( 5491): CheckJNI is OFF
07-02 00:47:02.441 D/dalvikvm( 5491): Trying to load lib libjavacore.so 0x0
07-02 00:47:02.441 D/dalvikvm( 5491): Added shared lib libjavacore.so 0x0
07-02 00:47:02.456 D/dalvikvm( 5491): Trying to load lib libnativehelper.so 0x0
07-02 00:47:02.464 D/dalvikvm( 5491): Added shared lib libnativehelper.so 0x0
07-02 00:47:02.464 D/dalvikvm( 5491): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:47:02.558 E/cutils-trace( 5491): Error opening trace file: No such file or directory (2)
07-02 00:47:02.792 I/Choreographer( 5223): Skipped 116 frames! The application may be doing too much work on its main thread.
07-02 00:47:02.855 E/memtrack( 5491): Couldn't load memtrack module (No such file or directory)
07-02 00:47:02.855 E/android.os.Debug( 5491): failed to load memtrack module: -2
07-02 00:47:03.034 D/AndroidRuntime( 5491): Calling main entry com.android.commands.am.Am
07-02 00:47:03.042 D/dalvikvm( 5491): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:03.152 D/AndroidRuntime( 5491): Shutting down VM
07-02 00:47:03.230 W/InputMethodManagerService( 1828): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
07-02 00:47:03.245 V/PhoneStatusBar( 2179): setLightsOn(true)
07-02 00:47:03.769 I/Timeline( 5223): Timeline: Activity_idle id: [email protected] time:714463
07-02 00:47:06.542 D/AlarmManagerService( 1828): Kernel timezone updated to -180 minutes west of GMT
07-02 00:47:06.573 D/MobileDataStateTracker( 1828): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
07-02 00:47:06.573 D/MobileDataStateTracker( 1828): default: Received state=CONNECTED, old=CONNECTED, reason=(unspecified)
07-02 00:47:06.589 D/NotificationMgr( 2343): updateNetworkSelection()...state = 0 new network
07-02 00:47:06.597 D/PhoneApp( 2343): mReceiver: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED
07-02 00:47:06.597 D/PhoneApp( 2343): - state: CONNECTED
07-02 00:47:06.597 D/PhoneApp( 2343): - reason: null
07-02 00:47:06.605 D/NotificationMgr( 2343): hideDataDisconnectedRoaming()...
07-02 00:47:06.605 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
07-02 00:47:06.605 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
07-02 00:47:07.855 D/AlarmManagerService( 1828): Kernel timezone updated to -180 minutes west of GMT
07-02 00:47:07.886 D/MobileDataStateTracker( 1828): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
07-02 00:47:07.894 D/MobileDataStateTracker( 1828): default: Received state=CONNECTED, old=CONNECTED, reason=(unspecified)
07-02 00:47:07.909 D/NotificationMgr( 2343): updateNetworkSelection()...state = 0 new network
07-02 00:47:07.909 D/PhoneApp( 2343): mReceiver: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED
07-02 00:47:07.909 D/PhoneApp( 2343): - state: CONNECTED
07-02 00:47:07.917 D/PhoneApp( 2343): - reason: null
07-02 00:47:07.917 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
07-02 00:47:07.917 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
07-02 00:47:07.925 D/NotificationMgr( 2343): hideDataDisconnectedRoaming()...
07-02 00:47:10.792 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:30.855 D/lights ( 1828): liblights: set_light_buttons: 255
07-02 00:47:30.917 I/VisualizerView( 2179): session=0
07-02 00:47:36.355 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:36.394 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5006.8ms since event, 5000.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.409 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.519 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5130.8ms since event, 5124.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.527 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.620 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5236.9ms since event, 5230.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.636 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.667 I/Process ( 1828): Sending signal. PID: 2179 SIG: 3
07-02 00:47:36.675 I/dalvikvm( 2179): threadid=3: reacting to signal 3
07-02 00:47:36.761 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5374.4ms since event, 5368.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.769 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.886 I/Process ( 1828): Sending signal. PID: 1828 SIG: 3
07-02 00:47:36.886 I/dalvikvm( 1828): threadid=3: reacting to signal 3
07-02 00:47:38.066 E/Sensors ( 1828): poll() failed (Interrupted system call)
07-02 00:47:38.198 I/Process ( 1828): Sending signal. PID: 2359 SIG: 3
07-02 00:47:38.198 I/dalvikvm( 2359): threadid=3: reacting to signal 3
07-02 00:47:38.214 I/dalvikvm( 1828): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.269 I/Process ( 1828): Sending signal. PID: 2347 SIG: 3
07-02 00:47:38.269 I/dalvikvm( 2347): threadid=3: reacting to signal 3
07-02 00:47:38.355 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 6969.0ms since event, 6962.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.370 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.464 I/Process ( 1828): Sending signal. PID: 2343 SIG: 3
07-02 00:47:38.464 I/dalvikvm( 2343): threadid=3: reacting to signal 3
07-02 00:47:38.495 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7109.9ms since event, 7103.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.605 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.714 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7329.0ms since event, 7322.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.745 I/dalvikvm( 2179): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.745 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.886 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7502.6ms since event, 7496.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.909 I/dalvikvm( 2359): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.909 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.988 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7605.1ms since event, 7598.9ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.019 I/dalvikvm( 2347): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:39.019 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.105 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7718.1ms since event, 7711.9ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.120 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.206 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7824.6ms since event, 7818.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.222 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.589 I/dalvikvm( 2343): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:39.722 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8334.6ms since event, 8328.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.738 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.839 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8453.6ms since event, 8447.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.863 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.948 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8566.7ms since event, 8560.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.980 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.050 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8662.7ms since event, 8656.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.066 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.113 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8730.0ms since event, 8723.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.128 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.183 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8797.9ms since event, 8791.6ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.198 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.238 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8854.3ms since event, 8848.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.253 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.472 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9088.0ms since event, 9081.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.488 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.589 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9202.3ms since event, 9196.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.605 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.667 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9285.6ms since event, 9279.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.691 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.730 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9347.2ms since event, 9341.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.753 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.823 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9436.5ms since event, 9430.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.831 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.902 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9520.0ms since event, 9513.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.917 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.011 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9625.3ms since event, 9619.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.027 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.230 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9845.7ms since event, 9839.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.245 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.308 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9925.3ms since event, 9919.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.323 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.394 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.738 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.738 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:42.894 E/ActivityManager( 1828): ANR in com.android.systemui
07-02 00:47:42.894 E/ActivityManager( 1828): PID: 2179
07-02 00:47:42.894 E/ActivityManager( 1828): Reason: Input dispatching timed out (Waiting because the touched window has not finished processing the input events that were previously delivered to it.)
07-02 00:47:42.894 E/ActivityManager( 1828): Load: 4.15 / 4.01 / 2.71
07-02 00:47:42.894 E/ActivityManager( 1828): CPU usage from 0ms to 6350ms later with 99% awake:
07-02 00:47:42.894 E/ActivityManager( 1828): 51% 4642/kworker/0:1: 0% user + 51% kernel
07-02 00:47:42.894 E/ActivityManager( 1828): 33% 1828/system_server: 29% user + 3.7% kernel / faults: 1960 minor 24 major
07-02 00:47:42.894 E/ActivityManager( 1828): 3.9% 2179/com.android.systemui: 3.4% user + 0.4% kernel / faults: 257 minor 8 major
07-02 00:47:42.894 E/ActivityManager( 1828): 0% 1426/debuggerd: 0% user + 0% kernel / faults: 1906 minor 33 major
07-02 00:47:42.894 E/ActivityManager( 1828): 2.2% 2343/com.android.phone: 1.5% user + 0.6% kernel / faults: 401 minor 15 major
Thanks, regards.
mr_rious said:
nice idea:good:
well, then I start...
any news to fix the gps in the coming days?
Click to expand...
Click to collapse
working on it! GPS and new WIFI Drivers are the only big things left
rellagher said:
Is there a way to disable horizontal lockscreen?
EDIT: Found it. You have to enable and then disable again lockscreen rotation for changes to really apply.
From a clean install the lockscreen rotates.
Click to expand...
Click to collapse
yes, its enabled by default but settings doesnt reflect that, sorry!
bzn7 said:
Hi again,
>installed [20140701 + Gapps minimal (Bank's) + AOSP Browser Sync] with full wipe
>installed catlog from play store
>started recording
>plugged charger in and phone freezed
>ejected charger
>pulled battery
The logs:
Code:
07-02 00:46:57.003 D/AndroidRuntime( 5439):
07-02 00:46:57.003 D/AndroidRuntime( 5439): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:46:57.019 D/AndroidRuntime( 5439): CheckJNI is OFF
07-02 00:46:57.073 D/dalvikvm( 5439): Trying to load lib libjavacore.so 0x0
07-02 00:46:57.089 D/dalvikvm( 5439): Added shared lib libjavacore.so 0x0
07-02 00:46:57.089 D/dalvikvm( 5439): Trying to load lib libnativehelper.so 0x0
07-02 00:46:57.097 D/dalvikvm( 5439): Added shared lib libnativehelper.so 0x0
07-02 00:46:57.097 D/dalvikvm( 5439): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:46:57.183 E/cutils-trace( 5439): Error opening trace file: No such file or directory (2)
07-02 00:46:57.472 E/memtrack( 5439): Couldn't load memtrack module (No such file or directory)
07-02 00:46:57.472 E/android.os.Debug( 5439): failed to load memtrack module: -2
07-02 00:46:57.644 D/AndroidRuntime( 5439): Calling main entry com.android.commands.am.Am
07-02 00:46:57.644 D/dalvikvm( 5439): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:46:57.691 D/AndroidRuntime( 5439): Shutting down VM
07-02 00:46:57.925 I/Choreographer( 5223): Skipped 40 frames! The application may be doing too much work on its main thread.
07-02 00:46:59.363 D/AndroidRuntime( 5456):
07-02 00:46:59.363 D/AndroidRuntime( 5456): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:46:59.363 D/AndroidRuntime( 5456): CheckJNI is OFF
07-02 00:46:59.456 D/dalvikvm( 5456): Trying to load lib libjavacore.so 0x0
07-02 00:46:59.480 D/dalvikvm( 5456): Added shared lib libjavacore.so 0x0
07-02 00:46:59.488 D/dalvikvm( 5456): Trying to load lib libnativehelper.so 0x0
07-02 00:46:59.495 D/dalvikvm( 5456): Added shared lib libnativehelper.so 0x0
07-02 00:46:59.495 D/dalvikvm( 5456): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:46:59.628 E/cutils-trace( 5456): Error opening trace file: No such file or directory (2)
07-02 00:47:00.066 E/memtrack( 5456): Couldn't load memtrack module (No such file or directory)
07-02 00:47:00.073 E/android.os.Debug( 5456): failed to load memtrack module: -2
07-02 00:47:00.323 D/AndroidRuntime( 5456): Calling main entry com.android.commands.am.Am
07-02 00:47:00.339 D/dalvikvm( 5456): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:00.534 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:00.542 I/Choreographer( 5223): Skipped 77 frames! The application may be doing too much work on its main thread.
07-02 00:47:00.573 D/AndroidRuntime( 5463):
07-02 00:47:00.573 D/AndroidRuntime( 5463): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:47:00.581 D/AndroidRuntime( 5463): CheckJNI is OFF
07-02 00:47:00.636 D/AndroidRuntime( 5456): Shutting down VM
07-02 00:47:00.644 D/dalvikvm( 5463): Trying to load lib libjavacore.so 0x0
07-02 00:47:00.659 D/dalvikvm( 5463): Added shared lib libjavacore.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): Trying to load lib libnativehelper.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): Added shared lib libnativehelper.so 0x0
07-02 00:47:00.675 D/dalvikvm( 5463): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:47:00.800 E/cutils-trace( 5463): Error opening trace file: No such file or directory (2)
07-02 00:47:00.925 D/lights ( 1828): liblights: set_light_buttons: 255
07-02 00:47:00.941 W/ProcessCpuTracker( 1828): Skipping unknown process pid 5456
07-02 00:47:01.066 I/Choreographer( 5223): Skipped 33 frames! The application may be doing too much work on its main thread.
07-02 00:47:01.167 E/memtrack( 5463): Couldn't load memtrack module (No such file or directory)
07-02 00:47:01.175 E/android.os.Debug( 5463): failed to load memtrack module: -2
07-02 00:47:01.558 D/AndroidRuntime( 5463): Calling main entry com.android.commands.am.Am
07-02 00:47:01.566 D/dalvikvm( 5463): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:02.050 D/AndroidRuntime( 5463): Shutting down VM
07-02 00:47:02.370 D/AndroidRuntime( 5491):
07-02 00:47:02.370 D/AndroidRuntime( 5491): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
07-02 00:47:02.378 D/AndroidRuntime( 5491): CheckJNI is OFF
07-02 00:47:02.441 D/dalvikvm( 5491): Trying to load lib libjavacore.so 0x0
07-02 00:47:02.441 D/dalvikvm( 5491): Added shared lib libjavacore.so 0x0
07-02 00:47:02.456 D/dalvikvm( 5491): Trying to load lib libnativehelper.so 0x0
07-02 00:47:02.464 D/dalvikvm( 5491): Added shared lib libnativehelper.so 0x0
07-02 00:47:02.464 D/dalvikvm( 5491): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
07-02 00:47:02.558 E/cutils-trace( 5491): Error opening trace file: No such file or directory (2)
07-02 00:47:02.792 I/Choreographer( 5223): Skipped 116 frames! The application may be doing too much work on its main thread.
07-02 00:47:02.855 E/memtrack( 5491): Couldn't load memtrack module (No such file or directory)
07-02 00:47:02.855 E/android.os.Debug( 5491): failed to load memtrack module: -2
07-02 00:47:03.034 D/AndroidRuntime( 5491): Calling main entry com.android.commands.am.Am
07-02 00:47:03.042 D/dalvikvm( 5491): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods
07-02 00:47:03.152 D/AndroidRuntime( 5491): Shutting down VM
07-02 00:47:03.230 W/InputMethodManagerService( 1828): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
07-02 00:47:03.245 V/PhoneStatusBar( 2179): setLightsOn(true)
07-02 00:47:03.769 I/Timeline( 5223): Timeline: Activity_idle id: [email protected] time:714463
07-02 00:47:06.542 D/AlarmManagerService( 1828): Kernel timezone updated to -180 minutes west of GMT
07-02 00:47:06.573 D/MobileDataStateTracker( 1828): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
07-02 00:47:06.573 D/MobileDataStateTracker( 1828): default: Received state=CONNECTED, old=CONNECTED, reason=(unspecified)
07-02 00:47:06.589 D/NotificationMgr( 2343): updateNetworkSelection()...state = 0 new network
07-02 00:47:06.597 D/PhoneApp( 2343): mReceiver: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED
07-02 00:47:06.597 D/PhoneApp( 2343): - state: CONNECTED
07-02 00:47:06.597 D/PhoneApp( 2343): - reason: null
07-02 00:47:06.605 D/NotificationMgr( 2343): hideDataDisconnectedRoaming()...
07-02 00:47:06.605 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
07-02 00:47:06.605 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
07-02 00:47:07.855 D/AlarmManagerService( 1828): Kernel timezone updated to -180 minutes west of GMT
07-02 00:47:07.886 D/MobileDataStateTracker( 1828): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
07-02 00:47:07.894 D/MobileDataStateTracker( 1828): default: Received state=CONNECTED, old=CONNECTED, reason=(unspecified)
07-02 00:47:07.909 D/NotificationMgr( 2343): updateNetworkSelection()...state = 0 new network
07-02 00:47:07.909 D/PhoneApp( 2343): mReceiver: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED
07-02 00:47:07.909 D/PhoneApp( 2343): - state: CONNECTED
07-02 00:47:07.917 D/PhoneApp( 2343): - reason: null
07-02 00:47:07.917 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
07-02 00:47:07.917 E/ConnectivityService( 1828): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
07-02 00:47:07.925 D/NotificationMgr( 2343): hideDataDisconnectedRoaming()...
07-02 00:47:10.792 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:30.855 D/lights ( 1828): liblights: set_light_buttons: 255
07-02 00:47:30.917 I/VisualizerView( 2179): session=0
07-02 00:47:36.355 D/lights ( 1828): liblights: set_light_buttons: 0
07-02 00:47:36.394 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5006.8ms since event, 5000.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.409 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.519 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5130.8ms since event, 5124.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.527 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.620 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5236.9ms since event, 5230.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.636 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.667 I/Process ( 1828): Sending signal. PID: 2179 SIG: 3
07-02 00:47:36.675 I/dalvikvm( 2179): threadid=3: reacting to signal 3
07-02 00:47:36.761 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 5374.4ms since event, 5368.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.769 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:36.886 I/Process ( 1828): Sending signal. PID: 1828 SIG: 3
07-02 00:47:36.886 I/dalvikvm( 1828): threadid=3: reacting to signal 3
07-02 00:47:38.066 E/Sensors ( 1828): poll() failed (Interrupted system call)
07-02 00:47:38.198 I/Process ( 1828): Sending signal. PID: 2359 SIG: 3
07-02 00:47:38.198 I/dalvikvm( 2359): threadid=3: reacting to signal 3
07-02 00:47:38.214 I/dalvikvm( 1828): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.269 I/Process ( 1828): Sending signal. PID: 2347 SIG: 3
07-02 00:47:38.269 I/dalvikvm( 2347): threadid=3: reacting to signal 3
07-02 00:47:38.355 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 6969.0ms since event, 6962.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.370 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.464 I/Process ( 1828): Sending signal. PID: 2343 SIG: 3
07-02 00:47:38.464 I/dalvikvm( 2343): threadid=3: reacting to signal 3
07-02 00:47:38.495 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7109.9ms since event, 7103.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.605 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.714 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7329.0ms since event, 7322.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.745 I/dalvikvm( 2179): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.745 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.886 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7502.6ms since event, 7496.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.909 I/dalvikvm( 2359): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:38.909 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:38.988 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7605.1ms since event, 7598.9ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.019 I/dalvikvm( 2347): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:39.019 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.105 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7718.1ms since event, 7711.9ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.120 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.206 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 7824.6ms since event, 7818.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.222 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.589 I/dalvikvm( 2343): Wrote stack traces to '/data/anr/traces.txt'
07-02 00:47:39.722 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8334.6ms since event, 8328.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.738 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.839 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8453.6ms since event, 8447.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.863 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.948 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8566.7ms since event, 8560.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:39.980 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.050 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8662.7ms since event, 8656.5ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.066 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.113 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8730.0ms since event, 8723.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.128 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.183 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8797.9ms since event, 8791.6ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.198 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.238 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 8854.3ms since event, 8848.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.253 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.472 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9088.0ms since event, 9081.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.488 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.589 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9202.3ms since event, 9196.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.605 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.667 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9285.6ms since event, 9279.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.691 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.730 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9347.2ms since event, 9341.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.753 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.823 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9436.5ms since event, 9430.3ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.831 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.902 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9520.0ms since event, 9513.8ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:40.917 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.011 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9625.3ms since event, 9619.0ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.027 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.230 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9845.7ms since event, 9839.4ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.245 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.308 I/InputDispatcher( 1828): Application is not responding: Window{419f64a8 u0 StatusBar}. It has been 9925.3ms since event, 9919.1ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.323 I/WindowManager( 1828): Input event dispatching timed out sending to StatusBar. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
07-02 00:47:41.394 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.738 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.738 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.745 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:41.753 I/InputDispatcher( 1828): Dropped event because it is stale.
07-02 00:47:42.894 E/ActivityManager( 1828): ANR in com.android.systemui
07-02 00:47:42.894 E/ActivityManager( 1828): PID: 2179
07-02 00:47:42.894 E/ActivityManager( 1828): Reason: Input dispatching timed out (Waiting because the touched window has not finished processing the input events that were previously delivered to it.)
07-02 00:47:42.894 E/ActivityManager( 1828): Load: 4.15 / 4.01 / 2.71
07-02 00:47:42.894 E/ActivityManager( 1828): CPU usage from 0ms to 6350ms later with 99% awake:
07-02 00:47:42.894 E/ActivityManager( 1828): 51% 4642/kworker/0:1: 0% user + 51% kernel
07-02 00:47:42.894 E/ActivityManager( 1828): 33% 1828/system_server: 29% user + 3.7% kernel / faults: 1960 minor 24 major
07-02 00:47:42.894 E/ActivityManager( 1828): 3.9% 2179/com.android.systemui: 3.4% user + 0.4% kernel / faults: 257 minor 8 major
07-02 00:47:42.894 E/ActivityManager( 1828): 0% 1426/debuggerd: 0% user + 0% kernel / faults: 1906 minor 33 major
07-02 00:47:42.894 E/ActivityManager( 1828): 2.2% 2343/com.android.phone: 1.5% user + 0.6% kernel / faults: 401 minor 15 major
Thanks, regards.
Click to expand...
Click to collapse
can you get me the file /data/anr/traces.txt ?
Hi !
I have some issues with flashing nameless rom. When I`m trying to move from IZS V2 directly to Nameless (of course with all three wipes) every time I surely have bootloop and no difference, what version of Nameless I`m trying to flash. But when before flashing nameless I`m flashing CM10 or CM10.1 , making wipes and then installing Nameless - everything works OK.
progier said:
Hi !
I have some issues with flashing nameless rom. When I`m trying to move from IZS V2 directly to Nameless (of course with all three wipes) every time I surely have bootloop and no difference, what version of Nameless I`m trying to flash. But when before flashing nameless I`m flashing CM10 or CM10.1 , making wipes and then installing Nameless - everything works OK.
Click to expand...
Click to collapse
make sure you're on the latest nightly
make sure the zip is downloaded completely (open, not unzip, the .zip in windows to make sure)
make sure to wipe data partition before flashing
make sure to install cwm or twrp
axljohn said:
make sure you're on the latest nightly
make sure the zip is downloaded completely (open, not unzip, the .zip in windows to make sure)
make sure to wipe data partition before flashing
make sure to install cwm or twrp
Click to expand...
Click to collapse
Thanks for advices, but i`m on the last CWM 6.0.45 (builded by Evisceration), and I flash surely correct zip, because the same zip gives bootloop after IZS, and the same zip boots when I fleshed CM10 or CM 10.1 before. Due the last 2-3 month there was no Nameless nightly that can boot after IZS rom.
progier said:
Thanks for advices, but i`m on the last CWM 6.0.45 (builded by Evisceration), and I flash surely correct zip, because the same zip gives bootloop after IZS, and the same zip boots when I fleshed CM10 or CM 10.1 before. Due the last 2-3 month there was no Nameless nightly that can boot after IZS rom.
Click to expand...
Click to collapse
last resort. flash stock rom > cwm > wipe data > nameless. that should do the trick.
Evisceration said:
can you get me the file /data/anr/traces.txt ?
Click to expand...
Click to collapse
I re-installed system with same procedure.
>installed [20140701 + Gapps minimal (Bank's) + AOSP Browser Sync] with full wipe
>installed catlog from play store
>started recording
>plugged charger in and phone freezed. If you touch the hardkeys (4 touch keys which are bottom the screen) phone starts vibrating..
>ejected charger
>pulled battery
>installed root browser from play store and got traces.txt
New logs and traces.txt at attachments.
I have just found another issue with video capturing.
Audio and video tracks are not synced in video file. Both in 720p and 480p modes.
Hopefully dev's can fix it.
Also autofocusing during video sometimes causes phone freeze and only a battery pull can fix it...
I'm using latest nameless and latest 4.4.4 gaps
The problem is I sign in Google account and everything is ok except when i open play store. Search and search and nothing happened and play store dosnt load.
Please help me.
I need it
smy00oo said:
I'm using latest nameless and latest 4.4.4 gaps
The problem is I sign in Google account and everything is ok except when i open play store. Search and search and nothing happened and play store dosnt load.
Please help me.
I need it
Click to expand...
Click to collapse
Just kill playstore and try to open one again. Everything should works fine.
smy00oo said:
I'm using latest nameless and latest 4.4.4 gaps
The problem is I sign in Google account and everything is ok except when i open play store. Search and search and nothing happened and play store dosnt load.
Please help me.
I need it
Click to expand...
Click to collapse
tested and verified gapps are bank's gapps (http://goo.im/devs/BaNkS/GApps/)
latest version:
http://goo.im/devs/BaNkS/GApps/4.4.3/6-2_GApps_Minimal_4.4.3_signed.zip
[20140704] still have charging/usb issue.
My device is Optimus White. Can it be cause this? Are there any difference except color?
bzn7 said:
[20140704] still have charging/usb issue.
My device is Optimus White. Can it be cause this? Are there any difference except color?
Click to expand...
Click to collapse
lol optimus white xD dude it's still optimus black, just diff color had the same issue with the past, just clean out the accumulated dirt on the port. best to have it cleaned by a technician or something
Hi, I am having a bit of trouble with my Sony Xperia SP. Sometimes, not always, when making a phone call the phone just hangs up. This can happen just a few seconds after the phone call has started, one dozen of minutes afterwards. The phone just display that the call has ended. I tried the successive official Sony OS, I also tried CyanogeMod 11 (I’m currently running cm-11-20140915-NIGHTLY-huashan, which quite drastically extended my battery life).
Anyways, I did a catlog to get some info, but could not make much sense of it. The relevant part seems to start with:
Code:
I/sysmon-tsens_tz_sensor0( 246): sensor_work - read value = 290
I/sysmon-tsens_tz_sensor3( 246): sensor_work - read value = 310
I/sysmon-tsens_tz_sensor0( 246): sensor_work - read value = 310
I/tad ( 196): MiscTA Unit 2602:
I/tad ( 196): WRITTEN (Size 4)
I/tad ( 196): Actual erase/write to flash done (count 9, time 1411574219).
I/tad ( 196): MiscTA: Write of unit 2602 completed - OK
D/MobileDataStateTracker( 698): fota: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=fota
D/MobileDataStateTracker( 698): fota: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): dun: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=dun
D/MobileDataStateTracker( 698): dun: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): supl: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=supl
D/MobileDataStateTracker( 698): supl: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): hipri: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 698): hipri: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): ims: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=ims
D/MobileDataStateTracker( 698): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): mms: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=mms
D/MobileDataStateTracker( 698): mms: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallEnded
D/MobileDataStateTracker( 698): cbs: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=cbs
D/CallStateMonitor( 949): handleMessage(3)
I/CallModeler( 949): onDisconnect
and i put a longer version of the log at http:\\lpaste.net/111553 (cannot link yet).
Anyway, I am still not sure of how to proceed to debug the problem. Any help would be appreciated.
Thank you!
When somebody sends me a group text or picture message, I get an error saying it can't download the message.
I'm absolutely sure that the APN settings are absolutely correct after many, MANY calls with the straight talk support team.
I am looking for people that can help me out with experience with MMS on Straight talk or incite into the problem.
I have tried on two different messaging apps, the default one, and TextSecure. TextSecure seems to provide a more detailed log, of the failure when I run logcat.
These are the log messages from TextSecure app (the ones I found that pertain to MMS).
also I can't post "outside links" so I added spaces around some periods and colons on hostnames and ip addresses.
Code:
W/MmsListener(26264): Got MMS broadcast . . . android . provider . Telephony . WAP_PUSH_DELIVER
W/MmsListener(26264): Relevant!
W/MmsListener(26264): Got MMS broadcast . . . android . provider . Telephony . WAP_PUSH_RECEIVED
W/PduParser(26264): parse() called . . .
W/PduParser(26264): Message Type: 130
W/RecipientProvider(26264): Cache miss [SYNC]!
D/CountryDetector( 879): The first listener is added
W/MmsDatabse(26264): Message received type: 130
W/MmsReceiveJob(26264): Inserted received MMS notification . . .
W/MmsDownloadJob(26264): MmsDownloadJob:onRun()
W/MmsDownloadJob(26264): About to parse URL . . .
W/MmsDownloadJob(26264): Downloading mms at 198 . 228 . 238 . 80
W/MmsDownloadJob(26264): Changing radio to MMS mode . .
D/QcConnectivityService( 879): startUsingNetworkFeature reconnecting to 0: enableMMS
W/MmsRadio(26264): startUsingNetworkFeature status: 1
W/MmsRadio(26264): Got connectivity change . . .
W/MmsRadio(26264): Connected: NetworkInfo: type: mobile_mms[LTE], state: DISCONNECTED/IDLE, reason: (unspecified), extra: (none), roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwor
k: false
W/MmsRadio(26264): Connected: NetworkInfo: type: mobile_mms[LTE], state: DISCONNECTED/IDLE, reason: (unspecified), extra: (none), roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwor
k: false
D/QcConnectivityService( 879): startUsingNetworkFeature X: return APN_REQUEST_STARTED
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=458752
D/MobileDataStateTracker( 879): mms: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=mms
D/MobileDataStateTracker( 879): mms: Received state=CONNECTING, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): mms: setDetailed state, old =IDLE and new state=CONNECTING
D/MobileDataStateTracker( 879): fota: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=fota
D/MobileDataStateTracker( 879): fota: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): dun: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=dun
D/MobileDataStateTracker( 879): dun: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): supl: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=supl
D/MobileDataStateTracker( 879): supl: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): hipri: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 879): hipri: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): ims: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=ims
D/MobileDataStateTracker( 879): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): cbs: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=cbs
D/MobileDataStateTracker( 879): cbs: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=458752
D/ConnectivityServiceHSM( 879): ConnectivityChange for mobile_mms: CONNECTED/CONNECTED
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=5001
D/MobileDataStateTracker( 879): mms: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=mms
D/MobileDataStateTracker( 879): mms: Received state=CONNECTED, old=CONNECTING, reason=dataEnabled
D/MobileDataStateTracker( 879): mms: setDetailed state, old =CONNECTING and new state=CONNECTED
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/Nat464Xlat( 879): requiresClat: netType=2, hasIPv4Address=true
D/MobileDataStateTracker( 879): default: setPolicyDataEnable(enabled=true)
W/NetworkPolicy( 879): shared quota unsupported; generating rule for each iface
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/MobileDataStateTracker( 879): default: setPolicyDataEnable(enabled=true)
D/Ulp_jni ( 879): Location CB invoked
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=111
D/Tethering( 879): MasterInitialState . processMessage what=3
D/CaptivePortalTracker( 879): NoActiveNetworkState{ when=0 what=1 obj=NetworkInfo: type: mobile_mms[LTE], state: CONNECTED/CONNECTED, reason: dataEnabled, extra: tfdata, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false target=com . android . internal . util . StateMachine$SmHandler }
D/CaptivePortalTracker( 879): NoActiveNetworkState not a wifi connectivity change, ignore
W/MmsRadio(26264): Got connectivity change . . .
W/MmsRadio(26264): Connected: NetworkInfo: type: mobile_mms[LTE], state: CONNECTED/CONNECTED, reason: dataEnabled, extra: tfdata, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false
W/MmsRadio(26264): Notifying connected . . .
W/MmsRadio(26264): Connected: NetworkInfo: type: mobile_mms[LTE], state: CONNECTED/CONNECTED, reason: dataEnabled, extra: tfdata, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false
W/MmsDownloadJob(26264): Downloading in MMS mode with proxy . . .
W/MmsCommunication(26264): Getting MMSC params for apn tfdata
W/TelephonyUtil(26264): Choosing MCC+MNC info from TelephonyManager . getSimOperator()
W/ApnDatabase(26264): Querying table for MCC+MNC 310410 and APN name tfdata
W/ApnDatabase(26264): Returning preferred APN Apn{ mmsc: "http : //mms-tf . net", proxy: "mms3 . tracfone . com", port: 80 }
D/TelephonyProvider( 1416): Column apn id key is 'apn_id'
I/AmazonVideo . connectivity( 4236): NetworkConnectionManager$ConnectivityChangeReceiver . onReceive: Received CONNECTIVITY_ACTION intent . Refreshing network info .
W/ContextImpl(10518): Calling a method in the system process without a qualified user: android . app . ContextImpl . startService:1512 android . content . ContextWrapper . startService:494 android . content . ContextWrapper . startService:494 com . sonymobile . enterprise . service . RoamingReceiver . onReceive:58 android . app . ActivityThread . handleReceiver:2469
D/TelephonyProvider( 1416): Column apn id key is 'apn_id'
I/ActivityManager( 879): Start proc com . sonymobile . podcast for broadcast com . sonymobile . podcast/ . feed . PodcastBroadcastReceiver: pid=16061 uid=10074 gids={50074, 3003, 1028, 1015, 1023}
D/dalvikvm( 274): GC_EXPLICIT freed 43K, 5% free 24059K/25240K, paused 4ms+2ms, total 24ms
W/MmsCommunication(26264): Checking route to address: mms3 . tracfone . com, 66 . 209 . 11 . 33
W/MmsCommunication(26264): requestRouteToHost result: true
W/IncomingMmsConnection(26264): got successful route to host mms3 . tracfone . com
W/MmsCommunication(26264): connecting to http : //198 . 228 . 238 . 80:8009/1205052709700020000030000 using proxy
D/QcConnectivityService( 879): requestRouteToHostAddress ok=true
I/MusicLeanback(10295): Conditions not met for autocaching .
I/MusicLeanback(10295): Stop autocaching .
D/GCM ( 1704): GcmService start Intent { act=android . net . conn . CONNECTIVITY_CHANGE flg=0x4000010 cmp=com . google . android . gms/ . gcm . GcmService (has extras) } android . net . conn . CONNECTIVITY_CHANGE
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=104
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=5006
I/iu . Environment( 1611): update connectivity state; isNetworkMetered? true, isRoaming? false, isBackgroundDataAllowed? true
D/ConnectivityReceiverDelegate( 4236): action: android . net . conn . CONNECTIVITY_CHANGE connected: true
D/dalvikvm(15851): GC_FOR_ALLOC freed 1315K, 8% free 26639K/28944K, paused 30ms, total 30ms
I/wpa_supplicant( 1163): wlan0: CTRL-EVENT-SCAN-STARTED
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=105
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=5007
D/QcConnectivityService( 879): handleInetConditionHoldEnd: net=0, condition=100, published condition=100
D/LocationFilter( 1749): Location jumpped by 5 . 125801639673951m . Will ignore change=true
W/ContextImpl(16061): Implicit intents with startService are not safe: Intent { act=com . google . android . gms . analytics . service . START (has extras) } android . content . ContextWrapper . bindService:517 com . google . analytics . tracking . android . AnalyticsGmsCoreClient . connect:82 com . google . analytics . tracking . android . GAServiceProxy . connectToService:279
I/GAV2 (16061): Thread[GAThread,5,main]: No campaign data found .
D/Ulp_jni ( 879): Location CB invoked
W/MmsCommunication(26264): * response code: HTTP/1 . 1 504 Gateway Time-out
W/IncomingMmsConnection(26264): java . io . IOException: unhandled response code
W/IncomingMmsConnection(26264): at org . thoughtcrime . securesms . mms . MmsConnection . makeRequest(MmsConnection . java:149)
W/IncomingMmsConnection(26264): at org . thoughtcrime . securesms . mms . IncomingMmsConnection . retrieve(IncomingMmsConnection . java:73)
W/IncomingMmsConnection(26264): at org . thoughtcrime . securesms . jobs . MmsDownloadJob . retrieveAndStore(MmsDownloadJob . java:197)
W/IncomingMmsConnection(26264): at org . thoughtcrime . securesms . jobs . MmsDownloadJob . onRun(MmsDownloadJob . java:116)
W/IncomingMmsConnection(26264): at org . thoughtcrime . securesms . jobs . MasterSecretJob . onRun(MasterSecretJob . java:18)
W/IncomingMmsConnection(26264): at org . whispersystems . jobqueue . JobConsumer . runJob(JobConsumer . java:72)
W/IncomingMmsConnection(26264): at org . whispersystems . jobqueue . JobConsumer . run(JobConsumer . java:46)
W/MmsDownloadJob(26264): java . io . IOException: Connection manager could not obtain route to host .
W/MmsDownloadJob(26264): at org . thoughtcrime . securesms . mms . IncomingMmsConnection . retrieve(IncomingMmsConnection . java:80)
W/MmsDownloadJob(26264): at org . thoughtcrime . securesms . jobs . MmsDownloadJob . retrieveAndStore(MmsDownloadJob . java:197)
W/MmsDownloadJob(26264): at org . thoughtcrime . securesms . jobs . MmsDownloadJob . onRun(MmsDownloadJob . java:116)
W/MmsDownloadJob(26264): at org . thoughtcrime . securesms . jobs . MasterSecretJob . onRun(MasterSecretJob . java:18)
W/MmsDownloadJob(26264): at org . whispersystems . jobqueue . JobConsumer . runJob(JobConsumer . java:72)
W/MmsDownloadJob(26264): at org . whispersystems . jobqueue . JobConsumer . run(JobConsumer . java:46)
Here are the debug logs of the native messaging app
Code:
D/GCM ( 1704): GcmService start Intent { act=android . net . conn . CONNECTIVITY_CHANGE flg=0x4000010 cmp=com . google . android . gms/ . gcm . GcmService (has extras) } android . net . conn . CONNECTIVITY_CHANGE
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=104
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=5006
I/iu . Environment( 1611): update connectivity state; isNetworkMetered? true, isRoaming? false, isBackgroundDataAllowed? true
D/ConnectivityReceiverDelegate( 4236): action: android . net . conn . CONNECTIVITY_CHANGE connected: true
W/MmsListener(26264): Got MMS broadcast . . . android . provider . Telephony . WAP_PUSH_RECEIVED
W/PduParser(26264): parse() called . . .
W/PduParser(26264): Message Type: 130
D/TransactionService(17861): beginMmsConnectivity
V/TransactionService(17861): beginMmsConnectivity: result=1
D/QcConnectivityService( 879): startUsingNetworkFeature reconnecting to 0: enableMMS
D/QcConnectivityService( 879): startUsingNetworkFeature X: return APN_REQUEST_STARTED
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=458752
D/MobileDataStateTracker( 879): mms: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=mms
D/MobileDataStateTracker( 879): mms: Received state=CONNECTING, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): mms: setDetailed state, old =IDLE and new state=CONNECTING
D/MobileDataStateTracker( 879): fota: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=fota
D/MobileDataStateTracker( 879): fota: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): dun: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=dun
D/MobileDataStateTracker( 879): dun: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): supl: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=supl
D/MobileDataStateTracker( 879): supl: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): hipri: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 879): hipri: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): ims: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=ims
D/MobileDataStateTracker( 879): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): cbs: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=cbs
D/MobileDataStateTracker( 879): cbs: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataEnabled
D/MobileDataStateTracker( 879): mms: Broadcast received: android . intent . action . ANY_DATA_STATE apnType=mms
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=458752
D/ConnectivityServiceHSM( 879): ConnectivityChange for mobile_mms: CONNECTED/CONNECTED
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=5001
D/MobileDataStateTracker( 879): mms: Received state=CONNECTED, old=CONNECTING, reason=dataEnabled
D/MobileDataStateTracker( 879): mms: setDetailed state, old =CONNECTING and new state=CONNECTED
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
V/ ( 270): RouteController
D/Nat464Xlat( 879): requiresClat: netType=2, hasIPv4Address=true
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/ConnectivityServiceHSM( 879): Actual State: DefaultConnectivityState, Current State: DefaultConnectivityState . processMessage what=112
D/MobileDataStateTracker( 879): default: setPolicyDataEnable(enabled=true)
W/NetworkPolicy( 879): shared quota unsupported; generating rule for each iface
and just for completeness here are my apn settings
Code:
Name: STRAIGHT_TALK
APN: tfdata
Proxy: proxy . mvno . tracfone . com
Port: 80
MMSC: http : //mms-tf . net
MMS proxy: mms3 . tracfone . com
MMS port: 80
MCC: 310
MNC: 410
APN type: default,mms,supl
APN protocol: IPv4
APN roaming protocol: IPv4
anything not listed is unset.
the field for proxy was one that was provided from their customer support.
any working cases of MMS on Straight talk with Z3c
I am still having problems with my MMS messages, with several daily continuous calls with Straight talk support.
Does anybody have a working MMS on Straight talk with the Z3 compact?
I'm hoping to find out if the problem is inherent with the phone or some problems with my configuration.
GoldenStake said:
I am still having problems with my MMS messages, with several daily continuous calls with Straight talk support.
Does anybody have a working MMS on Straight talk with the Z3 compact?
I'm hoping to find out if the problem is inherent with the phone or some problems with my configuration.
Click to expand...
Click to collapse
The error is 'HTTP/1.1 504 Gateway Time-out' which means that the connection to the mms proxy (mms3.tracfone.com / 66.209.11.33) is good but the proxy didn't receive a response from http://198.228.238.80:8009 when it was attempting to download the MMS content.
This could be because the proxy doesn't have a route to 198.228.238.80, which would indicate a mis-configuration (i.e. the wrong proxy being used, for example.)
There are a number of different MMS settings out there for StraightTalk (here), I would just keep trying different ones until you find the one that works.
If you post the logs for each (you can use http://pastebin.com for that) I'll look at each and try to determine what is or isn't working. The logs from TextSecure app seem to provide better debug information.
I don't think it's an issue with the phone itself.
I could never get MMS to work with Straight Talk and my Z3C until I found these settings;
Straight Talk APN settings
Remember to restart your phone after entering the settings.
kandelai said:
I could never get MMS to work with Straight Talk and my Z3C until I found these settings;
Remember to restart your phone after entering the settings.
Click to expand...
Click to collapse
I have the same results with even with these apn settings.
looking at the logs it seems that nothing much has changed
pastebin.com/LDJVZM3N
I'll keep trying different APN settings.
But just knowing that somebody has had mms working on Z3c with straight talk AT&T, provides some relief.
Sorry it did not work. Just checking that you deleted all other APN settings while trying? Also, is your Z3C a US version firmware or international version?
SUCCESS
I did it, I found my beloved APN settings.
Somebody who was also using Straight Talk AT&T on Z3compact replied to my reddit post. the only thing was that they were using the Textra App.
Apparently Textra maintains their own APN Database, and it's values worked for my phone.
By watching the logs I learned that the correct APN settings for my phone are
APN: tfdata
MMSC: http ://mmsc.mobile.att.net
MMS proxy: proxy.att.net
MMS port: 80
everything else is default
Revisiting this old thread. I upgraded my phone to Lollipop and noticed that I could no longer receive or send attachments or pics via text/mms of any kind with Straight Talk using the APN settings I posted above. Not sure if it was actually Lollipop or a change in ST services happening around the same time ?? Whatever the case, after trying MANY different APN settings, this now worked for me;
APN: tfdata
MMSC: http://mms-tf.net
MMS PROXY: mms3.tracfone.com
MMS PORT: 80
APN Type: default,admin,fota,mms,supl,hipri