Related
***Informative Threads***Post your question / issue / success story / etc. in the appropriate threads instead of starting a new thread!
Do NOT post a new thread to ask a QUESTION!!!
If your post has a question mark in it, you most likely need to post your thread in the Q&A Section
Please follow xda-developers forum rules and be courteous to all members.
Common sense goes a long way -- if in doubt check out All~G1's pointers on Dev Forum Etiquette
[Build Indexes] - Don't ask which build is best -- choose for yourself based on the features you desire!
androidspin.com
SimonNWalker & a group of Android Community members are maintaining a site which showcases the feature sets of the latest and greatest android builds ("roms" if you prefer). Check here to see "which is best" and try them out for yourself. The site is also ripe with news about Android development and more. XDA Thread
Google Docs Build Spreadsheet - View and edit build info - Google Docs Build Spreadsheet
[Guides/Tutorials/Info]
HTC Dream overview and useful information - Wiki article
Highly recommended for beginners.
In the beginning... There was ROOT
Lots of good definitions, history, and an excellent overview of most things going on here.
SPLs for DREA100 & DREA110 (Orig, Eng, Hard)
Contains information and downloads for SPLs (Secondary Program Loader) for the Dream. A modded SPL is instrumental in restoring from backup, preventing a brick, applying builds designed for foreign markets, etc.
Nandroid v2.0 - Full NAND backup and restore tool
In-depth discussion of your best friend whilst modding your android device. A good Nandroid backup regimen will pay dividends to keep you up and running.
Basic adb/root commands for noobs
Using ADB and terminal commands for your Android phone.
Surviving a Data Wipe / Update (Reduces Force Closes, too!)
Save (most of) your data while switching between builds (wipes are not your enemy!!)
Cyanogen's recovery partition
Amon_Ra's Recovery Partition
Modded recovery and boot images
SDSPLIT repartition your SDcard on phone (w/o a PC) - NOW handles > 2G FAT!!!
An easy way to re-partition your SD card without a PC.
LucidREM's Latest JF mod scripts
The swiss army knife of build customization
Auto-lucid script by tehseano
Let's fix that SPL Pay attention too post 3
Report in here if your phone is unresponsive after applying the 1.33.2005 SPL released by Haykuro. If you can get into Recovery or the SPL bootloader screen (three skateboarding androids), this is not you.
ROM guide for HTC Dream
T-Mobile G1 User Guides/Manuals
HTC Dream Wiki
"Brick" Thread or Technical Think Tank for Bricked G1's
If your phone is stuck at your splash screen (most likely a big white "G1")...if you you think something is broken...if you otherwise think you have a brick, post here instead of starting a new thread and any online members will do everything they can to help you out. (Reading as much as possible of these threads before posting will give you lots of insight as well!!)
Benchmark your build (apps thread)
[HOW TO]
STOCK-2-CYANOGEN / Root, Recovery, Radio, Rom / Partition SD / FAQ
How To Partition SD Card With Ubuntu For Dummies
Partition sdcard w/parted,goto ext3/4 & install rom from adb. no liveCD req'd
UNROOT, get phone to STOCK firmware
Reverting back to stock firmware.
New and improved Apps to SD(more stable, more powerful, etc)
The latest tutorial on how to get apps to SD.
Convert and mount ext2 sd partition ( /system/sd ) to ext3
Tools and instructions to add journaling to your ext sd card partition (apps2sd, etc). trust me, journaling is a good thing!
Register the G1 without a sim or data plan
Increase Max Volume -- Automated, no reboot needed
ADB for Dummies Supported Operating Systems Drivers and SDK
Get Home Auto Rotate on JFv1.51
Unpack, Edit, and Repack Boot Images
Create and edit "recovery" and "boot" .img files -- this thread is not for splash images.
Custom SPLASH Image
Replace that G1 splash logo that displays when your device turns on.
Alternative way to creating a SPLASH image
View Man Pages in terminal / adb shell
Mount SD card in recovery via adb
Use ash as your login shell
[MOD]user configurable userinit.sh V0.1.4.1 for CM
config file for setting up compcache, tweaks, etc. at boot
[How to] mount SD card in recovery.
Ported Hero Programs:
HTC Camera
HTC Music
***Developer Links***
Developers - Instead of maintaining a list of builds, I've changed this list to include links to your publications (blog, twitter, main release thread, etc.) let me know when / if you want these modified or if any should be added -- I'm sure I've missed some of you!
JesusFreke's Blog
Haykuro's Blog
TheDudeOfLife's google code page
Cyanogen's Twitter
TwistedUmbrella's Twitter
justanothercrowd's twitter
Stericson's twitter
For links / info on particular builds, check out the AndroidSpin or the Google Docs Build Spreadsheet
This index will be updated as needed.
Please keep comments on topic!
-Thread Stuck-
Other stickies un-stuck.
Please do not post in this thread unless you have a suggestion on how to improve it. Off topic and dealt with requests will be deleted without warning.
Oh, and thanks alapapa.
Enjoy
Dave
An improvement
The Threads should be in catagories.
Such as:
[How To]
1
2
3
[Guides/Tuts]
1
2
3
[Info]
1
2
3
and so on with different catagories.
something like that would be helpful to this post to quickly find relevent topics.
Thanks for reading.
here is a pretty sweet guide to android OS development, hopefully someone will find it useful
http://pdk.android.com/online-pdk/guide/index.html
I just thought I would whip up a quick informational post here regarding people saying "this does not work", or "this app FCs", etc. Posting something that just says "this is not working" tells us absolutely nothing. We need more information, and that is why God (Google) invented adb and logcat.
I am going to assume that to get to this point, you at least have ADB configured correctly. If not, do it. You can find detailed instructions here: http://forum.xda-developers.com/showthread.php?t=532719.
Once you have that set up and configured correctly, you can begin to post more informative posts in regards to something not working.
'logcat' is your best friend. Do not be afraid to use it. All you need to do is run 'adb logcat' from your command prompt. If ever I am at my desk, I have my phone plugged in and logcat running to see what is going on in the background. Normally, you will just see the standard items such as resource allocation, email queries, and things relating to applications you have running.
At the beginning of each line in logcat, you will see I/, D/, W/, or E/. They designate what type of message it is.
I: Information
D: Debug
W: Warning
E: Error
When an application crashes, you will see a lot of D/ and E/ lines, with some W/ thrown in for good measure. That is the information that is needed to help diagnose the problem, and hopefully create a fix for it.
Here is an example of a helpful logcat that should be posted when you say "it no workie":
Code:
I/ActivityManager( 277): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.google.androi
d.apps.googlevoice/.SplashActivity }
I/ActivityManager( 277): Starting activity: Intent { cmp=com.google.android.app
s.googlevoice/.LoginActivity (has extras) }
W/ResourceType( 441): No package identifier when getting name for resource numb
er 0x00000000
E/JavaBinder( 441): *** Uncaught remote exception! (Exceptions are not yet sup
ported across processes.)
E/JavaBinder( 441): android.content.res.Resources$NotFoundException: String res
ource ID #0x0
E/JavaBinder( 441): at android.content.res.Resources.getText(Resources.java:
200)
E/JavaBinder( 441): at android.content.res.Resources.getString(Resources.jav
a:253)
E/JavaBinder( 441): at android.content.Context.getString(Context.java:149)
E/JavaBinder( 441): at com.google.android.googleapps.GoogleLoginService$Acco
untAuthenticatorImpl.getAuthTokenLabel(GoogleLoginService.java:586)
E/JavaBinder( 441): at android.accounts.AbstractAccountAuthenticator$Transpo
rt.getAuthTokenLabel(AbstractAccountAuthenticator.java:155)
E/JavaBinder( 441): at android.accounts.IAccountAuthenticator$Stub.onTransac
t(IAccountAuthenticator.java:123)
E/JavaBinder( 441): at android.os.Binder.execTransact(Binder.java:287)
E/JavaBinder( 441): at dalvik.system.NativeStart.run(Native Method)
I/ActivityManager( 277): Displayed activity com.google.android.apps.googlevoice
/.LoginActivity: 158 ms (total 158 ms)
I/DumpStateReceiver( 277): Added state dump to 1 crashes
D/dalvikvm( 894): GC freed 365 objects / 24000 bytes in 132ms
That information may not provide every piece of information we need, but it gives a good starting point as to where to begin to look.
EDIT: If this needs to be put into another location or shouldn't be posted to begin with, feel free to move/delete it.
Custom thread
Threads should be in a bulleted format indicating first the subject which is to be discussed. Under it lies the sub bullets in which gives information to the subject as well as the problem to be solved. Facts should be stated then the resolution would come last. Just like solving a simple problem.
theblogpostwriters.com
I'm trying to get JACxHERO 1.1 from over on the Dream boards running on my 32B. So I've been trying to follow the procedure that dazcox51 described in his post below
http://forum.xda-developers.com/showthread.php?t=539052
(for those who can't be bothered to take the jump, it's basically a case of unpacking the boot.img, renaming init.trout.rc to init.sapphire.rc, and then packing it all up again, resigning the update.zip, and flashing)
I've managed to flash, it starts to boot - and then I get a reboot loop.
Logcat shows the following. There's more, but I think the pertinent part is:
Code:
I/SystemServer( 137): Starting NetStat Service.
I/SystemServer( 137): Starting Connectivity Service.
W/dalvikvm( 137): threadid=23: thread exiting with uncaught exception (group=0x4000fe70)
E/AndroidRuntime( 137): Uncaught handler: thread ConnectivityThread exiting due to uncaught exception
E/AndroidRuntime( 137): *** EXCEPTION IN SYSTEM PROCESS. System will crash.
E/AndroidRuntime( 137): java.lang.NullPointerException
E/AndroidRuntime( 137): at android.app.ActivityThread.getProvider(ActivityThread.java:3689)
E/AndroidRuntime( 137): at android.app.ActivityThread.acquireProvider(ActivityThread.java:3718)
E/AndroidRuntime( 137): at android.app.ApplicationContext$ApplicationContentResolver.acquireProvider(ApplicationContext.java:1473)
E/AndroidRuntime( 137): at android.content.ContentResolver.acquireProvider(ContentResolver.java:576)
E/AndroidRuntime( 137): at android.content.ContentResolver.query(ContentResolver.java:144)
E/AndroidRuntime( 137): at android.provider.Settings$NameValueCache.getString(Settings.java:472)
E/AndroidRuntime( 137): at android.provider.Settings$Secure.getString(Settings.java:1759)
E/AndroidRuntime( 137): at android.provider.Settings$Secure.getInt(Settings.java:1799)
E/AndroidRuntime( 137): at com.android.server.ConnectivityService.getPersistedNetworkPreference(ConnectivityService.java:186)
E/AndroidRuntime( 137): at com.android.server.ConnectivityService.<init>(ConnectivityService.java:127)
E/AndroidRuntime( 137): at com.android.server.ConnectivityService.<init>(ConnectivityService.java:51)
E/AndroidRuntime( 137): at com.android.server.ConnectivityService$ConnectivityThread.run(ConnectivityService.java:91)
Does anyone have any bright ideas?
There is more, but unfortunately the board won't let me post it. I'll put it in a second post, just in case it's relevant.
It's not letting me post the entire logcat, it tells me the post is too long. I'm pretty sure I've got the relevant bit. If anyone wants the whole thing, drop me a PM and I'll mail it. To be it looks network related but must confess I'm just fumbling around here.
Just out of curiosity, I flashed the original Dream ROM without changing it. I got the same reboot loop so I think I'm missing something fundamental and/or obvious.
Am no geewiz as this stuff but have you tried using the kernel from the existing hero roms and use it for the jacxhero port?
If its happening even with an untouched download i think you downliad is bad.
If your on osx did you replace cpio maybe that codrupted some files?
Ive tried all the drizzy/jacxhero releases with no issues
bhav007 said:
Am no geewiz as this stuff but have you tried using the kernel from the existing hero roms and use it for the jacxhero port?
Click to expand...
Click to collapse
I think I will try that as an experiment, but I don't really want to do that as a "release" ROM, as the whole point of this is to see if we can get a decent Compcached version of Hero running on the Magic. If I just whack in (for example) Qtek's boot.img I suspect that, if it worked, we'd end up with a ROM that has the same shortcomings (i.e. unreliable texts due to memory shortages, and a kernel that runs Compcache slower than a swap!).
dazcox5181 said:
If its happening even with an untouched download i think you downliad is bad.
If your on osx did you replace cpio maybe that codrupted some files?
Ive tried all the drizzy/jacxhero releases with no issues
Click to expand...
Click to collapse
Yep, on OSX but did replace cpio. Brand new SD card, 8Gb class 6, partitioned with the latest Amon Ra recovery image.
Will try a new download but I'd be surprised if it was that, because I can unzip/rezip it all just fine.
I don't believe this - it looks like it's my new SD card. Qtek's ordinarily working ROM dies with the same error (albeit before it gets to the Hero loading screen) if I try to boot it with that card in. Have tried with a single fat32 partition and also with the usual three partitioned fat32/ext2/swap scenario.
The card seems to work fine plugged into my Mac and also from within the recovery image on the Magic. I think I'll start a new thread on this as it has naff all to do with JACxHERO it seems.
Hi all.
Cause I don't see any post about the porting of CaNNoN202 Complete Eclair ROM on 32A devices, I decided to open one and share my own port files.
A special thanks to bcrook, cyanogen, KingKlick, wesgarner, Sanpei, Firerat, ahmgsk and to all devs.
Please see the following link for details on the ROM:
http://forum.xda-developers.com/showthread.php?t=633957
Instructions:
- download the ROM from the link above
- download the correct porting file for your radio/spl
- put the .zip files on your SD card
- reboot in recovery
- make a backup
- flash the ROM file and next the porting (v1.2) or flash the ROM that include the porting (v2.0)
- reboot and enjoy
Partition Layout
- Fat 32
- Ext 1-4
- Linux-Swap
I am not responsible to whatever happens to your phone.
Change Log
2.6.33 kernel (for old radio only)
v2.0 (Black) new radio
v2.0 new radio
- Sanpei's Kernel .32
- Updated Youtube, GenieWidget, StreetView, Wired and Wireless tether to the latest version
- Added Brut.all Maps
- 3D enable
- Both 3DGallery and standard are present
- Something else that i don't remember
- Camcorder working but cannot reproduce what you have recorded
- YouTube low res don't work
- Some issue with certain lwp
v2.0 old radio
- Updated Youtube, GenieWidget, StreetView, Wired and Wireless tether to the latest version
- Added Brut.all Maps
- 3D enable
- Both 3DGallery and standard are present
- Something else that i don't remember
- Camcorder doesn't work
- YouTube low res doesn't work
- Some issue with certain lwp
OLD PORTINGS:
3Dfix old radio -> flash V.1.2_3D old radio and then this fix
- Kernel recompiled (faster than before)
- 3D fix
- Issues with certain lwp
3Dfix new radio/spl -> flash V.1.2_3D new radio/spl and then this fix
- 3D fix
- Issues with certain lwp
V.1.2_3D old radio
- WG Kernel #4
- Youtube HD and 3D working
- Updated Youtube, GenieWidget and StreetView to the latest version (Passion one)
- Updated Wired and Wireless tether
- Added Brut.all Maps
- Fixed wifi and facebook problems
- Something else that i don't remember
- Camcorder not working
- Some issue with certain lwp
V.1.2r1_3D new radio/spl
- Sanpei Kernel
- Youtube HD, 3D, camera and GPS working now
- Updated Youtube, GenieWidget and StreetView to the latest version (Passion one)
- Updated Wired and Wireless tether
- Added Brut.all Maps
- Fixed wifi and facebook problems
- Something else that i don't remember
Do u have port for new radio/spl?
thanks.
Sorry, old radio only.
are there any specifications for the radio or spl?or recovery?
plus and minus for this rom?
hehe
THX
For radio and recovery you can see my signaure, for spl not sure if it's required an Engineering one.
Do the Nexus Live Wallpapers work, not just the ones you download?
All live wallpapers are working.
Not very stable... Already reboot twice wile i was configurating the apn
Reboot again and again and again... Not possible to use my phone more than 5minutes before a reboot!
Any idea of the cause ?
Strange, no reboot by my side.
Do you have a log just before rebooting?
do i need to use ports if i already have radio and spl installed already
How can I get the log? I've done a restore to my original rom but I'm ok to test yours again
DjMafio said:
How can I get the log? I've done a restore to my original rom but I'm ok to test yours again
Click to expand...
Click to collapse
Connect the phone to usb, turn it on and then in shell the command "adb logcat"
And see if before restart it reports something strange.
Tnx
thatruth132 said:
do i need to use ports if i already have radio and spl installed already
Click to expand...
Click to collapse
If you have a 32a device and want to use this ROM you need to flash the port file.
MasterOSX said:
Connect the phone to usb, turn it on and then in shell the command "adb logcat"
And see if before restart it reports something strange.
Tnx
Click to expand...
Click to collapse
Ok I'll do that and I'll tell you the results
Okay I paste the few last lines before the reboot! I hope that will help you!
I/ActivityManager( 3107): Start proc com.android.email for broadcast com.android
.email/com.android.exchange.BootReceiver: pid=3378 uid=10009 gids={3003, 1015}
D/installd( 3089): DexInv: --- BEGIN '/system/app/Email.apk' ---
D/dalvikvm( 3399): DexOpt: load 258ms, verify 1904ms, opt 71ms
D/installd( 3089): DexInv: --- END '/system/app/Email.apk' (success) ---
I/ActivityThread( 3378): Publishing provider com.android.email.provider: com.and
roid.email.provider.EmailProvider
I/ActivityThread( 3378): Publishing provider com.android.email.attachmentprovide
r: com.android.email.provider.AttachmentProvider
D/Exchange( 3378): BootReceiver onReceive
D/EAS SyncManager( 3378): !!! EAS SyncManager, onCreate
D/EAS SyncManager( 3378): !!! EAS SyncManager, onStartCommand
D/EAS SyncManager( 3378): !!! EAS SyncManager, stopping self
I tryied again...
D/VoiceDialerReceiver( 3025): onReceive Intent { act=android.intent.action.PACKA
GE_CHANGED dat=package:com.android.setupwizard flg=0x20000000 cmp=com.android.vo
icedialer/.VoiceDialerReceiver (has extras) }
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
700e4
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20031
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20030
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
50000
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
50000
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20005
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20004
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
80000
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20040
W/ResourceType( 2732): Resources don't contain package for resource number 0x7f0
20041
D/HomeLoaders( 2844): ----> items cloned, ready to refresh UI
D/dalvikvm( 3025): GC freed 955 objects / 72912 bytes in 88ms
D/dalvikvm( 2844): GC freed 5345 objects / 308136 bytes in 163ms
D/dalvikvm( 2844): GC freed 999 objects / 50296 bytes in 130ms
The log isn't useful, nothing strange before reboot.
As soon as I come home I'll try to reproduce your problem.
If someone else have feedback please post them.
ok so im on CursorSense32A-1.2.6.1 - RADIO 6.35.07.29
1.76.2007 SPL for Hero - Custom Recovery RA-Magic32A-6.35-v1.5.2
on a 32a device
all i do is ..a full wipe ..make backup ...flash the rom from link posted ...then flash port...
thatruth132 said:
ok so im on CursorSense32A-1.2.6.1 - RADIO 6.35.07.29
1.76.2007 SPL for Hero - Custom Recovery RA-Magic32A-6.35-v1.5.2
on a 32a device
all i do is ..a full wipe ..make backup ...flash the rom from link posted ...then flash port...
Click to expand...
Click to collapse
You have the wrong radio and spl for this porting, don't try it.
This evening I'll try to make a port for "new" radio/spl.
Hello everyone,
I'm facing a quite strange and annoying issue on a TF700T.
No matter which ROM I'm running with, Google Play tells me updates need to be done, which is normal. When I start the updates, the downloads pause at 4% for most of them, and will never end, even after 4 days of activity.
A tablet on which you cannot download content to, or install apps is not very usefull.
The problem is the same with other download types (if I browse on the navigator, to download a ROM.zip, download starts and stops at 4%)
A friend gave me this tablet with Cromi-X insttaled on it. I first thought it was a ROM issue, so I flashed CM11 stable version, just to see.
Problem is the same.
I tried with different google accounts, I cleared Google Play cache services.
No effect.
I also flashed the ASUS original firmware using the SD card mthod, and problem is still there.
I'm short on ideas now, I've looked in XDA forum, but never found a thread with similar issues.
Tablet is currently running Android 4.1.1 WW10.4.4.25-20121228 A03 and unlocked
Thank you very much for your help or advices,
Nicolas
Hi again,
I have made progress on this strange issue.
I finally managed to get google play and downloads to work, but I have to use a vpn client so it can work.
I tried VPN Hideninja.
And, I have the issue no matter which rom/ android version I use.
So, it's a workaround, but at least it allows the tablet to be "usable".
Does someone has any ideas where the problem could come from? (bad kernel version?...)
Or, maybe someone knows a tool to check Android configuration issue, network configuration (I've searched but didnn't find something yet, but I keep trying )
Thank you for your help
Nicolas
Hi,
I installed cromi-X on the tablet and combi-kk as rom2Sd. Bith rom start, but I still have the issues with the playstore.
Does anyone know a tool to perform a hardware check?
If I want to completely clean the tablet, what would you advise ? Right now I'm trying to figure out if the problem is hardware or software.
Thank you for your help
Nicolas
nvuillem said:
Hi,
I installed cromi-X on the tablet and combi-kk as rom2Sd. Bith rom start, but I still have the issues with the playstore.
Does anyone know a tool to perform a hardware check?
If I want to completely clean the tablet, what would you advise ? Right now I'm trying to figure out if the problem is hardware or software.
Thank you for your help
Nicolas
Click to expand...
Click to collapse
Search how to do a logcat over adb and post the resulting text file. Do it after you attempted to download something.
sbdags said:
Search how to do a logcat over adb and post the resulting text file. Do it after you attempted to download something.
Click to expand...
Click to collapse
Hi Sdbags, first of all thank you for your interest.
I've made 3 logcatfiles:
#1 on the rom2sd crombi-kk before downloading. logcatkkStartUp.txt
#2 after stopping downloading as it was frozen. logcatkkDLFails.txt
#3 same as #2 but running on cromi-X on the internal memory of the pad logcatX.txt
I believe this is not looking good:
W/NetworkManagementSocketTagger( 1280): untagSocket(94) failed with errno -22
I/qtaguid ( 1280): Failed write_ctrl(u 56) res=-1 errno=22
I/qtaguid ( 1280): Untagging socket 56 failed errno=-22
Thanks again for your help,
Thank you
Nicolas
nvuillem said:
Hi Sdbags, first of all thank you for your interest.
I've made 3 logcatfiles:
#1 on the rom2sd crombi-kk before downloading. logcatkkStartUp.txt
#2 after stopping downloading as it was frozen. logcatkkDLFails.txt
#3 same as #2 but running on cromi-X on the internal memory of the pad logcatX.txt
I believe this is not looking good:
W/NetworkManagementSocketTagger( 1280): untagSocket(94) failed with errno -22
I/qtaguid ( 1280): Failed write_ctrl(u 56) res=-1 errno=22
I/qtaguid ( 1280): Untagging socket 56 failed errno=-22
Thanks again for your help,
Thank you
Nicolas
Click to expand...
Click to collapse
Well there are some hints in there. As this happens on every rom I'm going to stick my neck out and say it's nothing to do with the ROM you in stall
The below appears to be trying to update Google Street View.
Code:
I/GoogleHttpClient( 832): Falling back to old http client 0 java.lang.NoSuchMethodException: <init> [class android.content.Context, class java.lang.String, boolean]
D/SurfaceControl( 622): Excessive delay in blankDisplay() while turning screen off: 107ms
W/ActivityThread( 832): ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());
I/auditd ( 9847): Starting up
E/auditd ( 9847): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9847): Exiting
I/auditd ( 9850): Starting up
E/auditd ( 9850): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9850): Exiting
I/auditd ( 9853): Starting up
E/auditd ( 9853): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9853): Exiting
I/auditd ( 9858): Starting up
E/auditd ( 9858): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9858): Exiting
I/auditd ( 9863): Starting up
E/auditd ( 9863): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9863): Exiting
D/Finsky ( 2075): [1] DownloadQueueImpl.notifyProgress: com.google.android.street: onProgress 185420/264451 Status: 192.
D/MarketUpdateReceiver( 9689): market is downloading (0%): com.google.android.street
I/DownloadManager( 1842): Download 22 starting
D/MarketUpdateReceiver( 9689): market is downloading (0%): com.google.android.street
I/auditd ( 9871): Starting up
E/auditd ( 9871): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9871): Exiting
I/auditd ( 9876): Starting up
E/auditd ( 9876): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9876): Exiting
I/auditd ( 9879): Starting up
E/auditd ( 9879): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9879): Exiting
I/auditd ( 9882): Starting up
E/auditd ( 9882): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 9882): Exiting
D/MarketUpdateReceiver( 9689): market is downloading (0%): com.google.android.street
W/DownloadManager( 1842): Aborting request for download 22: Failed reading response: java.net.SocketTimeoutException
I/DownloadManager( 1842): Download 22 finished with status WAITING_TO_RETRY
auditd is the Selinux logging facility... Protocol not supported means Linux kernel is missing the SELinux protocol...
So possibly you are on an older bootloader that doesn't support the right kernel ....
What bootloader and version of TWRP are you on exactly?
AH WE HAVE A WINNER
Tablet is currently running Android 4.1.1 WW10.4.4.25-20121228 A03 and unlocked
You need to update your bootloader and TWRP. Flash my update package from the CROM-X first post and then follow the instructions to move to a later TWRP if you want to try a CM11 base
Hi Sdbags,
upon startup, bootloader version shows "WW_epad-10.6.1.14.4-20130329" A03, and TWRP is v2.6.3-that3.
I can atach pictures if you want.
Ciould it be that a part of the tablet has the right bootloader version, and another part d not have that correct version?
Thank you for your help
Nicolas
nvuillem said:
Hi Sdbags,
upon startup, bootloader version shows "WW_epad-10.6.1.14.4-20130329" A03, and TWRP is v2.6.3-that3.
I can atach pictures if you want.
Ciould it be that a part of the tablet has the right bootloader version, and another part d not have that correct version?
Thank you for your help
Nicolas
Click to expand...
Click to collapse
Do me a favour and flash my package and then upgrade to TWRP 2.6.3-that3. There is flashable version of that in my CROMBi-kk thread. Then we know you are on the latest bootloader and recovery.
Also you seem to be using bluetooth at the same time. That doesn't work well on these devices. Turn off bluetooth as well and let's get the wifi working.
51189868998
sbdags said:
Do me a favour and flash my package and then upgrade to TWRP 2.6.3-that3. There is flashable version of that in my CROMBi-kk thread. Then we know you are on the latest bootloader and recovery.
Also you seem to be using bluetooth at the same time. That doesn't work well on these devices. Turn off bluetooth as well and let's get the wifi working.
Click to expand...
Click to collapse
Hi,
So I went to recovery, wiped everything except external SD. transfered using adb :
cm-4.4-20140309-CROMBikk4.4.2-tf700t_Signed.zip
install it, restart to crombikk (normal installation, not in rom2SD)
restarted to Android, and made a logcat.
Rebooted to recovery and flashed twrp-2.6.3-that3_Signed 1.zip
Rebooted to android and made a logcat
Finally, rebooted to recovery, installed crombi_kkgapps_20140312_Signed.zip and reboot to Android system, connected a google account and tried to download an app from Google. Bluetooth is off (I never switched it on in my previous logcats.)
I then started the playstore application, and Android Terminal Emulator installed correctly.
I then wanted to install a Google product, Chrome Browser in the logcat attached. Download starts and freezes at 9% for 2 minutes then increases to 24% and freezes again. The download is still pending.
I'll post the logcat of the tablet when download stops by itself or it completes. (let's hope it does but it is hanging for 10 minutes now)
Try clearing data and cache on the Play Store and Google Play Services and reboot.
nvuillem said:
Hi,
So I went to recovery, wiped everything except external SD. transfered using adb :
cm-4.4-20140309-CROMBikk4.4.2-tf700t_Signed.zip
install it, restart to crombikk (normal installation, not in rom2SD)
restarted to Android, and made a logcat.
Rebooted to recovery and flashed twrp-2.6.3-that3_Signed 1.zip
Rebooted to android and made a logcat
Finally, rebooted to recovery, installed crombi_kkgapps_20140312_Signed.zip and reboot to Android system, connected a google account and tried to download an app from Google. Bluetooth is off (I never switched it on in my previous logcats.)
I then started the playstore application, and Android Terminal Emulator installed correctly.
I then wanted to install a Google product, Chrome Browser in the logcat attached. Download starts and freezes at 9% for 2 minutes then increases to 24% and freezes again. The download is still pending.
I'll post the logcat of the tablet when download stops by itself or it completes. (let's hope it does but it is hanging for 10 minutes now)
Click to expand...
Click to collapse
Are you sure it's not your router?
sbdags said:
Are you sure it's not your router?
Click to expand...
Click to collapse
Hi,
I tried to download from 3 different locations, with 3 different ISP and modems, and the problem is the same.
I also tried to Clear cache and data of Google services and PlayStore. I still have the problem.
Yesterday, when I flashed everything to reinstall the Rom and the recovery on proper basis, I noticed that some directories are not wiped.
Maybe some files are missing?
Is there any way to restore those directory? (maybe doing a wipe data from the bootloader, but I read at many places that it is not advised...
I also tried to find an application or a thread to test the hardware of the tablet without any success
Thank you for your help
Nicolas
nvuillem said:
Hi,
I tried to download from 3 different locations, with 3 different ISP and modems, and the problem is the same.
I also tried to Clear cache and data of Google services and PlayStore. I still have the problem.
Yesterday, when I flashed everything to reinstall the Rom and the recovery on proper basis, I noticed that some directories are not wiped.
Maybe some files are missing?
Is there any way to restore those directory? (maybe doing a wipe data from the bootloader, but I read at many places that it is not advised...
I also tried to find an application or a thread to test the hardware of the tablet without any success
Thank you for your help
Nicolas
Click to expand...
Click to collapse
You could try a full internal sd card format from inside twrp - warning it can take up to 2 hours to complete. Make sure you have everything you want to keep and rom.zips on external sd as well.
sbdags said:
You could try a full internal sd card format from inside twrp - warning it can take up to 2 hours to complete. Make sure you have everything you want to keep and rom.zips on external sd as well.
Click to expand...
Click to collapse
Hi,
I did the full wipe from the factory (took 90 minutes )
I reinstalled the rom, and I stil have the problem (erro 495 most of the time)
I then downloaded and installed a VPN client and it works. ( I attached the logcat.txt)
There is still something I can't figure out, as it works using a VPN, the issue is probably not related to hardware, but software, and it is not related to the Rom or recovery.
Do you know if Google checks something like device ID when apps are dowloaded from the store?
Thanks
Nicolas
nvuillem said:
Hi,
I did the full wipe from the factory (took 90 minutes )
I reinstalled the rom, and I stil have the problem (erro 495 most of the time)
I then downloaded and installed a VPN client and it works. ( I attached the logcat.txt)
There is still something I can't figure out, as it works using a VPN, the issue is probably not related to hardware, but software, and it is not related to the Rom or recovery.
Do you know if Google checks something like device ID when apps are dowloaded from the store?
Thanks
Nicolas
Click to expand...
Click to collapse
If it works on a VPN then it is more likely related to your country and / or ISP and Google servers.
My skyrocket won't boot. It displays both Samsung logos (the plain and fancy ones) and the AT&T globe (with the flash animation thing) and plays the boot sound, but doesn't get past the globe-on-white screen. Log seems to indicate that boot sequence hangs at Account Manager. That is: The PackageManager sequence has problems, but seems to at least complete: log has both "[email protected]" and "[email protected]". Then there's "I/SystemServer( 519): Account Manager", but there's nothing like "[email protected]" (though I'm not sure whether there should be). That's where things kind-of stop, though dalvikvm's garbage collector keeps running like a champ.
I was updating some apps (4, I think) in Google Play Store when device suddenly rebooted. I don't even remember which apps were being updated. It looks like /data/system/users/0/package-restrictions.xml is corrupted. It also looks like the permissions got corrupted, too.
Any ideas? I believe I could flash a new ROM (adb, fastboot, recovery, download mode all work fine), but I'd like to fix this if I can. Also, I don't want to lose any data, and the tarballs from recovery don't even seem to work (data tarball @ 990 MB extracts to only 153 MB of actual files).
Device info: Rooted (SuperSU, Busybox). Custom recovery (PhilZ Touch). ROM is stock. Also: Xposed, Xprivacy. Again, recovery and download modes work fine.
Code:
D/Xposed ( 164): Starting Xposed binary version 58, compiled for SDK 16
D/Xposed ( 164): Phone: SAMSUNG-SGH-I727 (samsung), Android version 4.1.2 (SDK 16)
D/Xposed ( 164): ROM: JZO54K.I727UCMC1
D/Xposed ( 164): Build fingerprint: samsung/SGH-I727/SGH-I727:4.1.2/JZO54K/I727UCMC1:user/release-keys
I'm happy to post the entire logcat output, but it's 3354 lines. Some of the weird things in log:
Code:
...
I/Xposed ( 164): java.io.FileNotFoundException: /data/data/de.robv.android.xposed.installer/conf/modules.list: open failed: ENOENT (No such file or directory)
...
D/Kies ( 153): fail to get sys.boot_completed
...
W/Zygote ( 164): Class not found for preloading: android.database.sqlite.SQLiteCompiledSql
(MULTIPLE OF THESE)
...
W/ResourceType( 519): Failure getting entry for 0x7f020003 (t=1 e=3) in package 0 (error -75)
(LOT OF THESE)
...
E/PackageManager( 519): Error reading stopped packages: org.xmlpull.v1.XmlPullParserException: unterminated entity ref (position:TEXT @1:313 in [email protected])
...
I/dalvikvm( 519): Zip is good, but no classes.dex inside, and no .odex file in the same directory
W/PackageManager( 519): Exception reading jar: /system/framework/twframework-res.apk
W/PackageManager( 519): java.io.IOException: /system/framework/twframework-res.apk
...
I/BootTime( 519): Fail Safe scanning for:/system/app/SetupWizard.apk
(LOTS OF THESE)
...
E/Atfwd_Sendcmd( 231): Could not obtain AtCmdFwd service
(LOTS)
...
W/PackageManager( 519): Removing dangling permission: com.qualcomm.permission.ACCESS_LOCATION_API from package null
W/PackageManager( 519): Unknown permission android.permission.ACCESS_DEV_STORAGE in package com.sec.android.gallery3d
(LOTS OF THESE)
...
i think ur only option is to reset in recovery,, or if that fails a system wipe and then reflash rom, yup that sucks
do a backup first but that might corupted backup of the rom which might be useless but worth a shot.
vincom said:
i think ur only option is to reset in recovery,, or if that fails a system wipe and then reflash rom, yup that sucks
do a backup first but that might corupted backup of the rom which might be useless but worth a shot.
Click to expand...
Click to collapse
Thanks for replying. I was afraid you'd say that. I'll give that a shot, but I'm trying to back up some data first. Most stuff (e.g., contacts, calendar) is remote, so no problem there.
I'm having trouble with some local stuff, though. I've got voice memos and MMS/SMS. But I can't find:
+ call history / log ... Where is it? /data/data/com.android.[providers.]contacts only contain subdirs lib/. There are no files. Is it in with the mmssms.db? I can't even tell. Is this stored in the cloud, too?
+ text memos ... /data/data/com.sec.android.app.memo only contains lib/. There are no files. (Same with /data/data/com.sec.android.widgetapp.memo.) (I MAY have used OpenIntents Notepad, but its default directory is empty, too.)
Any ideas/suggestions/etc on where to find text memos and call history? And how about seeing what icons were on my home screen?
Also, the weird thing about the CWM tarballs is that they don't appear corrupt -- tar gives no errors, no warnings, etc. But the size of the data actually extracted is ridiculously less than the size of the tarball.
system = 567.1 MB ... extracts to 13.6 MB
data = 990.2 MB ... extracts to 153.3 MB
The extracted sizes change if I do another backup. And I used adb to push the data out, and it looks like I've gotten it all. This is just kinda strange.