[Question] Phone and Contacts.apk - Nexus One Themes and Apps

Very frustrated right now and have a question.
I'm trying to change the shortcut icon in Phone.apk and Contacts.apk. I created a MetaMorph for it. No problem, easy stuff.
Whenever I push the morph to /system/app/Contacts.apk or to Phone.apk all seems well. After I click on the icon for my contacts it says something along the lines of "Application not installed". Ok so I restart my phone... shortcut icons are gone, try to make new ones and Contacts or Phone isn't even there and I have no service carrier, 3G or anything.
Restore from nanodroid backup... Everything is good again... I adb pull the Contacts.apk file over on my notebook, only toss in the new ic_launcher_contacts.png file into the /res/drawable-hdpi folder. Easy enough and I got the png from the CM 5.0.6 Contacts.apk. Dimensions are the same, file size is almost same. adb shell stop, remount, push and get the same error, "Application is not installed". Reboot the phone and shortcut icon is gone, and can not create a new one since the Contacts isn't even in my list anymore of installed apps. So now I have phone service, 3G and all since I didn't mess with Phone.apk, but no contacts unless I go some long route.
Now I'm thinking that it's because I need to sign the apk before pushing it. Remove the META-INF folder from the apk, recertify the apk, push it and same as above.
What am I missing here, anybody please??
Thank you in advance!
PS
I did do a search but only found that the same thing happened with one person on Enother's ROM, no fix was posted, only restored a nanobackup and waited for a new ROM to be posted.
**EDIT**
I'm using 7zip to explore the apk files. I at no time fully extract the folder structure. Only copy over the one png I want to replace.

Check your logcat. when you push the modded apk something may be going wrong and the package does not get installed.

Here's the logcat when I use MetaMorph
Code:
I/MetaMorph( 545): Pick completed: /sdcard/AndroidThemes/phone_market_contacts/phone_market_contacts.xml
D/dalvikvm( 377): GC freed 1888 objects / 105240 bytes in 30ms
I/MetaMorph( 545): it is false
W/su ( 565): database_check_callback argc=1 name[0]=allow argv[0]=1
D/su ( 565): 10050 stericson.donaters.metamorph executing 0 /system/bin/sh
D/PackageManager( 114): Removing package com.android.contacts
D/PackageManager( 114): Services: com.android.contacts.util.EmptyService
D/PackageManager( 114): Activities: com.android.contacts.TwelveKeyDialer com.android.contacts.RecentCallsListActivity com.android.contacts.DialtactsActivity com.android.contacts.DialtactsContactsEntryActivity com.android.contacts.DialtactsFavoritesEntryActivity com.android.contacts.ContactsListActivity com.android.contacts.ContactsListActivity$JoinContactActivity com.android.contacts.ui.DisplayGroupsActivity com.android.contacts.ui.ShowOrCreateActivity com.android.contacts.ui.QuickContactActivity com.android.contacts.ContactShortcut alias.DialShortcut alias.MessageShortcut com.android.contacts.CallDetailActivity com.android.contacts.ViewContactActivity com.android.contacts.ui.EditContactActivity com.android.contacts.ContactOptionsActivity com.android.contacts.AttachImage com.android.contacts.ContactsLiveFolders$AllContacts com.android.contacts.ContactsLiveFolders$StarredContacts com.android.contacts.ContactsLiveFolders$PhoneContacts com.android.contacts.ImportVCardActivity com.android.contacts.ExportVCardycom.android.contacts.ContactsPreferences
D/PackageParser( 114): Scanning package: /system/app/Contacts.apk
I/PackageManager( 114): /system/app/Contacts.apk changed; collecting certs
D/PackageManager( 114): Scanning package com.android.contacts
D/PackageManager( 114): Shared UserID android.uid.shared (uid=10022): packages=[PackageSetting{460dffa0 com.android.providers.contacts/10022}, PackageSetting{460defa8 com.android.providers.userdictionary/10022}, PackageSetting{460da7d0 com.android.contacts/10022}, PackageSetting{460df920 com.android.globalsearch/10022}, PackageSetting{460e02b8 com.android.providers.applications/10022}]
E/PackageManager( 114): Package com.android.contacts signatures do not match the previously installed version; ignoring!
D/ActivityManager( 114): Uninstalling process com.android.contacts
D/ActivityManager( 114): Force removing process ProcessRecord{4630f720 216:android.process.acore/10022} (android.process.acore/10022)
I/Process ( 114): Sending signal. PID: 216 SIG: 9
I don't understand why it uninstalls it?

Thats the way it works.
Here is the issue I think:
E/PackageManager( 114): Package com.android.contacts signatures do not match the previously installed version; ignoring!

Thinking the only way around this is repacking up the entire theme with updated images and flash it all over again
Bought and tried BetterCut, but it didn't work for me. Kept getting FC's and telling me to reinstall because of OpenHome? Never had OpenHome installed before? Emailed the author informing them of this.
Anybody else know how to get this to work? Thanks for the help thus far britoso and hope something comes to mind on how to get this to work.
http://alldroid.org/threads/16103-Send-To-APK-for-Windows?highlight=Ted417
http://forum.xda-developers.com/showthread.php?t=482718
http://forum.xda-developers.com/showthread.php?t=503007
Above are some links I found useful in jairomeo's Ultimate Android Themeing Guide.

Tried these and they don't work either.
http://alldroid.org/threads/16850-Changing-In-Call-Background-Screen?p=576955#post576955
http://alldroid.org/threads/17039-Editing-APK-Files-for-Theme?p=580744#post580744

Could you provide some extra info on what your morph changes in Contacts.apk
Have you tried creating a new modded apk and signing that. (uninstall old, sign and push mod)

I'm trying now to get the originals uninstalled, but it won't let me. Looking for an app that will allow me to do this. Will deleting the apk's with Root Explorer from /system/app/ be the same as uninstalling it? Attached are the files I'm trying to change and the only thing I want changed are 1 png from each apk. LOL so frustrating! Editing framework-res.apk and Launcher2.apk is so much easier!!!

Wonder if its because CM uses Wysie's modded contacts app....

britoso said:
Wonder if its because CM uses Wysie's modded contacts app....
Click to expand...
Click to collapse
That doesn't affect this.

in 2.1 you do not need to sign the apk but you cannot just mod and push it. For Contacts.apk or Phone.apk you need to use zipalign (comes with the sdk).
Code:
zipalign -f 4 Contacts.apk NewContacts.apk
adb push NeContacts.apk /system/app/Contacts.apk
Follow the same methodology for Phone.apk
These are system apps, you do not need to remove the Manifest like you would with a Market app.

jairomeo said:
in 2.1 you do not need to sign the apk but you cannot just mod and push it. For Contacts.apk or Phone.apk you need to use zipalign (comes with the sdk).
Code:
zipalign -f 4 Contacts.apk NewContacts.apk
adb push NeContacts.apk /system/app/Contacts.apk
Follow the same methodology for Phone.apk
These are system apps, you do not need to remove the Manifest like you would with a Market app.
Click to expand...
Click to collapse
I really appreciate the input, thanks jairomeo! You too britoso
This is what I tried exactly...
adb pull Contacts.apk ./Contacts.apk
open Contacts.apk with 7zip, over-wright the old image with the new image (same dimensions and new image is from original CM 5.0.6)
zipalign -f 4 Contacts.apk NewContacts.apk (no errors and new file created)
adb remount
adb push NewContacts.apk /system/app/Contacts.apk
Reboot phone
Contacts and phone gone completely!!! Uninstalled according to logcat.
Logcat from the time I pushed Contacts.apk
Code:
D/PackageManager( 119): Removing package com.android.contacts
D/PackageManager( 119): Services: com.android.contacts.util.EmptyService
D/PackageManager( 119): Activities: com.android.contacts.TwelveKeyDialer com.android.contacts.RecentCallsListActivity com.android.contacts.DialtactsActivity com.android.contacts.DialtactsContactsEntryActivity com.android.contacts.DialtactsFavoritesEntryActivity com.android.contacts.ContactsListActivity com.android.contacts.ContactsListActivity$JoinContactActivity com.android.contacts.ui.DisplayGroupsActivity com.android.contacts.ui.ShowOrCreateActivitycom.android.contacts.ui.QuickContactActivity com.android.contacts.ContactShortcut alias.DialShortcut alias.MessageShortcut com.android.contacts.CallDetailActivity com.android.contacts.ViewContactActivity com.android.contacts.ui.EditContactActivity com.android.contacts.ContactOptionsActivity com.android.contacts.AttachImage com.android.contacts.ContactsLiveFolders$AllContacts com.android.contacts.ContactsLiveFolders$StarredContacts com.android.contacts.ContactsLiveFolders$PhoneContacts com.android.contacts.ImportVCardActivity com.android.contacts.ExportVCardAtivity com.android.contacts.ContactsPreferences
D/ActivityManager( 119): Uninstalling process com.android.contacts
D/ActivityManager( 119): Force removing process ProcessRecord{462ff0b8 372:android.process.acore/10022} (android.process.acore/10022)
I/Process ( 119): Sending signal. PID: 372 SIG: 9
D/ActivityManager( 119): Force finishing activity com.android.contacts/.DialtactsContactsEntryActivity
W/ActivityManager( 119): Activity HistoryRecord{460c6580 com.android.contacts/.DialtactsContactsEntryActivity} being finished, but not in LRU list
W/ResourceType( 119): Resources don't contain package for resource number 0x7f080000
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020047
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020048
W/ResourceType( 119): Resources don't contain package for resource number 0x7f050000
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020005
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020004
I/ActivityManager( 119): Start proc com.android.vending for broadcast com.android.vending/.PackageMonitorReceiver: pid=710 uid=10008 gids={3003}
W/ResourceType( 119): Resources don't contain package for resource number 0x7f0700e5
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020031
W/ResourceType( 119): Resources don't contain package for resource number 0x7f020030
W/ResourceType( 119): Resources don't contain package for resource number 0x7f050000
D/ActivityManager( 119): Received spurious death notification for thread [email protected]
I/WindowManager( 119): WIN DEATH: Window{46260b28 com.android.contacts/com.android.contacts.DialtactsContactsEntryActivity paused=true}
D/dalvikvm( 345): GC freed 4351 objects / 306832 bytes in 227ms
I/ActivityThread( 710): Publishing provider com.android.vending.SuggestionsProvider: com.android.vending.SuggestionsProvider
D/dalvikvm( 119): GC freed 12649 objects / 629504 bytes in 115ms
I/ActivityManager( 119): Start proc com.android.voicedialer for broadcast com.android.voicedialer/.VoiceDialerReceiver: pid=718 uid=10019 gids={3002}
D/VoiceDialerReceiver( 718): onReceive Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.android.contacts flg=0x20000000 cmp=com.android.voicedialer/.VoiceDialerReceiver (has extras) }
D/PackageParser( 119): Scanning package: /system/app/Contacts.apk
I/PackageManager( 119): /system/app/Contacts.apk changed; collecting certs
D/PackageManager( 119): Scanning package com.android.contacts
D/PackageManager( 119): Shared UserID android.uid.shared (uid=10022): packages=[PackageSetting{460cc5d0 com.android.providers.applications/10022}, PackageSetting{460cc2b8 com.android.providers.contacts/10022}, PackageSetting{460cb2c0 com.android.providers.userdictionary/10022}, PackageSetting{460cbc38 com.android.globalsearch/10022}, PackageSetting{460c6ae8 com.android.contacts/10022}]E/PackageManager( 119): Package com.android.contacts signatures do not match the previously installed version; ignoring!
?? ?? LOL this is so frustrating I can only laugh!! I'm past getting upset. I'd like to get this working, but at this point I'm past putting it on my "Need to do" list. Right now it's on my "Like to do eventually" list, so don't put too much thought into it. I'd like to figure it out only to help somebody else that runs into this exact same problem. Or to be put into your themeing guide jairomeo

Tried another way, been doing a lot of reading.
adb pull /system/app/Contacts.apk
Open Contacts.apk with 7zip and extract to a folder named Contacts
Replace said png file with new version
Highlight all contents of the Contacts folder and 7zip using "Store" mode in zip
Rename zip extension to apk
zipalign -f 4 Contacts.apk NewContacts.apk
adb remount
adb push NewContacts.apk /system/app/Contacts.apk
adb reboot
After reboot still not working. Phone and Contacts are uninstalled completely.
Logcat start when I pushed the apk:
Code:
D/PackageManager( 113): Removing package com.android.contacts
D/PackageManager( 113): Services: com.android.contacts.util.EmptyService
D/PackageManager( 113): Activities: com.android.contacts.TwelveKeyDialer com.android.contacts.RecentCallsListActivity com.android.contacts.DialtactsActivity com.android.contacts.DialtactsContactsEntryActivity com.android.contacts.DialtactsFavoritesEntryActivity com.android.contacts.ContactsListActivity com.android.contacts.ContactsListActivity$JoinContactActivity com.android.contacts.ui.DisplayGroupsActivity com.android.contacts.ui.ShowOrCreateActivitycom.android.contacts.ui.QuickContactActivity com.android.contacts.ContactShortcut alias.DialShortcut alias.MessageShortcut com.android.contacts.CallDetailActivity com.android.contacts.ViewContactActivity com.android.contacts.ui.EditContactActivity com.android.contacts.ContactOptionsActivity com.android.contacts.AttachImage com.android.contacts.ContactsLiveFolders$AllContacts com.android.contacts.ContactsLiveFolders$StarredContacts com.android.contacts.ContactsLiveFolders$PhoneContacts com.android.contacts.ImportVCardActivity com.android.contacts.ExportVCardActivity com.android.contacts.ContactsPreferences
D/ActivityManager( 113): Uninstalling process com.android.contacts
D/ActivityManager( 113): Force removing process ProcessRecord{463072e0 214:android.process.acore/10022} (android.process.acore/10022)
I/Process ( 113): Sending signal. PID: 214 SIG: 9
W/ResourceType( 113): Resources don't contain package for resource number 0x7f080000
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020047
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020048
W/ResourceType( 113): Resources don't contain package for resource number 0x7f050000
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020005
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020004
W/ResourceType( 113): Resources don't contain package for resource number 0x7f0700e5
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020031
W/ResourceType( 113): Resources don't contain package for resource number 0x7f020030
W/ResourceType( 113): Resources don't contain package for resource number 0x7f050000
I/ActivityManager( 113): Start proc com.android.vending for broadcast com.android.vending/.PackageMonitorReceiver: pid=561 uid=10008 gids={3003}
D/ActivityManager( 113): Received spurious death notification for thread [email protected]
D/dalvikvm( 186): GC freed 6988 objects / 381896 bytes in 232ms
I/ActivityThread( 561): Publishing provider com.android.vending.SuggestionsProvider: com.android.vending.SuggestionsProviderI/ActivityManager( 113): Start proc com.android.voicedialer for broadcast com.android.voicedialer/.VoiceDialerReceiver: pid=569 uid=10019 gids={3002}
D/VoiceDialerReceiver( 569): onReceive Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.android.contacts flg=0x20000000 cmp=com.android.voicedialer/.VoiceDialerReceiver (has extras) }
D/PackageParser( 113): Scanning package: /system/app/Contacts.apk
I/PackageManager( 113): /system/app/Contacts.apk changed; collecting certs
D/PackageManager( 113): Scanning package com.android.contacts
D/PackageManager( 113): Shared UserID android.uid.shared (uid=10022): packages=[PackageSetting{4605c8e0 com.android.providers.applications/10022}, PackageSetting{4605c5c8 com.android.providers.contacts/10022}, PackageSetting{46057a90 com.android.contacts/10022}, PackageSetting{4605bf48 com.android.globalsearch/10022}, PackageSetting{4605b5d0com.android.providers.userdictionary/10022}]
E/PackageManager( 113): Package com.android.contacts signatures do not match the previously installed version; ignoring!

since the problem is that the signatures dont match...
Have you tried:
1)uninstall the official contacts
adb uninstall com.android.contacts
2)install your modded+signed+zipaligned version.
adb install Contacts.apk

Not yet, didn't know the commands to install and uninstall were that obvious! LOL I thought it was something complicated Just got home and will give it a try after I relax with a Bud. My brain is fried and needs to unwind :s

I just used ninjamorph to update my icons. You might want to check that out.

Mi|enko said:
I just used ninjamorph to update my icons. You might want to check that out.
Click to expand...
Click to collapse
Appreciate the help and tried it. NinjaMorph is an amazing app! I love the idea behind it, but alas it didn't work either. Same effect, followed the on screen instructions, finish project and rebooted phone. No contacts or phone
Back to the drawing board.

Got it sorted, thanks all very much for your help. It turned out being a corruption issue or something. I completely nuked my phone, installed Enomther's [ROM] TheOfficial Nexus1 v1.8.1 (been wanting to check it out) and all is fixed. Don't know what the deal was, but at any rate it was something jacked up. Well at any rate I did learn something from this experience!
**EDIT**
Seems as though the corruption is coming from HelixLauncher2.0.7 and BetterCut. They don't play well together! Changed to Laucher2.0.7 and all is working as it should. I can't tell you why, I can just tell you what I experienced with a fresh install of Enomther 1.8.1.

Wrong thread.

Treatcon said:
Got it sorted, thanks all very much for your help. It turned out being a corruption issue or something. I completely nuked my phone, installed Enomther's [ROM] TheOfficial Nexus1 v1.8.1 (been wanting to check it out) and all is fixed. Don't know what the deal was, but at any rate it was something jacked up. Well at any rate I did learn something from this experience!
**EDIT**
Seems as though the corruption is coming from HelixLauncher2.0.7 and BetterCut. They don't play well together! Changed to Laucher2.0.7 and all is working as it should. I can't tell you why, I can just tell you what I experienced with a fresh install of Enomther 1.8.1.
Click to expand...
Click to collapse
A lot of people are having issues with Bettercut, and the 2 icons they can't seem to replace are phone and contact. Doesn't make sense, but same time it kind of does.
But again, in Android 2.1 you do no need to sign apps, just zipalign

Related

Youtube from Droid on Donut (MyAccount FC)

****CYANOGEN 4.2.3.1 HOWTO****
EDIT: if you live in usa i think you have install gmaps nav.. in this case, just push YouTube.apk
EDIT2: argh.. if you press "MyAccount" button --> FC. Something miss
Download this zip (mirror) and unzip in tools/. Open a terminal and do:
Code:
adb remount
adb push build.prop /system
adb shell reboot
After reboot:
Code:
adb remount
adb shell rm /system/app/YouTube.apk
adb shell rm /data/dalvik-cache/*YouTube*
adb push YouTube.apk /system/app
adb shell reboot
"Should" work.
*********************************************
if you doesn't have CM4.2.3.1, don't use my build.prop but do:
Code:
adb pull /system/build.prop .
Open the file with gedit or a notepad and change
Code:
ro.build.version.sdk=4
ro.build.version.release=1.6
with
Code:
ro.build.version.sdk=5
ro.build.version.release=2.0
Now, follow my howto using your new build.prop
Thanks octobclrnts gmaps thread
nice. side note, if you go through the new map install, the new youtube shows up too (at least for me it did)
robkoehler said:
nice. side note, if you go through the new map install, the new youtube shows up too (at least for me it did)
Click to expand...
Click to collapse
haha it's true! i'm italian and i can't use gmaps nav
I tried installing the new Youtube through your instructions and it seems the 'My Account' function in the menu causes Youtube to fc. Anyone else get this problem?
bigdbag said:
I tried installing the new Youtube through your instructions and it seems the 'My Account' function in the menu causes Youtube to fc. Anyone else get this problem?
Click to expand...
Click to collapse
FC
Code:
I/ActivityManager( 94): Start proc com.google.android.youtube for broadcast com.google.android.youtube/.widget.WidgetProvider: pid=586 uid=10005 gids={3003}
I/ActivityManager( 94): processNextBroadcast: waiting for ProcessRecord{43acc178 586:com.google.android.youtube/10005}
D/dalvikvm( 140): GC(1) freed 8348 objects / 508680 bytes in 420ms
D/Launcher( 140): dumping extras content=Bundle[{appWidgetId=36}]
I/ActivityThread( 586): Publishing provider com.google.android.youtube.SuggestionProvider: com.google.android.youtube.suggest.SuggestionProvider
W/InputManagerService( 94): Window already focused, ignoring focus gain of: [email protected]
I/YouTube ( 586): Distribution channel:mvapp-android-tmobile
E/YouTube ( 586): Just received Intent: Intent { act=android.appwidget.action.APPWIDGET_ENABLED cmp=com.google.android.youtube/.widget.WidgetProvider }
E/AndroidRuntime( 586): Crash logging failed: java.lang.NullPointerException
E/YouTube ( 586): Just received Intent: Intent { act=android.appwidget.action.APPWIDGET_UPDATE cmp=com.google.android.youtube/.widget.WidgetProvider (has extras) }
E/AndroidRuntime( 586): Crash logging failed: java.lang.NullPointerException
I/ActivityManager( 94): Process com.google.android.youtube (pid 586) has died.
I/ActivityManager( 94): Low Memory: No more background processes.
D/skia ( 140): purging 47K from font cache [6 entries]
D/dalvikvm( 140): GC(1) freed 9327 objects / 531048 bytes in 107ms
D/dalvikvm( 142): GC(1) freed 1106 objects / 57784 bytes in 83ms
D/skia ( 259): purging 6K from font cache [1 entries]
D/dalvikvm( 259): GC(1) freed 825 objects / 30304 bytes in 104ms
D/skia ( 363): purging 6K from font cache [1 entries]
D/dalvikvm( 363): GC(1) freed 2424 objects / 163360 bytes in 85ms
D/skia ( 393): purging 6K from font cache [1 entries]
D/dalvikvm( 393): GC(1) freed 3740 objects / 298064 bytes in 114ms
D/skia ( 451): purging 6K from font cache [1 entries]
D/dalvikvm( 451): GC(1) freed 3055 objects / 226168 bytes in 153ms
D/skia ( 503): purging 6K from font cache [1 entries]
D/dalvikvm( 503): GC(1) freed 3770 objects / 269912 bytes in 108ms
D/skia ( 194): purging 6K from font cache [1 entries]
D/dalvikvm( 194): GC(1) freed 5182 objects / 280560 bytes in 123ms
D/Sensors ( 94): sensors=00000000, real=00000000
D/AKMD ( 81): Compass CLOSE
D/SurfaceFlinger( 94): About to give-up screen, flinger = 0x18f450
D/dalvikvm( 363): GC(0) freed 5859 objects / 457808 bytes in 151ms
D/dalvikvm( 363): GC(0) freed 3181 objects / 129200 bytes in 89ms
D/dalvikvm( 363): GC(0) freed 2367 objects / 98160 bytes in 107ms
D/dalvikvm( 363): GC(0) freed 2492 objects / 105504 bytes in 116ms
D/dalvikvm( 363): GC(0) freed 14284 objects / 2012064 bytes in 160ms
D/dalvikvm( 363): GC(0) freed 3401 objects / 137760 bytes in 100ms
D/dalvikvm( 363): GC(0) freed 2369 objects / 98144 bytes in 99ms
D/dalvikvm( 363): GC(0) freed 2481 objects / 105312 bytes in 111ms
D/KeyguardViewMediator( 94): wakeWhenReadyLocked(82)
D/KeyguardViewMediator( 94): handleWakeWhenReady(82)
D/KeyguardViewMediator( 94): pokeWakelock(5000)
D/Sensors ( 94): sensors=00000001, real=00000001
D/AKMD ( 81): Compass OPEN
I/StatusServlet( 363): SignalStrength: 13(raw) - 62(%)
D/SurfaceFlinger( 94): Screen about to return, flinger = 0x18f450
D/KeyguardViewMediator( 94): pokeWakelock(5000)
W/InputManagerService( 94): Window already focused, ignoring focus gain of: [email protected]
D/dalvikvm( 140): GC(2) freed 1624 objects / 82768 bytes in 118ms
I/ActivityManager( 94): Process com.android.settings (pid 579) has died.
I/ActivityManager( 94): Low Memory: No more background processes.
I/StatusServlet( 363): SignalStrength: 6(raw) - 37(%)
I/ActivityManager( 94): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.google.android.youtube/.HomeActivity }
I/ActivityManager( 94): Start proc com.google.android.youtube for activity com.google.android.youtube/.HomeActivity: pid=601 uid=10005 gids={3003}
I/ActivityThread( 601): Publishing provider com.google.android.youtube.SuggestionProvider: com.google.android.youtube.suggest.SuggestionProvider
I/YouTube ( 601): Distribution channel:mvapp-android-tmobile
D/dalvikvm( 601): GC(0) freed 4095 objects / 359120 bytes in 84ms
D/dalvikvm( 601): GC(2) freed 161 objects / 7360 bytes in 104ms
D/dalvikvm( 601): GC(0) freed 3611 objects / 218240 bytes in 85ms
I/ActivityManager( 94): Displayed activity com.google.android.youtube/.HomeActivity: 2712 ms (total 2712 ms)
D/YouTube ( 601): Trying store file for url=[http://gdata.youtube.com/feeds/api/standardfeeds/most_viewed?v=2&start-index=1&format=2%2C3&time=today&max-results=9].
D/YouTube ( 601): Trying store file for url=[http://gdata.youtube.com/feeds/api/standardfeeds/most_discussed?v=2&start-index=1&format=2%2C3&time=today&max-results=9].
D/YouTube ( 601): Trying store file for url=[http://gdata.youtube.com/feeds/api/standardfeeds/most_recent?v=2&format=2%2C3&start-index=1&max-results=9].
D/YouTube ( 601): Trying store file for url=[http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?v=2&start-index=1&format=2%2C3&time=today&max-results=9].
D/dalvikvm( 601): GC(0) freed 6182 objects / 371944 bytes in 103ms
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/syBwqLvbsWM/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/b0sVmg89cio/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/jA1v80z392A/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/kGsdmA2SfVk/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/OWCidnkhPtQ/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/kxHwfTpQjpc/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/OWCidnkhPtQ/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/kGsdmA2SfVk/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/hC09V7VnD9g/default.jpg].
D/dalvikvm( 601): GC(0) freed 7726 objects / 607840 bytes in 87ms
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/nqaF2NdMMMk/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/BRot7HVhbpc/default.jpg].
D/YouTube ( 601): Trying store file for url=[http://i.ytimg.com/vi/kGsdmA2SfVk/default.jpg].
D/skia ( 140): purging 110K from font cache [14 entries]
D/dalvikvm( 140): GC(1) freed 2543 objects / 145648 bytes in 234ms
I/ARMAssembler( 94): generated scanline__00000177:03515104_00001A01_00000000 [ 64 ipp] (89 ins) at [0xaea60:0xaebc4] in 732422 ns
W/dalvikvm( 601): VFY: unable to find class referenced in signature (Landroid/accounts/AccountManager;)
W/dalvikvm( 601): VFY: unable to find class referenced in signature (Landroid/accounts/Account;)
W/dalvikvm( 601): VFY: unable to find class referenced in signature (Landroid/accounts/Account;)
W/dalvikvm( 601): VFY: unable to find class referenced in signature (Landroid/accounts/Account;)
W/dalvikvm( 601): VFY: unable to find class referenced in signature (Landroid/accounts/Account;)
E/dalvikvm( 601): Could not find method android.accounts.AccountManager.getAccounts, referenced from method com.google.android.youtube.login.GlsLoginActivity.getAccount
W/dalvikvm( 601): VFY: unable to resolve virtual method 3: Landroid/accounts/AccountManager;.getAccounts ()[Landroid/accounts/Account;
W/dalvikvm( 601): VFY: rejecting opcode 0x6e at 0x0002
W/dalvikvm( 601): VFY: rejected Lcom/google/android/youtube/login/GlsLoginActivity;.getAccount (Ljava/lang/String;)Landroid/accounts/Account;
W/dalvikvm( 601): Verifier rejected class Lcom/google/android/youtube/login/GlsLoginActivity;
D/AndroidRuntime( 601): Shutting down VM
W/dalvikvm( 601): threadid=3: thread exiting with uncaught exception (group=0x4001e1c0)
E/AndroidRuntime( 601): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 601): java.lang.VerifyError: com.google.android.youtube.login.GlsLoginActivity
E/AndroidRuntime( 601): at com.google.android.youtube.login.LoginActivity.getImplementationClass(LoginActivity.java:140)
E/AndroidRuntime( 601): at com.google.android.youtube.login.LoginActivity.createLoginIntent(LoginActivity.java:123)
Correcting myself, mispost.
I guess you really do not need My account. You can get along fine with out it. I can still upload my vids directly from the phone, as it auto logged me in.
I modified a Droid YouTube.apk to not need a build.prop modification. Requires Android 1.6, not 2.0. Just push this one over the old YouTube.apk. my Account still FCs. Signed and zipaligned:
http://www.mediafire.com/?nnmgkm3ulmx
As for how I did this:
1. Use AXMLPrinter2.jar to disassemble the AndroidManifest.xml and look at it.
2. Find out that the integer "5" only appears in one place, and that is to specify the minimum SDK version required (5 = 2.0, 4 = 1.6)
3. Take a hex editor and find the only instance of "08 00 00 10 05" in the binary AndroidManifest.xml, and change it to "08 00 00 10 04"
4. Replace the modified AndroidManifest.xml into the original YouTube.apk
so correct me if im wrong all you have to do is:
adb push YouTube.apk /system/app
is that right?
well i used the "Auto" way of installing Google Navigation, using the run .bat1 and 2 files..
this made my build prop read as an sdk 5 and build 2.0
then i went to download some of the apps from system/app in the Droid GSM dump...
which was where i downloaded Youtube.apk, upgraded using Astro and wallah
but still a force close on accounts.. i dont have one, so
So what's new in this Youtube app? Is it worth updating to?
Is it the same version that was included in all eclair dumps or does this one have some extra touches to it like Maps? If it's just the barebones one then it would be easier to just use this method here.
http://forum.xda-developers.com/showthread.php?t=577734
How to you know if you have the new youtube app?
psychoace said:
Is it the same version that was included in all eclair dumps or does this one have some extra touches to it like Maps? If it's just the barebones one then it would be easier to just use this method here.
http://forum.xda-developers.com/showthread.php?t=577734
Click to expand...
Click to collapse
I just used the ABk from the link. My Account works
Mine is 1.5.08 (go to settings in youtube app). I'm pretty sure my last rom update didn't overwrite this app (gmaps stayed). So if this is the version listed here then it's exactly the same.
Takenover83 said:
I just used the ABk from the link. My Account works
Click to expand...
Click to collapse
which one is that?

[Rom-Dev] AOSP 2.1 Sense+Launcher+Home ++ALPHA++ALPHA++ALHPA++

well good news. good enough to move out of alpha. i now have a bootable sense on this rom. only problem is now it wont boot lol. if i get rid of the HTC setup it wont boot. but with the set up i got FC all over the place but finally i got to pick htc sense, launcher, home. but the dam htcsetup kept coming up so i couldnt pick any. well someone help read this logcat and lets figure it out and get some sense and flash on this rom! anyone who can take the time to view and help me find the problem would be great.and a little background on this is darchstars rom. framework files from desires rom. lib for flash from desire. and some mushed together framework files to run either sense or launcher. so yes if you wanna help help.and last bit of info. im taking desires stuff because its all lvl 7 sdk and all the other senses are sdk6. so im also iffy on if the resolution will be good. well ill find out as soon as i can get it booted.
D/dalvikvm( 101): GC freed 2433 objects / 204480 bytes in 124ms
D/dalvikvm( 101): GC freed 250 objects / 30072 bytes in 117ms
D/dalvikvm( 101): GC freed 650 objects / 71376 bytes in 125ms
D/ ( 101): unable to unlink '/system/app/Camera.apk': Read-only file sy
tem (errno=30)
E/installd( 71): invalid apk path '/system/app/Camera.apk' (bad prefix)
W/PackageManager( 101): Couldn't remove dex file for package: com.android.came
a at location /system/app/Camera.apk, retcode=-1
W/PackageManager( 101): Package:com.android.camera is not disabled
W/PackageManager( 101): Trying to update system app code path from /system/app
Camera.apk to /system/app/HTCCamera.apk
W/PackageManager( 101): Package com.android.camera shared user changed from an
roid.media to <nothing>; replacing with new
W/PackageManager( 101): System package com.android.camera has changed from uid
10003 to 10058; old data erased
E/filemap ( 101): mmap(0,0) failed: Invalid argument
W/zipro ( 101): Unable to map '/system/app/HtcFMRadio.apk': Invalid argument
D/asset ( 101): failed to open Zip archive '/system/app/HtcFMRadio.apk'
D/filemap ( 101): munmap(0x0, 0) failed
W/PackageParser( 101): Unable to read AndroidManifest.xml of /system/app/HtcFM
adio.apk
W/PackageParser( 101): java.io.FileNotFoundException: AndroidManifest.xml
W/PackageParser( 101): at android.content.res.AssetManager.openXmlAsse
Native(Native Method)
W/PackageParser( 101): at android.content.res.AssetManager.openXmlBloc
Asset(AssetManager.java:469)
W/PackageParser( 101): at android.content.res.AssetManager.openXmlReso
rceParser(AssetManager.java:437)
W/PackageParser( 101): at android.content.pm.PackageParser.parsePackag
(PackageParser.java:370)
W/PackageParser( 101): at com.android.server.PackageManagerService.sca
PackageLI(PackageManagerService.java:2016)
W/PackageParser( 101): at com.android.server.PackageManagerService.sca
DirLI(PackageManagerService.java:1967)
W/PackageParser( 101): at com.android.server.PackageManagerService.<in
t>(PackageManagerService.java:568)
W/PackageParser( 101): at com.android.server.PackageManagerService.mai
(PackageManagerService.java:335)
W/PackageParser( 101): at com.android.server.ServerThread.run(SystemSe
ver.java:116)
W/PackageParser( 101): Unknown element under <application>: intent-filter at /
ystem/app/com.htc.TwitterWidget.apk Binary XML file line #7
D/PackageManager( 101): Scanning app dir /data/app
D/PackageManager( 101): Scanning app dir /data/app-private
I/PackageManager( 101): Time to scan packages: 33.74 seconds
W/PackageManager( 101): Unknown permission android.permission.ADD_SYSTEM_SERVI
E in package com.android.phone
W/PackageManager( 101): Unknown permission android.permission.ACCESS_ASSISTED_
PS in package com.htc.htclocationservice
W/PackageManager( 101): Unknown permission android.permission.ACCESS_NETWORK_L
CATION in package com.htc.htclocationservice
W/PackageManager( 101): Unknown permission android.permission.ACCESS_LOCATION
n package com.htc.htclocationservice
W/PackageManager( 101): Unknown permission android.permission.ACCESS_GPS in pa
kage com.htc.htclocationservice
W/PackageManager( 101): Unknown permission android.permission.ACCESS_ASSISTED_
PS in package com.htc.android.locationpicker
W/PackageManager( 101): Unknown permission android.permission.ACCESS_NETWORK_L
CATION in package com.htc.android.locationpicker
W/PackageManager( 101): Unknown permission android.permission.ACCESS_LOCATION
n package com.htc.android.locationpicker
W/PackageManager( 101): Unknown permission android.permission.ACCESS_GPS in pa
kage com.htc.android.locationpicker
W/PackageManager( 101): Unknown permission com.htc.socialnetwork.permission.us
provider in package com.htc.htcnew
W/PackageManager( 101): Unknown permission com.android.providers.htccdma.Speci
ic in package com.htc.android.htcsetupwizard
W/PackageManager( 101): Unknown permission com.htc.VzWBackupAssistantClient.PR
VISION in package com.htc.android.htcsetupwizard
W/PackageManager( 101): Not granting permission android.permission.CLEAR_APP_U
ER_DATA to package com.htc.htcsettingwidgets (protectionLevel=2 flags=0x7e45)
W/PackageManager( 101): Unknown permission android.permission.ACCESS_WIMAX_STA
E in package com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.permission.CHANGE_WIMAX_STA
E in package com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.permission.ACCESS_LOCATION
n package com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.permission.ACCESS_ASSISTED_
PS in package com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.permission.ACCESS_NETWORK_L
CATION in package com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.permission.ACCESS_GPS in pa
kage com.htc.htcsettingwidgets
W/PackageManager( 101): Unknown permission android.webkit.permission.PLUGIN in
package com.htc.flashliteplugin
W/PackageManager( 101): Unknown permission android.permission.INJECT_AUDIO_VOL
ME_SETTINGS in package com.android.camera
D/dalvikvm( 101): GC freed 4486 objects / 332632 bytes in 137ms
D/dalvikvm( 101): GC freed 6318 objects / 380936 bytes in 136ms
I/SystemServer( 101): Account Manager
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
700e5
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
20031
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
20030
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
50000
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
50000
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
20005
W/ResourceType( 101): Resources don't contain package for resource number 0x7f
20004
I/SystemServer( 101): Content Manager
I/SyncManager( 101): No initial accounts
I/SyncManager( 101): No initial status
I/SyncManager( 101): No initial pending operations
I/SyncManager( 101): No initial statistics
I/SystemServer( 101): System Content Providers
I/ActivityThread( 101): Publishing provider settings: com.android.providers.se
tings.SettingsProvider
I/ActivityThread( 101): Publishing provider subscribedfeeds: com.google.androi
.providers.subscribedfeeds.SubscribedFeedsProvider
I/ActivityThread( 101): Publishing provider android.server.checkin: com.google
android.server.checkin.CheckinProvider
I/SystemServer( 101): Battery Service
I/SystemServer( 101): Hardware Service
E/lights ( 101): write_int failed to open /sys/class/leds/keyboard-backlight/
rightness
I/power ( 101): *** set_screen_state 1
I/SystemServer( 101): Alarm Manager
I/SystemServer( 101): Init Watchdog
I/SystemServer( 101): Sensor Service
I/SensorsHEROC( 101): open_sensors called with name: control
I/SensorsHEROC( 101): open_sensors in HW_CTRL: AK8973 SENSORS Module
I/SensorsHEROC( 101): control__wake called
I/SensorsHEROC( 101): open_input called with mode: 1
I/SensorsHEROC( 101): open_input checking /dev/input/event5 (name=compass)
I/SensorsHEROC( 101): using /dev/input/event5 (name=compass)
D/SensorsHEROC( 101): control__activated called with handle: 00000000, enabled
00000001
I/SensorsHEROC( 101): open_akm called
D/AK8973 ( 74): Compass Start
I/SensorsHEROC( 101): open_akm, fd=67
I/SensorsHEROC( 101): enable_disable called
I/SensorsHEROC( 101): sensors=00000001, real=00000001
D/SensorsHEROC( 101): control__activated called with handle: 00000001, enabled
00000001
I/SensorsHEROC( 101): open_akm called
I/SensorsHEROC( 101): enable_disable called
I/SensorsHEROC( 101): sensors=00000003, real=00000003
D/SensorsHEROC( 101): control__activated called with handle: 00000002, enabled
00000001
I/SensorsHEROC( 101): open_akm called
I/SensorsHEROC( 101): enable_disable called
I/SensorsHEROC( 101): sensors=00000007, real=00000007
I/SystemServer( 101): Window Manager
I/EventHub( 101): New device: path=/dev/input/event5 name=compass id=0x10000 (
f 0x1) index=1 fd=70 classes=0x0
I/EventHub( 101): New keyboard: publicID=65537 device->id=0x10001 devname='dum
y_keypad' propName='hw.keyboards.65537.devname' keylayout='/system/usr/keylayou
/qwerty.kl'
I/EventHub( 101): New device: path=/dev/input/event4 name=dummy_keypad id=0x10
01 (of 0x2) index=2 fd=71 classes=0x1
I/EventHub( 101): New device: path=/dev/input/event3 name=heroc-nav id=0x10002
(of 0x3) index=3 fd=72 classes=0x8
I/EventHub( 101): New keyboard: publicID=65539 device->id=0x10003 devname='her
c-keypad' propName='hw.keyboards.65539.devname' keylayout='/system/usr/keylayou
/qwerty.kl'
I/EventHub( 101): New device: path=/dev/input/event2 name=heroc-keypad id=0x10
03 (of 0x4) index=4 fd=73 classes=0x1
I/EventHub( 101): New device: path=/dev/input/event1 name=synaptics-rmi-touchs
reen id=0x10004 (of 0x5) index=5 fd=74 classes=0x14
I/EventHub( 101): New keyboard: publicID=0 device->id=0x10005 devname='h2w hea
set' propName='hw.keyboards.0.devname' keylayout='/system/usr/keylayout/h2w_hea
set.kl'
I/EventHub( 101): New device: path=/dev/input/event0 name=h2w headset id=0x100
5 (of 0x6) index=6 fd=75 classes=0x1
I/KeyInputQueue( 101): Device added: id=0x0, name=h2w headset, classes=1
I/KeyInputQueue( 101): Device added: id=0x10004, name=synaptics-rmi-touchscree
, classes=14
I/KeyInputQueue( 101): X: min=40 max=3435 flat=0 fuzz=0
I/KeyInputQueue( 101): Y: min=31 max=5297 flat=0 fuzz=0
I/KeyInputQueue( 101): Pressure: min=0 max=255 flat=0 fuzz=0
I/KeyInputQueue( 101): Size: min=0 max=15 flat=0 fuzz=0
I/KeyInputQueue( 101): No virtual keys found
I/KeyInputQueue( 101): Device added: id=0x10003, name=heroc-keypad, classes=1
I/KeyInputQueue( 101): Device added: id=0x10002, name=heroc-nav, classes=8
I/KeyInputQueue( 101): Device added: id=0x10001, name=dummy_keypad, classes=1
I/KeyInputQueue( 101): Ignoring non-input device: id=0x10000, name=compass
D/dalvikvm( 101): DexOpt: couldn't find static field
W/dalvikvm( 101): VFY: unable to resolve static field 741 (IMEI_LOCKED) in Lco
/android/internal/telephony/IccCard$State;
D/dalvikvm( 101): VFY: replacing opcode 0x62 at 0x003e
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.doKeyguard code (239 bytes)
I/dalvikvm( 101): Could not find method com.htc.profileflag.ProfileConfig.getP
ofileResume, referenced from method com.android.internal.policy.impl.KeyguardVi
wMediator.handleNotifyScreenOn
W/dalvikvm( 101): VFY: unable to resolve static method 1576: Lcom/htc/profilef
ag/ProfileConfig;.getProfileResume ()Z
D/dalvikvm( 101): VFY: replacing opcode 0x71 at 0x0001
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.handleNotifyScreenOn code (75 bytes)
I/dalvikvm( 101): Could not find method com.htc.profileflag.ProfileConfig.getP
ofileResume, referenced from method com.android.internal.policy.impl.KeyguardVi
wMediator.handleWakeWhenReady
W/dalvikvm( 101): VFY: unable to resolve static method 1576: Lcom/htc/profilef
ag/ProfileConfig;.getProfileResume ()Z
D/dalvikvm( 101): VFY: replacing opcode 0x71 at 0x0037
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.handleWakeWhenReady code (292 bytes)
I/dalvikvm( 101): Could not find method com.htc.profileflag.ProfileConfig.getP
ofileResume, referenced from method com.android.internal.policy.impl.KeyguardVi
wMediator.wakeWhenReadyLocked
W/dalvikvm( 101): VFY: unable to resolve static method 1576: Lcom/htc/profilef
ag/ProfileConfig;.getProfileResume ()Z
D/dalvikvm( 101): VFY: replacing opcode 0x71 at 0x0033
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.wakeWhenReadyLocked code (216 bytes)
I/dalvikvm( 101): Could not find method com.htc.profileflag.ProfileConfig.getP
ofileResume, referenced from method com.android.internal.policy.impl.KeyguardVi
wMediator.onScreenTurnedOn
W/dalvikvm( 101): VFY: unable to resolve static method 1576: Lcom/htc/profilef
ag/ProfileConfig;.getProfileResume ()Z
D/dalvikvm( 101): VFY: replacing opcode 0x71 at 0x0001
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.onScreenTurnedOn code (91 bytes)
I/dalvikvm( 101): Could not find method com.htc.profileflag.ProfileConfig.getP
ofileResume, referenced from method com.android.internal.policy.impl.KeyguardVi
wMediator.onWakeKeyWhenKeyguardShowingTq
W/dalvikvm( 101): VFY: unable to resolve static method 1576: Lcom/htc/profilef
ag/ProfileConfig;.getProfileResume ()Z
D/dalvikvm( 101): VFY: replacing opcode 0x71 at 0x0000
D/dalvikvm( 101): Making a copy of Lcom/android/internal/policy/impl/KeyguardV
ewMediator;.onWakeKeyWhenKeyguardShowingTq code (112 bytes)
W/dalvikvm( 101): threadid=41: thread exiting with uncaught exception (group=0
4001e2d8)
E/AndroidRuntime( 101): Uncaught handler: thread WindowManagerPolicy exiting d
e to uncaught exception
E/AndroidRuntime( 101): *** EXCEPTION IN SYSTEM PROCESS. System will crash.
E/AndroidRuntime( 101): java.lang.NullPointerException
E/AndroidRuntime( 101): at com.android.internal.policy.impl.KeyguardUpd
teMonitor.getDefaultPlmn(KeyguardUpdateMonitor.java:589)
E/AndroidRuntime( 101): at com.android.internal.policy.impl.KeyguardUpd
teMonitor.<init>(KeyguardUpdateMonitor.java:275)
E/AndroidRuntime( 101): at com.android.internal.policy.impl.KeyguardVie
Mediator.<init>(KeyguardViewMediator.java:281)
E/AndroidRuntime( 101): at com.android.internal.policy.impl.PhoneWindow
anager.init(PhoneWindowManager.java:568)
E/AndroidRuntime( 101): at com.android.server.WindowManagerService$Poli
yThread.run(WindowManagerService.java:558)
E/AndroidRuntime( 101): Crash logging skipped, no checkin service
I/Process ( 101): Sending signal. PID: 101 SIG: 9
I/ServiceManager( 64): service 'activity' died
I/ServiceManager( 64): service 'package' died
I/ServiceManager( 64): service 'activity.senders' died
I/ServiceManager( 64): service 'telephony.registry' died
I/ServiceManager( 64): service 'entropy' died
I/ServiceManager( 64): service 'batteryinfo' died
I/ServiceManager( 64): service 'usagestats' died
I/ServiceManager( 64): service 'power' died
I/ServiceManager( 64): service 'permission' died
I/ServiceManager( 64): service 'activity.broadcasts' died
I/ServiceManager( 64): service 'activity.providers' died
I/ServiceManager( 64): service 'meminfo' died
I/ServiceManager( 64): service 'cpuinfo' died
I/ServiceManager( 64): service 'activity.services' died
I/ServiceManager( 64): service 'SurfaceFlinger' died
I/ServiceManager( 64): service 'content' died
I/ServiceManager( 64): service 'account' died
I/ServiceManager( 64): service 'battery' died
I/ServiceManager( 64): service 'hardware' died
I/ServiceManager( 64): service 'alarm' died
I/ServiceManager( 64): service 'sensor' died
D/BootAnimation( 110): SurfaceFlinger died, exiting...
all of the above is what adb logcat tells me
from start to finish on phone.
Thank you all for your time and help.
ur missing all of htc packages in the frameworks. including the modifications made by htc to the android frameworks. ull have to basicly turn the aosp rom into an htc rom to get all htcs stuff to workin.
toastcfh said:
ur missing all of htc packages in the frameworks. including the modifications made by htc to the android frameworks. ull have to basicly turn the aosp rom into an htc rom to get all htcs stuff to workin.
Click to expand...
Click to collapse
ok and i believe i have that. i have ported in almost all of htc's packages that rosie and browser depended on when i tested those in the aosp. and rosie installed because it was a selection on the home screen chooser. i couldnt select because htcsetup.apk kept FCing so i removed it and now stuck on boot. now i need edit the bootimg but im running windows so its pretty hard to find instructions.
Avalaunchmods said:
ok and i believe i have that. i have ported in almost all of htc's packages that rosie and browser depended on when i tested those in the aosp. and rosie installed because it was a selection on the home screen chooser. i couldnt select because htcsetup.apk kept FCing so i removed it and now stuck on boot. now i need edit the bootimg but im running windows so its pretty hard to find instructions.
Click to expand...
Click to collapse
ur not seeing the big picture. the apks ur trying to load on 2.1 are either from 2.0 or from the 2.1 that the resolution is much higher on. if the apks are from 2.0.1 then there have been changes in the frameworks of 2.1 if the apks are from 2.1 then it they mostlikely need 2.1 htc frameworks and also the images in the apks are prolly a higher resolution. either way it sounds like u have frameworks mixed up and that be u issue
So basically i should give up? I knew resolutions would be dif but i thought android apps scaled to fit. I guess im just gonna have to wait till you get an underwatermarked version of 2.1 with sense then continue
Avalaunchmods said:
So basically i should give up? I knew resolutions would be dif but i thought android apps scaled to fit. I guess im just gonna have to wait till you get an underwatermarked version of 2.1 with sense then continue
Click to expand...
Click to collapse
id never say give up!!!! ever cuz thats what most devs told me. so @#$% that. id sa do some research its gonna get ugly its possible. its just gonna take more then swapping a few things out. but by all means brother dont give up. i was only telling u what the issues were. i think its prolly a better idea to wait for a htc 2.1 to be leaked, ported or released. but whatever u decide donttake it as im tellin u to give up. please
toast your words are so helpful and dream crushing lol im not going to give up on it i have put in a month of work and finally have a bootable alpha. i learn more everyday and hopefully i can solve the problems stopping it from booting.
well i made this a dev thread. so we have had alot of views. anyone who wants to join in this effort come on out. i need some people who can edit the framework files better than i can. also some people who can edit the boot.img
so far progress is dismal but i have gotten enough to see that HTC sense was installed. but htc setup FC's and when removed i get a boot loop. i will post up an alpha V.2 when i can get it to boot progressively.
PM or comment.
toastcfh said:
ur missing all of htc packages in the frameworks. including the modifications made by htc to the android frameworks. ull have to basicly turn the aosp rom into an htc rom to get all htcs stuff to workin.
Click to expand...
Click to collapse
Your in lakeland?????
rogerbean101 said:
Your in lakeland?????
Click to expand...
Click to collapse
Yep lakeland fl.
toastcfh said:
Yep lakeland fl.
Click to expand...
Click to collapse
Orlando here... I hate this place..
lol well awesome thread has turned into a meet people near you thread.
still alone here people...
Avalaunchmods said:
lol well awesome thread has turned into a meet people near you thread.
still alone here people...
Click to expand...
Click to collapse
Sorrybro , didn't mean to highjack the thread
Back on topic
toastcfh said:
Sorrybro , didn't mean to highjack the thread
Back on topic
Click to expand...
Click to collapse
no prob i was kiddin anyways. hopefully i will have an alpha to post pretty soon. i have the rom booting almost every time now and it shows that sense is installed but still fc problem and still i havnt been able to change much cuz i cant edit the frameworks very well or boot img
Just for FYI use baksmali to take apart the classes.dex in the framework.jar. u should get an out file full of smali files. U need to baksmali an HTC framework.jar also to get the missing files needed. There are over 5000 files though. But u won't need them all. Look in Ur logcat to see what rosie is fcing over. Should see blah.blah.blah.blah.some_kinda_blah. The . = / and its a directory in the frameworks. So look at the HTC out u got and run it down. Then do the same in Ur aosp out. Add the missing blah. Smali it back then put the modded classes.dex back in Ur aosp framework.jar and push it to the device. Wipe and boot. Then its on to the next. Good luck
Thanx man i really appriciate the help. I was able to open the .jar to view some parts and i did see alottt of files. This should be fun.
Avalaunchmods said:
Thanx man i really appriciate the help. I was able to open the .jar to view some parts and i did see alottt of files. This should be fun.
Click to expand...
Click to collapse
http://code.google.com/p/smali/
Jacksonville here
Tampa here..
haha but good luck with the rom. looking very promising!
Los Angeles here.. so im going to have to fly a long way to kick some ass if this bricks my phone..... just kidding, keep up the good work guys!

anybody has the APK for Gesture Search?

it says here for android 2.0 and up but we might be able to get to work on 1.6 .
I'd like to see this, too. Curious if it'll run on CyanogenMod.
here you go,
got it off the market just this min.
Firerat said:
here you go,
got it off the market just this min.
Click to expand...
Click to collapse
Thanks 10char
Firerat said:
here you go,
got it off the market just this min.
Click to expand...
Click to collapse
Thank you very much.
is there a way to port it back for g1?
ralpho said:
is there a way to port it back for g1?
Click to expand...
Click to collapse
its working on my g1
but I have eclair rom ( CaNNoN Complete 1.2 )
I'm guessing you have a cupcake, donut
make yourself a sig
click/tap edit my sig , in my sig
been using since this morning, its not bad.
I often get frustrated scrolling through the app draw, but now with a gestures icon on home screen I can just open it up and start 'writing'
it is a little slow between letters, but I imagine it will get better as it is developed and it is still faster than messing about in the app draw.
gets a thumbs up from me
Welp, I was so eager to get this working on CyanogenMod I dove in and spent the last few hours trying to figure it out :
Installed VirtualBox and Ubuntu
Installed the SDK, apktool, and other various required bits
Decoded the APK
Edited the AndroidManifest.xml to change minSdkVersion from 5 to 4
Rebuilt the APK
Set up a keystore and resigned the APK with my key (this part took awhile and I still don't really know what other options I have if any...)
INSTALLED THE APP SUCCESSFULLY
Bad news though. Although the app opens and starts giving you the opening wizard, it seems the service that "Queries data sources" in the background freaks out and requires a force close. The logcat:
Code:
I/ActivityManager( 100): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10100000 cmp=com.google.android.apps.gesturesearch/.GShell }
I/ActivityManager( 100): Start proc com.google.android.apps.gesturesearch for activity com.google.android.apps.gesturesearch/.GShell: pid=12360 uid=10097 gids={3003}
W/InputManagerService( 100): Window already focused, ignoring focus gain of: [email protected]
I/ActivityThread(12360): Publishing provider com.google.android.apps.gesturesearch.history: com.google.android.apps.gesturesearch.data.QueryHistoryProvider
I/ActivityThread(12360): Publishing provider com.google.android.apps.gesturesearch.index: com.google.android.apps.gesturesearch.data.IndexProvider
W/dalvikvm(12360): VFY: unable to resolve static field 26 (CONTENT_URI) in Landroid/provider/ContactsContract$Data;
D/dalvikvm(12360): VFY: replacing opcode 0x62 at 0x0025
D/dalvikvm(12360): Making a copy of Lcom/google/android/apps/gesturesearch/search/SearchItemView;.setIcon code (440 bytes)
D/dalvikvm(12360): GC freed 1792 objects / 184456 bytes in 175ms
I/ActivityManager( 100): Displayed activity com.google.android.apps.gesturesearch/.GShell: 2116 ms (total 2116 ms)
W/dalvikvm(12360): VFY: unable to resolve static field 25 (CONTENT_URI) in Landroid/provider/ContactsContract$Contacts;
D/dalvikvm(12360): VFY: replacing opcode 0x62 at 0x0003
D/dalvikvm(12360): Making a copy of Lcom/google/android/apps/gesturesearch/search/DataMultiContacts;.queryPhoneNumbers code (128 bytes)
W/dalvikvm(12360): VFY: unable to resolve static field 25 (CONTENT_URI) in Landroid/provider/ContactsContract$Contacts;
D/dalvikvm(12360): VFY: replacing opcode 0x62 at 0x0016
D/dalvikvm(12360): Making a copy of Lcom/google/android/apps/gesturesearch/search/DataMultiContacts;.prepare code (140 bytes)
W/dalvikvm(12360): threadid=15: thread exiting with uncaught exception (group=0x4001e180)
E/AndroidRuntime(12360): Uncaught handler: thread AsyncTask #1 exiting due to uncaught exception
E/AndroidRuntime(12360): java.lang.RuntimeException: An error occured while executing doInBackground()
E/AndroidRuntime(12360): at android.os.AsyncTask$3.done(AsyncTask.java:200)
E/AndroidRuntime(12360): at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
E/AndroidRuntime(12360): at java.util.concurrent.FutureTask.setException(FutureTask.java:124)
E/AndroidRuntime(12360): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
E/AndroidRuntime(12360): at java.util.concurrent.FutureTask.run(FutureTask.java:137)
E/AndroidRuntime(12360): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1068)
E/AndroidRuntime(12360): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:561)
E/AndroidRuntime(12360): at java.lang.Thread.run(Thread.java:1096)
E/AndroidRuntime(12360): Caused by: java.lang.NoClassDefFoundError: android.provider.ContactsContract$Contacts
E/AndroidRuntime(12360): at com.google.android.apps.gesturesearch.search.DataMultiContacts.prepare(DataMultiContacts.java:68)
E/AndroidRuntime(12360): at com.google.android.apps.gesturesearch.search.IndexingTask.doInBackground(IndexingTask.java:126)
E/AndroidRuntime(12360): at com.google.android.apps.gesturesearch.search.IndexingTask.doInBackground(IndexingTask.java:23)
E/AndroidRuntime(12360): at android.os.AsyncTask$2.call(AsyncTask.java:185)
E/AndroidRuntime(12360): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
E/AndroidRuntime(12360): ... 4 more
I/Process ( 100): Sending signal. PID: 12360 SIG: 3
I/dalvikvm(12360): threadid=7: reacting to signal 3
I/dalvikvm(12360): Wrote stack trace to '/data/anr/traces.txt'
These logs are a little above my head, though, and beyond my research capabilities at the moment (feeling a little defeated and TIRED ). Do they look like a result of my modification of the app or a framework limitation of CM's 1.6?
I'd appreciate any feedback, even if it's a "NO, STOP TRYING TO MAKE THIS WORK AND JUST SWITCH TO ECLAIR ALREADY" I attached the modified APK if anyone wants to play with it.
mttmllns said:
Do they look like a result of my modification of the app or a framework limitation of CM's 1.6?
Click to expand...
Click to collapse
Second one.
Code:
java.lang.NoClassDefFoundError: android.provider.ContactsContract$Contacts
http://developer.android.com/intl/de/reference/android/provider/ContactsContract.Contacts.html
It was added in API level 5 (Android 2.0) and apparently it wasn't ported to CM1.4.x .
Brut.all said:
It was added in API level 5 (Android 2.0) and apparently it wasn't ported to CM1.4.x .
Click to expand...
Click to collapse
Cool, thanks for the quick response. Thanks for the great app, too!
Google just put it out for 1.6. Woot!
http://googlemobile.blogspot.com/2010/03/gesture-search-now-available-for.html
Thanks for the heads up.
Spot On
I've been wanting an app like this for a while now. It work great. Now to reassign some buttons and shortcuts and remove redundancies...
Just a heads up. Enabling the ability to search music as well led to one hell of a bugfest. After doing so, it led Rings Extended to force close everytime something requiring changing a sound was messed with. That in turn disbaled all notifications I had set. It also completely "removed" my music from the music app. It was still on my card, but the music app did not recognize this. All this happened after enable said feature and THEN rebooting. Taking the music search off made rings extended no longer FC and all my sounds were back and my music once again showed up. Hope this helps out anyone with a similair occurence.
Up!
Anybody has the apk for Gesture Search 2.0 ? (this version presumably is compatible with N7 but is marked as incompatible on the Play Store)
TIA

Google Android App Inventor

ok.. so I got access to the Android App Inventor
I am trying out my "Hello World" project, but the sdk is not connecting to my phone. I am assuming that I need a driver specific to the Captivate. I already have the Samsung Kies installed..
Any ideas??
Regards
Nick
defriend said:
ok.. so I got access to the Android App Inventor
I am trying out my "Hello World" project, but the sdk is not connecting to my phone. I am assuming that I need a driver specific to the Captivate. I already have the Samsung Kies installed..
Any ideas??
Regards
Nick
Click to expand...
Click to collapse
Hmm. Not sure if I can help you. Install the Samsung drivers and these USB ones: http://forum.xda-developers.com/showthread.php?t=732883
Mine connects perfectly every time!
Can't help you, but when did you put in your request? I put mine in like the day after it started, and still no answer
I would love to try this out.
signed up the first day it was available and still no response. =\
Yup, me too. I placed my request the same day it was announced and I haven't heard a peep. Not even a confirmation that they got my request. It's not too big of a deal for me right now because I don't have the time to be messing around with it, but in a week or so I'd like to be able to tinker with it to blow off some steam. God, how pathetic am I...I need more friends.
I got my invite to the ap inventor last night..i have windows 7 x64 and already had kies installed and had no problem connecting it to my app..which I was just messing around with changing button colors.
Sent from my SAMSUNG-SGH-I897 using XDA App
I had requested access a couple of months ago... just got it yesterday.
One basic question: Does my phone need to be rooted to connect and download my test app?
Regards
Nick
I just got mine Friday also. I am not having much luck getting it to connect.
I get .................
D/AndroidRuntime( 3782): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<
D/AndroidRuntime( 3782): CheckJNI is OFF
D/AndroidRuntime( 3782): setted country_code = USA
D/AndroidRuntime( 3782): setted sales_code = ATT
D/AndroidRuntime( 3782): found sales_code tag = <ATT>, </ATT>
D/dalvikvm( 3782): creating instr width table
D/AndroidRuntime( 3782): --- registering native functions ---
D/PackageParser( 2368): Scanning package: /data/app/vmdl18386.tmp
I/PackageParser( 2368): com.google.AppInventorPhoneApp: compat added android.per
mission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
I/PackageManager( 2368): /data/app/vmdl18386.tmp changed; unpacking
D/installd( 2318): DexInv: --- BEGIN '/data/app/vmdl18386.tmp' ---
D/dalvikvm( 3789): creating instr width table
D/dalvikvm( 3789): DexOpt: load 141ms, verify 1052ms, opt 52ms
D/installd( 2318): DexInv: --- END '/data/app/vmdl18386.tmp' (success) ---
I/installd( 2318): move /data/dalvik-cache/[email protected]@[email protected] ->
/data/dalvik-cache/[email protected]@[email protected]
D/PackageManager( 2368): New package installed in /data/app/com.google.AppInvent
orPhoneApp.apk
D/AndroidRuntime( 3782): Shutting down VM
D/dalvikvm( 3782): DestroyJavaVM waiting for non-daemon threads to exit
D/dalvikvm( 3782): DestroyJavaVM shutting VM down
D/dalvikvm( 3782): HeapWorker thread shutting down
D/dalvikvm( 3782): HeapWorker thread has shut down
D/jdwp ( 3782): JDWP shutting down net...
D/jdwp ( 3782): Got wake-up signal, bailing out of select
I/dalvikvm( 3782): Debugger has detached; object registry had 1 entries
D/dalvikvm( 3782): VM cleaning up
D/dalvikvm( 3782): LinearAlloc 0x0 used 810956 of 5242880 (15%)
D/dalvikvm( 2368): GC freed 10655 objects / 616160 bytes in 100ms
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
80118
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20041
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20040
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
50000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
50000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20005
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20004
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
50011
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20001
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20001
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
40000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
50012
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20002
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20002
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
40000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
50013
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20003
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
20003
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
40000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
70000
W/ResourceType( 2368): Resources don't contain package for resource number 0x7f0
c0000
D/InstallReceiver( 3711): com.google.AppInventorPhoneApp
I/AlarmManager( 2368): mWakeLock.acquire(500);
D/dalvikvm( 3711): GC freed 1104 objects / 78032 bytes in 150ms
I/AlarmManager( 2368): mWakeLock.acquire(500);
D/dalvikvm( 3722): GC freed 2479 objects / 188760 bytes in 194ms
I/AlarmManager( 2368): mWakeLock.acquire(500);
I/StatusBarPolicy( 2368): BAT. status:2 health:2
I/StatusBarPolicy( 2368): BAT. status:2 health:2
And then the screenshot..............
I just got mine Friday also. I have been on and made a few apps. Mine connected fine using a stock mytouch3g. I just followed the directions did the tests first and downloaded extras from the getting started section. I'm using Windows 7 x64
HTC hd2.2 Android . froyostone sense v.3.1, 2.14 radio
Palmetto_X said:
I just got mine Friday also. I am not having much luck getting it to connect.
I get .................
D/AndroidRuntime( 3782): >>>>>>>>>>>>>> AndroidRuntime START
Click to expand...
Click to collapse
Holy crap I forgot all about that...... I got my email about 2 weeks ago I think.
sent from my 42 node TI 89 cluster

Unable to use any rom

No matter what ROM I download and install, it gets stuck in the boot animation
Code:
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package android has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/ApplicationsProvider.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 203K, 2% free 12868K/13096K, paused 2ms+3ms, total 37ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 15ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.applications has no signatures that match those in shared user android.uid.shared; ignoring!
W/PackageParser( 733): No actions in intent filter at /system/app/Bluetooth.apk Binary XML file line #199
I/PackageManager( 733): /system/app/Calendar.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 1064K, 8% free 12800K/13888K, paused 2ms+19ms, total 37ms
I/PackageManager( 733): /system/app/CalendarProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{4163f118 android.uid.calendar/10085}
E/PackageManager( 733): Package com.android.providers.calendar has no signatures that match those in shared user android.uid.calendar; ignoring!
I/PackageManager( 733): /system/app/CellBroadcastReceiver.apk changed; collecting certs
W/PackageParser( 733): No actions in intent filter at /system/app/Contacts.apk Binary XML file line #533
I/PackageManager( 733): /system/app/Contacts.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 3672K, 28% free 10107K/13888K, paused 3ms+5ms, total 33ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 29ms
D/dalvikvm( 733): GC_CONCURRENT freed 712K, 29% free 9906K/13888K, paused 2ms+2ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 11ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.contacts has no signatures that match those in shared user android.uid.shared; ignoring!
I/PackageManager( 733): /system/app/ContactsProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.contacts has no signatures that match those in shared user android.uid.shared; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 327K, 28% free 10021K/13888K, paused 2ms+6ms, total 26ms
I/PackageManager( 733): /system/app/DownloadProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
I/PackageManager( 733): /system/app/DownloadProviderUi.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.downloads has no signatures that match those in shared user android.media; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
I/PackageManager( 733): /system/app/DrmProvider.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.downloads.ui has no signatures that match those in shared user android.media; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
E/PackageManager( 733): Package com.android.providers.drm has no signatures that match those in shared user android.media; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 893K, 32% free 9578K/13888K, paused 3ms+2ms, total 20ms
I/PackageManager( 733): /system/app/Email.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 363K, 30% free 9726K/13888K, paused 2ms+2ms, total 19ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 5ms
W/PackageManager( 733): Trying to update system app code path from /system/app/Email2.apk to /system/app/Email.apk
W/PackageManager( 733): Code path for pkg : com.android.email changing from /system/app/Email2.apk to /system/app/Email.apk
D/dalvikvm( 733): GC_CONCURRENT freed 263K, 29% free 9932K/13888K, paused 3ms+2ms, total 21ms
W/PackageManager( 733): Resource path for pkg : com.android.email changing from /system/app/Email2.apk to /system/app/Email.apk
W/PackageManager( 733): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 733): /system/app/GalaxyS3Settings.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.cyanogenmod.settings.device has no signatures that match those in shared user android.uid.system; ignoring!
W/PackageParser( 733): Unknown element under <application>: permission at /system/app/Gallery2.apk Binary XML file line #219
W/PackageParser( 733): Unknown element under <application>: permission at /system/app/Gallery2.apk Binary XML file line #222
W/ResourceType( 733): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75)
W/ResourceType( 733): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75)
I/PackageManager( 733): /system/app/HTMLViewer.apk changed; collecting certs
W/PackageManager( 733): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
I/PackageManager( 733): /system/app/InputDevices.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 379K, 28% free 10064K/13888K, paused 3ms+5ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 8ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
I/PackageManager( 733): /system/app/KeyChain.apk changed; collecting certs
E/PackageManager( 733): Package com.android.inputdevices has no signatures that match those in shared user android.uid.system; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.keychain has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/Launcher2.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 830K, 30% free 9745K/13888K, paused 3ms+2ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 14ms
D/dalvikvm( 733): GC_CONCURRENT freed 349K, 29% free 9904K/13888K, paused 2ms+5ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 2ms
W/PackageManager( 733): Permission com.android.launcher.permission.PRELOAD_WORKSPACE from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.READ_SETTINGS from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.WRITE_SETTINGS from package com.android.launcher ignored: no group null
I/PackageManager( 733): /system/app/MagicSmokeWallpapers.apk changed; collecting certs
I/PackageManager( 733): /system/app/MediaProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
E/PackageManager( 733): Package com.android.providers.media has no signatures that match those in shared user android.media; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 334K, 29% free 9978K/13888K, paused 4ms+5ms, total 26ms
I/PackageManager( 733): /system/app/Nfc.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416092a8 android.uid.nfc/1027}
E/PackageManager( 733): Package com.android.nfc has no signatures that match those in shared user android.uid.nfc; ignoring!
I/PackageManager( 733): /system/app/Phone.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 663K, 30% free 9826K/13888K, paused 3ms+2ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 8ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
E/PackageManager( 733): Package com.android.phone has no signatures that match those in shared user android.uid.phone; ignoring!
I/PackageManager( 733): /system/app/Provision.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 401K, 29% free 9897K/13888K, paused 3ms+4ms, total 22ms
I/PackageManager( 733): /system/app/QuickSearchBox.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 515K, 29% free 9871K/13888K, paused 2ms+3ms, total 21ms
I/PackageManager( 733): /system/app/Settings.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 231K, 28% free 10124K/13888K, paused 3ms+3ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 18ms
D/dalvikvm( 733): GC_CONCURRENT freed 551K, 28% free 10075K/13888K, paused 1ms+3ms, total 21ms
D/dalvikvm( 733): GC_CONCURRENT freed 215K, 26% free 10356K/13888K, paused 2ms+2ms, total 23ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.settings has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/SettingsProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.providers.settings has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/SoundRecorder.apk changed; collecting certs
I/PackageManager( 733): /system/app/Stk.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 445K, 26% free 10382K/13888K, paused 3ms+5ms, total 25ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
E/PackageManager( 733): Package com.android.stk has no signatures that match those in shared user android.uid.phone; ignoring!
I/PackageManager( 733): /system/app/TelephonyProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
I/PackageManager( 733): /system/app/UserDictionaryProvider.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.telephony has no signatures that match those in shared user android.uid.phone; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.userdictionary has no signatures that match those in shared user android.uid.shared; ignoring!
I/PackageManager( 733): /system/app/VZWAPNLib.apk changed; collecting certs
I/PackageParser( 733): com.vzw.apnlib: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
D/dalvikvm( 733): GC_CONCURRENT freed 1033K, 29% free 9863K/13888K, paused 2ms+3ms, total 25ms
I/PackageManager( 733): /system/app/VZWAPNService.apk changed; collecting certs
I/PackageParser( 733): com.vzw.apnservice: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
I/PackageManager( 733): /system/app/VideoEditor.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 528K, 30% free 9846K/13888K, paused 1ms+2ms, total 20ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 16ms
I/PackageManager( 733): /system/app/VisualizationWallpapers.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 379K, 29% free 9969K/13888K, paused 1ms+3ms, total 21ms
I/PackageManager( 733): /system/app/VoiceDialer.apk changed; collecting certs
I/PackageManager( 733): /system/app/vzwapnpermission.apk changed; collecting certs
I/PackageParser( 733): com.verizon.permissions.vzwappapn: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
D/PackageManager( 733): No files in app dir /vendor/app
W/PackageManager( 733): System package com.brewcrewfoo.performance no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.brewcrewfoo.performance
W/PackageManager( 733): System package net.cactii.flash2 no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/net.cactii.flash2
W/PackageManager( 733): System package com.teslacoilsw.launcher no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.teslacoilsw.launcher
W/PackageManager( 733): System package com.cyanogenmod.lockclock no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.cyanogenmod.lockclock
W/PackageManager( 733): System package com.s0up.goomanager no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.s0up.goomanager
W/PackageManager( 733): System package com.tmobile.thememanager no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.tmobile.thememanager
I/PackageManager( 733): Linking native library dir for /data/app/com.mmmeff.ez.unlock-1.apk
D/dalvikvm( 733): GC_CONCURRENT freed 564K, 30% free 9801K/13888K, paused 3ms+2ms, total 22ms
I/PackageManager( 733): Linking native library dir for /data/app/com.google.android.gms-1.apk
I/PackageManager( 733): Time to scan packages: 3.69 seconds
W/PackageManager( 733): Removing dangling permission: android.permission.READ_EXTERNAL_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.ACCESS_CACHE_FILESYSTEM from package null
W/PackageManager( 733): Removing dangling permission: android.permission.WRITE_EXTERNAL_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.READ_LOGS from package null
W/PackageManager( 733): Removing dangling permission: android.permission.MODIFY_NETWORK_ACCOUNTING from package null
W/PackageManager( 733): Removing dangling permission: android.permission.READ_NETWORK_USAGE_HISTORY from package null
W/PackageManager( 733): Removing dangling permission: android.permission.CAMERA from package null
W/PackageManager( 733): Removing dangling permission: com.tmobile.permission.CHANGE_THEME from package com.tmobile.thememanager
W/PackageManager( 733): Removing dangling permission: android.permission.NET_ADMIN from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH_STACK from package null
W/PackageManager( 733): Removing dangling permission: android.permission.WRITE_MEDIA_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.ACCESS_MTP from package null
W/PackageManager( 733): Removing dangling permission: android.permission.INTERNET from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH from package null
W/PackageManager( 733): Removing dangling permission: android.permission.NET_TUNNELING from package null
W/PackageManager( 733): Removing dangling permission: android.permission.DIAGNOSTIC from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH_ADMIN from package null
W/PackageManager( 733): Unknown permission android.permission.ACCESS_NETWORK_STATE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.RECORD_AUDIO in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.INTERNET in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.WRITE_EXTERNAL_STORAGE in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.RECEIVE_BOOT_COMPLETED in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.CALL_PRIVILEGED in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.READ_CONTACTS in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.READ_CALL_LOG in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.VIBRATE in package com.android.voicedialer
......
W/PackageManager( 733): Unknown permission android.permission.READ_PHONE_STATE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission com.google.android.providers.settings.permission.READ_GSETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission com.google.android.providers.settings.permission.WRITE_GSETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.ACCESS_NETWORK_STATE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_SYNC_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_SYNC_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_EXTERNAL_STORAGE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_CONTACTS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_CALL_LOG in package com.google.android.gms
D/dalvikvm( 733): GC_CONCURRENT freed 455K, 30% free 9828K/13888K, paused 3ms+15ms, total 44ms
D/dalvikvm( 733): GC_EXPLICIT freed 176K, 31% free 9711K/13888K, paused 2ms+3ms, total 30ms
I/SystemServer( 733): User Service
I/SystemServer( 733): Account Manager
I/SystemServer( 733): Content Manager
I/SystemServer( 733): System Content Providers
E/ActivityThread( 733): Failed to find provider info for settings
E/System ( 733): ******************************************
E/System ( 733): ************ Failure starting core service
E/System ( 733): java.lang.NullPointerException
E/System ( 733): at android.provider.Settings$NameValueCache.getStringForUser(Settings.java:809)
E/System ( 733): at android.provider.Settings$Secure.getStringForUser(Settings.java:2776)
E/System ( 733): at android.provider.Settings$Secure.getIntForUser(Settings.java:2870)
E/System ( 733): at android.provider.Settings$Secure.getInt(Settings.java:2864)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.populateCoreSettings(CoreSettingsObserver.java:93)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.sendCoreSettings(CoreSettingsObserver.java:70)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.<init>(CoreSettingsObserver.java:55)
E/System ( 733): at com.android.server.am.ActivityManagerService.installSystemProviders(ActivityManagerService.java:6901)
E/System ( 733): at com.android.server.ServerThread.run(SystemServer.java:282)
I/SystemServer( 733): Input Method Service
W/InputMethodManagerService( 733): Couldn't create dir.: /data/system/inputmethod
E/ActivityThread( 733): Failed to find provider info for settings
F/SystemServer( 733): BOOT FAILURE starting Input Manager Service
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at android.provider.Settings$NameValueCache.getStringForUser(Settings.java:809)
F/SystemServer( 733): at android.provider.Settings$Secure.getStringForUser(Settings.java:2776)
F/SystemServer( 733): at com.android.server.InputMethodManagerService$InputMethodSettings.getSelectedInputMethod(InputMethodManagerService.java:3832)
F/SystemServer( 733): at com.android.server.InputMethodManagerService.<init>(InputMethodManagerService.java:669)
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:361)
F/SystemServer( 733): BOOT FAILURE making display ready
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:377)
W/SystemServer( 733): ***********************************************
I/SystemServer( 733): Accessibility Manager
W/SystemServer( 733): ***********************************************
F/SystemServer( 733): BOOT FAILURE performing boot dexopt
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at com.android.server.am.ActivityManagerService.showBootMessage(ActivityManagerService.java:4353)
F/SystemServer( 733): at com.android.server.pm.PackageManagerService.performBootDexOpt(PackageManagerService.java:3466)
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:383)
W/dalvikvm( 733): threadid=12: thread exiting with uncaught exception (group=0x40d17930)
I/Process ( 733): Sending signal. PID: 733 SIG: 9
W/SystemServer( 733): ***********************************************
E/AndroidRuntime( 733): *** FATAL EXCEPTION IN SYSTEM PROCESS: android.server.ServerThread
E/AndroidRuntime( 733): java.lang.NullPointerException
E/AndroidRuntime( 733): at com.android.server.am.ActivityManagerService.showBootMessage(ActivityManagerService.java:4353)
E/AndroidRuntime( 733): at com.android.server.ServerThread.run(SystemServer.java:389)
I/Zygote ( 276): Exit zygote because system server (733) has terminated
E/installd( 279): eof
E/installd( 279): failed to read size
I/installd( 279): closing connection
W/AudioFlinger( 278): power manager service died !!!
I/ServiceManager( 268): service 'telephony.registry' died
I/ServiceManager( 268): service 'scheduling_policy' died
I/ServiceManager( 268): service 'sensorservice' died
I/ServiceManager( 268): service 'package' died
I/ServiceManager( 268): service 'dbinfo' died
I/ServiceManager( 268): service 'activity' died
I/ServiceManager( 268): service 'batteryinfo' died
I/ServiceManager( 268): service 'user' died
I/ServiceManager( 268): service 'account' died
I/ServiceManager( 268): service 'permission' died
I/ServiceManager( 268): service 'accessibility' died
I/ServiceManager( 268): service 'content' died
I/ServiceManager( 268): service 'meminfo' died
I/ServiceManager( 268): service 'gfxinfo' died
I/ServiceManager( 268): service 'power' died
I/ServiceManager( 268): service 'display' died
I/ServiceManager( 268): service 'entropy' died
I/ServiceManager( 268): service 'cpuinfo' died
I/ServiceManager( 268): service 'usagestats' died
I/ServiceManager( 268): service 'dbinfo' died
I/ServiceManager( 268): service 'power' died
I/ServiceManager( 268): service 'entropy' died
W/AudioFlinger( 278): power manager service died !!!
E/installd( 279): eof
E/installd( 279): failed to read size
I/installd( 279): closing connection
I/Zygote ( 276): Exit zygote because system server (730) has terminated
boastt said:
No matter what ROM I download and install, it gets stuck in the boot animation
Code:
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package android has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/ApplicationsProvider.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 203K, 2% free 12868K/13096K, paused 2ms+3ms, total 37ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 15ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.applications has no signatures that match those in shared user android.uid.shared; ignoring!
W/PackageParser( 733): No actions in intent filter at /system/app/Bluetooth.apk Binary XML file line #199
I/PackageManager( 733): /system/app/Calendar.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 1064K, 8% free 12800K/13888K, paused 2ms+19ms, total 37ms
I/PackageManager( 733): /system/app/CalendarProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{4163f118 android.uid.calendar/10085}
E/PackageManager( 733): Package com.android.providers.calendar has no signatures that match those in shared user android.uid.calendar; ignoring!
I/PackageManager( 733): /system/app/CellBroadcastReceiver.apk changed; collecting certs
W/PackageParser( 733): No actions in intent filter at /system/app/Contacts.apk Binary XML file line #533
I/PackageManager( 733): /system/app/Contacts.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 3672K, 28% free 10107K/13888K, paused 3ms+5ms, total 33ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 29ms
D/dalvikvm( 733): GC_CONCURRENT freed 712K, 29% free 9906K/13888K, paused 2ms+2ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 11ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.contacts has no signatures that match those in shared user android.uid.shared; ignoring!
I/PackageManager( 733): /system/app/ContactsProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.contacts has no signatures that match those in shared user android.uid.shared; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 327K, 28% free 10021K/13888K, paused 2ms+6ms, total 26ms
I/PackageManager( 733): /system/app/DownloadProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
I/PackageManager( 733): /system/app/DownloadProviderUi.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.downloads has no signatures that match those in shared user android.media; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
I/PackageManager( 733): /system/app/DrmProvider.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.downloads.ui has no signatures that match those in shared user android.media; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
E/PackageManager( 733): Package com.android.providers.drm has no signatures that match those in shared user android.media; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 893K, 32% free 9578K/13888K, paused 3ms+2ms, total 20ms
I/PackageManager( 733): /system/app/Email.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 363K, 30% free 9726K/13888K, paused 2ms+2ms, total 19ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 5ms
W/PackageManager( 733): Trying to update system app code path from /system/app/Email2.apk to /system/app/Email.apk
W/PackageManager( 733): Code path for pkg : com.android.email changing from /system/app/Email2.apk to /system/app/Email.apk
D/dalvikvm( 733): GC_CONCURRENT freed 263K, 29% free 9932K/13888K, paused 3ms+2ms, total 21ms
W/PackageManager( 733): Resource path for pkg : com.android.email changing from /system/app/Email2.apk to /system/app/Email.apk
W/PackageManager( 733): Permission com.android.email.permission.READ_ATTACHMENT from package com.android.email ignored: no group null
I/PackageManager( 733): /system/app/GalaxyS3Settings.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.cyanogenmod.settings.device has no signatures that match those in shared user android.uid.system; ignoring!
W/PackageParser( 733): Unknown element under <application>: permission at /system/app/Gallery2.apk Binary XML file line #219
W/PackageParser( 733): Unknown element under <application>: permission at /system/app/Gallery2.apk Binary XML file line #222
W/ResourceType( 733): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75)
W/ResourceType( 733): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75)
I/PackageManager( 733): /system/app/HTMLViewer.apk changed; collecting certs
W/PackageManager( 733): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
I/PackageManager( 733): /system/app/InputDevices.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 379K, 28% free 10064K/13888K, paused 3ms+5ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 8ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
I/PackageManager( 733): /system/app/KeyChain.apk changed; collecting certs
E/PackageManager( 733): Package com.android.inputdevices has no signatures that match those in shared user android.uid.system; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.keychain has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/Launcher2.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 830K, 30% free 9745K/13888K, paused 3ms+2ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 14ms
D/dalvikvm( 733): GC_CONCURRENT freed 349K, 29% free 9904K/13888K, paused 2ms+5ms, total 22ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 2ms
W/PackageManager( 733): Permission com.android.launcher.permission.PRELOAD_WORKSPACE from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.UNINSTALL_SHORTCUT from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.READ_SETTINGS from package com.android.launcher ignored: no group null
W/PackageManager( 733): Permission com.android.launcher.permission.WRITE_SETTINGS from package com.android.launcher ignored: no group null
I/PackageManager( 733): /system/app/MagicSmokeWallpapers.apk changed; collecting certs
I/PackageManager( 733): /system/app/MediaProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416420d0 android.media/10030}
E/PackageManager( 733): Package com.android.providers.media has no signatures that match those in shared user android.media; ignoring!
D/dalvikvm( 733): GC_CONCURRENT freed 334K, 29% free 9978K/13888K, paused 4ms+5ms, total 26ms
I/PackageManager( 733): /system/app/Nfc.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{416092a8 android.uid.nfc/1027}
E/PackageManager( 733): Package com.android.nfc has no signatures that match those in shared user android.uid.nfc; ignoring!
I/PackageManager( 733): /system/app/Phone.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 663K, 30% free 9826K/13888K, paused 3ms+2ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 8ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
E/PackageManager( 733): Package com.android.phone has no signatures that match those in shared user android.uid.phone; ignoring!
I/PackageManager( 733): /system/app/Provision.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 401K, 29% free 9897K/13888K, paused 3ms+4ms, total 22ms
I/PackageManager( 733): /system/app/QuickSearchBox.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 515K, 29% free 9871K/13888K, paused 2ms+3ms, total 21ms
I/PackageManager( 733): /system/app/Settings.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 231K, 28% free 10124K/13888K, paused 3ms+3ms, total 21ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 18ms
D/dalvikvm( 733): GC_CONCURRENT freed 551K, 28% free 10075K/13888K, paused 1ms+3ms, total 21ms
D/dalvikvm( 733): GC_CONCURRENT freed 215K, 26% free 10356K/13888K, paused 2ms+2ms, total 23ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.settings has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/SettingsProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41608a10 android.uid.system/1000}
E/PackageManager( 733): Package com.android.providers.settings has no signatures that match those in shared user android.uid.system; ignoring!
I/PackageManager( 733): /system/app/SoundRecorder.apk changed; collecting certs
I/PackageManager( 733): /system/app/Stk.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 445K, 26% free 10382K/13888K, paused 3ms+5ms, total 25ms
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
E/PackageManager( 733): Package com.android.stk has no signatures that match those in shared user android.uid.phone; ignoring!
I/PackageManager( 733): /system/app/TelephonyProvider.apk changed; collecting certs
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{41609088 android.uid.phone/1001}
I/PackageManager( 733): /system/app/UserDictionaryProvider.apk changed; collecting certs
E/PackageManager( 733): Package com.android.providers.telephony has no signatures that match those in shared user android.uid.phone; ignoring!
W/PackageManager( 733): Signature mismatch for shared user : SharedUserSetting{415b5098 android.uid.shared/10009}
E/PackageManager( 733): Package com.android.providers.userdictionary has no signatures that match those in shared user android.uid.shared; ignoring!
I/PackageManager( 733): /system/app/VZWAPNLib.apk changed; collecting certs
I/PackageParser( 733): com.vzw.apnlib: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
D/dalvikvm( 733): GC_CONCURRENT freed 1033K, 29% free 9863K/13888K, paused 2ms+3ms, total 25ms
I/PackageManager( 733): /system/app/VZWAPNService.apk changed; collecting certs
I/PackageParser( 733): com.vzw.apnservice: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
I/PackageManager( 733): /system/app/VideoEditor.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 528K, 30% free 9846K/13888K, paused 1ms+2ms, total 20ms
D/dalvikvm( 733): WAIT_FOR_CONCURRENT_GC blocked 16ms
I/PackageManager( 733): /system/app/VisualizationWallpapers.apk changed; collecting certs
D/dalvikvm( 733): GC_CONCURRENT freed 379K, 29% free 9969K/13888K, paused 1ms+3ms, total 21ms
I/PackageManager( 733): /system/app/VoiceDialer.apk changed; collecting certs
I/PackageManager( 733): /system/app/vzwapnpermission.apk changed; collecting certs
I/PackageParser( 733): com.verizon.permissions.vzwappapn: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE
D/PackageManager( 733): No files in app dir /vendor/app
W/PackageManager( 733): System package com.brewcrewfoo.performance no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.brewcrewfoo.performance
W/PackageManager( 733): System package net.cactii.flash2 no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/net.cactii.flash2
W/PackageManager( 733): System package com.teslacoilsw.launcher no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.teslacoilsw.launcher
W/PackageManager( 733): System package com.cyanogenmod.lockclock no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.cyanogenmod.lockclock
W/PackageManager( 733): System package com.s0up.goomanager no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.s0up.goomanager
W/PackageManager( 733): System package com.tmobile.thememanager no longer exists; wiping its data
W/PackageManager( 733): Couldn't delete native library directory /data/app-lib/com.tmobile.thememanager
I/PackageManager( 733): Linking native library dir for /data/app/com.mmmeff.ez.unlock-1.apk
D/dalvikvm( 733): GC_CONCURRENT freed 564K, 30% free 9801K/13888K, paused 3ms+2ms, total 22ms
I/PackageManager( 733): Linking native library dir for /data/app/com.google.android.gms-1.apk
I/PackageManager( 733): Time to scan packages: 3.69 seconds
W/PackageManager( 733): Removing dangling permission: android.permission.READ_EXTERNAL_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.ACCESS_CACHE_FILESYSTEM from package null
W/PackageManager( 733): Removing dangling permission: android.permission.WRITE_EXTERNAL_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.READ_LOGS from package null
W/PackageManager( 733): Removing dangling permission: android.permission.MODIFY_NETWORK_ACCOUNTING from package null
W/PackageManager( 733): Removing dangling permission: android.permission.READ_NETWORK_USAGE_HISTORY from package null
W/PackageManager( 733): Removing dangling permission: android.permission.CAMERA from package null
W/PackageManager( 733): Removing dangling permission: com.tmobile.permission.CHANGE_THEME from package com.tmobile.thememanager
W/PackageManager( 733): Removing dangling permission: android.permission.NET_ADMIN from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH_STACK from package null
W/PackageManager( 733): Removing dangling permission: android.permission.WRITE_MEDIA_STORAGE from package null
W/PackageManager( 733): Removing dangling permission: android.permission.ACCESS_MTP from package null
W/PackageManager( 733): Removing dangling permission: android.permission.INTERNET from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH from package null
W/PackageManager( 733): Removing dangling permission: android.permission.NET_TUNNELING from package null
W/PackageManager( 733): Removing dangling permission: android.permission.DIAGNOSTIC from package null
W/PackageManager( 733): Removing dangling permission: android.permission.BLUETOOTH_ADMIN from package null
W/PackageManager( 733): Unknown permission android.permission.ACCESS_NETWORK_STATE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable
W/PackageManager( 733): Unknown permission android.permission.RECORD_AUDIO in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.INTERNET in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.WRITE_EXTERNAL_STORAGE in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.soundrecorder
W/PackageManager( 733): Unknown permission android.permission.RECEIVE_BOOT_COMPLETED in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.CALL_PRIVILEGED in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.READ_CONTACTS in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.READ_CALL_LOG in package com.android.voicedialer
W/PackageManager( 733): Unknown permission android.permission.VIBRATE in package com.android.voicedialer
......
W/PackageManager( 733): Unknown permission android.permission.READ_PHONE_STATE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WAKE_LOCK in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission com.google.android.providers.settings.permission.READ_GSETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission com.google.android.providers.settings.permission.WRITE_GSETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.ACCESS_NETWORK_STATE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_SYNC_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_SYNC_SETTINGS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.WRITE_EXTERNAL_STORAGE in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_CONTACTS in package com.google.android.gms
W/PackageManager( 733): Unknown permission android.permission.READ_CALL_LOG in package com.google.android.gms
D/dalvikvm( 733): GC_CONCURRENT freed 455K, 30% free 9828K/13888K, paused 3ms+15ms, total 44ms
D/dalvikvm( 733): GC_EXPLICIT freed 176K, 31% free 9711K/13888K, paused 2ms+3ms, total 30ms
I/SystemServer( 733): User Service
I/SystemServer( 733): Account Manager
I/SystemServer( 733): Content Manager
I/SystemServer( 733): System Content Providers
E/ActivityThread( 733): Failed to find provider info for settings
E/System ( 733): ******************************************
E/System ( 733): ************ Failure starting core service
E/System ( 733): java.lang.NullPointerException
E/System ( 733): at android.provider.Settings$NameValueCache.getStringForUser(Settings.java:809)
E/System ( 733): at android.provider.Settings$Secure.getStringForUser(Settings.java:2776)
E/System ( 733): at android.provider.Settings$Secure.getIntForUser(Settings.java:2870)
E/System ( 733): at android.provider.Settings$Secure.getInt(Settings.java:2864)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.populateCoreSettings(CoreSettingsObserver.java:93)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.sendCoreSettings(CoreSettingsObserver.java:70)
E/System ( 733): at com.android.server.am.CoreSettingsObserver.<init>(CoreSettingsObserver.java:55)
E/System ( 733): at com.android.server.am.ActivityManagerService.installSystemProviders(ActivityManagerService.java:6901)
E/System ( 733): at com.android.server.ServerThread.run(SystemServer.java:282)
I/SystemServer( 733): Input Method Service
W/InputMethodManagerService( 733): Couldn't create dir.: /data/system/inputmethod
E/ActivityThread( 733): Failed to find provider info for settings
F/SystemServer( 733): BOOT FAILURE starting Input Manager Service
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at android.provider.Settings$NameValueCache.getStringForUser(Settings.java:809)
F/SystemServer( 733): at android.provider.Settings$Secure.getStringForUser(Settings.java:2776)
F/SystemServer( 733): at com.android.server.InputMethodManagerService$InputMethodSettings.getSelectedInputMethod(InputMethodManagerService.java:3832)
F/SystemServer( 733): at com.android.server.InputMethodManagerService.<init>(InputMethodManagerService.java:669)
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:361)
F/SystemServer( 733): BOOT FAILURE making display ready
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:377)
W/SystemServer( 733): ***********************************************
I/SystemServer( 733): Accessibility Manager
W/SystemServer( 733): ***********************************************
F/SystemServer( 733): BOOT FAILURE performing boot dexopt
F/SystemServer( 733): java.lang.NullPointerException
F/SystemServer( 733): at com.android.server.am.ActivityManagerService.showBootMessage(ActivityManagerService.java:4353)
F/SystemServer( 733): at com.android.server.pm.PackageManagerService.performBootDexOpt(PackageManagerService.java:3466)
F/SystemServer( 733): at com.android.server.ServerThread.run(SystemServer.java:383)
W/dalvikvm( 733): threadid=12: thread exiting with uncaught exception (group=0x40d17930)
I/Process ( 733): Sending signal. PID: 733 SIG: 9
W/SystemServer( 733): ***********************************************
E/AndroidRuntime( 733): *** FATAL EXCEPTION IN SYSTEM PROCESS: android.server.ServerThread
E/AndroidRuntime( 733): java.lang.NullPointerException
E/AndroidRuntime( 733): at com.android.server.am.ActivityManagerService.showBootMessage(ActivityManagerService.java:4353)
E/AndroidRuntime( 733): at com.android.server.ServerThread.run(SystemServer.java:389)
I/Zygote ( 276): Exit zygote because system server (733) has terminated
E/installd( 279): eof
E/installd( 279): failed to read size
I/installd( 279): closing connection
W/AudioFlinger( 278): power manager service died !!!
I/ServiceManager( 268): service 'telephony.registry' died
I/ServiceManager( 268): service 'scheduling_policy' died
I/ServiceManager( 268): service 'sensorservice' died
I/ServiceManager( 268): service 'package' died
I/ServiceManager( 268): service 'dbinfo' died
I/ServiceManager( 268): service 'activity' died
I/ServiceManager( 268): service 'batteryinfo' died
I/ServiceManager( 268): service 'user' died
I/ServiceManager( 268): service 'account' died
I/ServiceManager( 268): service 'permission' died
I/ServiceManager( 268): service 'accessibility' died
I/ServiceManager( 268): service 'content' died
I/ServiceManager( 268): service 'meminfo' died
I/ServiceManager( 268): service 'gfxinfo' died
I/ServiceManager( 268): service 'power' died
I/ServiceManager( 268): service 'display' died
I/ServiceManager( 268): service 'entropy' died
I/ServiceManager( 268): service 'cpuinfo' died
I/ServiceManager( 268): service 'usagestats' died
I/ServiceManager( 268): service 'dbinfo' died
I/ServiceManager( 268): service 'power' died
I/ServiceManager( 268): service 'entropy' died
W/AudioFlinger( 278): power manager service died !!!
E/installd( 279): eof
E/installd( 279): failed to read size
I/installd( 279): closing connection
I/Zygote ( 276): Exit zygote because system server (730) has terminated
Click to expand...
Click to collapse
Did you even unlock the bootloader?

Categories

Resources