[Q] Google Play services and Android modifications - Android Q&A, Help & Troubleshooting

I have problems with Google Play services after I made couple of small
logging source code changes to Android frameworks files. I have tried
with various GApps packages from BasketBuild.
I have rebuilt CyanogenMod12 20150318 build for hammerhead (Nexus5)
and installed also Google Apps. Everything works fine with unmodified
code. Next I tried to study and debug control flow of Android activities and
process creation by adding log output messages to a couple of class
methods in frameworks/base and recompiled again. Basically everything
still works fine but there is a nasty side effect as Google Play
services start to fail. There is a popup message:
"Unfortunately, Google Play services has stopped"
Obviously my changes are causing these problems but I do not
understand what is happening and why only Google Play services
seem to fail. Seems like modifications to final Java classes like
ActivityRecord, ActivityManagerService, ActivityStackSupervisor are
triggering these problems. I did not add or modify class function
APIs or data members. I just added couple of log prints and tests for
intents. These problems are already present during system setup.
I have to delay network configuration as otherwise this Google Play
error is causing the whole configuration phase to stuck.
Attached logcat log contains many suspicous messages:
1. Two jar files do not exist or contain no resources
The jar files actually are in /system/framework directory but for some
reason the files cannot be used.
2. Insert disabled by gate 'gms:security:enable_conscrypt_in_gms_application'
Google search found couple of postings with this message and there
were hints that this could be a signing key problem. However, I did
not detect any Cyanogenmod instructions and my initial unmodified
build worked with GApps and Google services.
3. Parcel errors when unmarshalling
Class com.google.android.gms.auth.firstparty.shared.AppDescription
not found. This is causing android.os.BadParcelableException
exception.
Any ideas what could cause these problems. Here is extract from log output:
I/ActivityManager( 772): Start proc com.google.android.gms.ui for activity com.google.android.gms/.games.ui.signin.SignInActivity: pid=7978 uid=10022 gids={50022, 9997, 2001, 3003, 1007, 3006, 3007, 3002, 3001, 1028, 1015, 1005} abi=armeabi-v7a
E/Zygote ( 7978): ForkAndSpecializeCommon - name=com.google.android.gms.ui info=release
I/Timeline( 7945): Timeline: Activity_idle id: [email protected] time:7502907
W/ResourcesManager( 7978): Asset path '/system/framework/com.android.media.remotedisplay.jar' does not exist or contains no resources.
W/ResourcesManager( 7978): Asset path '/system/framework/com.android.location.provider.jar' does not exist or contains no resources.
I/MultiDex( 7978): VM with version 2.1.0 has multidex support
I/MultiDex( 7978): install
I/MultiDex( 7978): VM has multidex support, MultiDex support library is disabled.
I/ProviderInstaller( 7978): Insert disabled by gate 'gms:security:enable_conscrypt_in_gms_application'
D/GCM ( 2484): GcmService start Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.gcm.GcmService } com.google.android.gms.INITIALIZE
D/AuthorizationBluetoothService( 2484): Received GmsCore event: Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.auth.be.proximity.authorization.bt.AuthorizationBluetoothService$AutoStarter }.
D/c ( 2484): Getting all permits...
D/a ( 2484): Opening database...
D/LocationInitializer( 2680): Restart initialization of location
D/a ( 2484): Opening database auth.proximity.permit_store...
D/a ( 2484): Closing database...
D/OpenGLRenderer( 7978): Render dirty regions requested: true
D/Atlas ( 7978): Validating map...
I/Adreno-EGL( 7978): <qeglDrvAPI_eglInitialize:410>: QUALCOMM Build: 10/24/14, 167c270, I68fa98814b
I/OpenGLRenderer( 7978): Initialized EGL, version 1.4
D/OpenGLRenderer( 7978): Enabling debug mode 0
I/ActivityManager( 772): START u0 {act=com.google.android.gms.common.account.CHOOSE_ACCOUNT flg=0x20000000 pkg=com.google.android.gms cmp=com.google.android.gms/.common.account.AccountPickerActivity (has extras)} from uid 10022 on display 0
I/Timeline( 772): Timeline: Activity_windows_visible id: ActivityRecord{3cfb3e37 u0 com.google.android.gms/.games.ui.signin.SignInActivity t13} time:7503232
W/GLSActivity( 2484): [LegacyAuthenticator] The app AppDescription<com.google.android.gms, 10022> is invoking addAccount
W/GLSActivity( 2484): [LegacyAuthenticator] Returning intent launch AccountIntroActivity.
I/Timeline( 7978): Timeline: Activity_launch_request id:com.google.android.gms time:7503308
I/ActivityManager( 772): START u0 {flg=0x80000 cmp=com.google.android.gms/.auth.gsf.AccountIntroActivity (has extras)} from uid 10022 on display 0
I/GLSActivity( 7978): [AccountIntroActivity] Provisioning with name/email. Edu: false
I/GLSActivity( 7978): [AccountIntroActivity] Setup a Google account using GmsCore managed workflow.
I/Timeline( 7978): Timeline: Activity_launch_request id:com.google.android.gms time:7503474
E/Parcel ( 772): Class not found when unmarshalling: com.google.android.gms.auth.firstparty.shared.AppDescription
E/Parcel ( 772): java.lang.ClassNotFoundException: com.google.android.gms.auth.firstparty.shared.AppDescription
E/Parcel ( 772): at java.lang.Class.classForName(Native Method)
E/Parcel ( 772): at java.lang.Class.forName(Class.java:308)
E/Parcel ( 772): at java.lang.Class.forName(Class.java:272)
E/Parcel ( 772): at android.os.Parcel.readParcelableCreator(Parcel.java:2275)
E/Parcel ( 772): at android.os.Parcel.readParcelable(Parcel.java:2239)
E/Parcel ( 772): at android.os.Parcel.readValue(Parcel.java:2146)
E/Parcel ( 772): at android.os.Parcel.readArrayMapInternal(Parcel.java:2479)
E/Parcel ( 772): at android.os.BaseBundle.unparcel(BaseBundle.java:221)
E/Parcel ( 772): at android.os.BaseBundle.containsKey(BaseBundle.java:269)
E/Parcel ( 772): at com.android.server.am.ActivityStackSupervisor.startActivityLocked(ActivityStackSupervisor.java:1314)
E/Parcel ( 772): at com.android.server.am.ActivityStackSupervisor.startActivityMayWait(ActivityStackSupervisor.java:950)
E/Parcel ( 772): at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:3654)
E/Parcel ( 772): at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:3641)
E/Parcel ( 772): at android.app.ActivityManagerNative.onTransact(ActivityManagerNative.java:141)
E/Parcel ( 772): at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2476)
E/Parcel ( 772): at android.os.Binder.execTransact(Binder.java:446)
E/Parcel ( 772): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.auth.firstparty.shared.AppDescription" on path: DexPathList[[directory "."],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
E/Parcel ( 772): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
E/Parcel ( 772): at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
E/Parcel ( 772): at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
E/Parcel ( 772): ... 16 more
E/Parcel ( 772): Suppressed: java.lang.ClassNotFoundException: com.google.android.gms.auth.firstparty.shared.AppDescription
E/Parcel ( 772): at java.lang.Class.classForName(Native Method)
E/Parcel ( 772): at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
E/Parcel ( 772): at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
E/Parcel ( 772): at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
E/Parcel ( 772): ... 17 more
E/Parcel ( 772): Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
F/ActivityManager( 772): Activity Manager Crash
F/ActivityManager( 772): android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.google.android.gms.auth.firstparty.shared.AppDescription
F/ActivityManager( 772): at android.os.Parcel.readParcelableCreator(Parcel.java:2289)
F/ActivityManager( 772): at android.os.Parcel.readParcelable(Parcel.java:2239)
F/ActivityManager( 772): at android.os.Parcel.readValue(Parcel.java:2146)
F/ActivityManager( 772): at android.os.Parcel.readArrayMapInternal(Parcel.java:2479)
F/ActivityManager( 772): at android.os.BaseBundle.unparcel(BaseBundle.java:221)
F/ActivityManager( 772): at android.os.BaseBundle.containsKey(BaseBundle.java:269)
F/ActivityManager( 772): at com.android.server.am.ActivityStackSupervisor.startActivityLocked(ActivityStackSupervisor.java:1314)
F/ActivityManager( 772): at com.android.server.am.ActivityStackSupervisor.startActivityMayWait(ActivityStackSupervisor.java:950)
F/ActivityManager( 772): at com.android.server.am.ActivityManagerService.startActivityAsUser(ActivityManagerService.java:3654)
F/ActivityManager( 772): at com.android.server.am.ActivityManagerService.startActivity(ActivityManagerService.java:3641)
F/ActivityManager( 772): at android.app.ActivityManagerNative.onTransact(ActivityManagerNative.java:141)
F/ActivityManager( 772): at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2476)
F/ActivityManager( 772): at android.os.Binder.execTransact(Binder.java:446)
D/AndroidRuntime( 7978): Shutting down VM
--------- beginning of crash
E/AndroidRuntime( 7978): FATAL EXCEPTION: main
E/AndroidRuntime( 7978): Process: com.google.android.gms.ui, PID: 7978
E/AndroidRuntime( 7978): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.google.android.gms/com.google.android.gms.auth.gsf.AccountIntroActivity}: android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.google.android.gms.auth.firstparty.shared.AppDescription
E/AndroidRuntime( 7978): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2329)
E/AndroidRuntime( 7978): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2391)
E/AndroidRuntime( 7978): at android.app.ActivityThread.access$900(ActivityThread.java:147)
E/AndroidRuntime( 7978): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1296)
E/AndroidRuntime( 7978): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime( 7978): at android.os.Looper.loop(Looper.java:135)
E/AndroidRuntime( 7978): at android.app.ActivityThread.main(ActivityThread.java:5256)
E/AndroidRuntime( 7978): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime( 7978): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime( 7978): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:898)
E/AndroidRuntime( 7978): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693)
E/AndroidRuntime( 7978): Caused by: android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.google.android.gms.auth.firstparty.shared.AppDescription
E/AndroidRuntime( 7978): at android.os.Parcel.readException(Parcel.java:1542)
E/AndroidRuntime( 7978): at android.os.Parcel.readException(Parcel.java:1493)
E/AndroidRuntime( 7978): at android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:2414)
E/AndroidRuntime( 7978): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1480)
E/AndroidRuntime( 7978): at android.app.Activity.startActivityForResult(Activity.java:3736)
E/AndroidRuntime( 7978): at android.app.Activity.startActivityForResult(Activity.java:3697)
E/AndroidRuntime( 7978): at android.support.v4.app.q.startActivityForResult(SourceFile:817)
E/AndroidRuntime( 7978): at com.google.android.gms.auth.gsf.b.startActivityForResult(SourceFile:660)
E/AndroidRuntime( 7978): at com.google.android.gms.auth.gsf.b.a(SourceFile:513)
E/AndroidRuntime( 7978): at com.google.android.gms.auth.gsf.AccountIntroActivity.i(SourceFile:358)
E/AndroidRuntime( 7978): at com.google.android.gms.auth.gsf.AccountIntroActivity.d(SourceFile:213)
E/AndroidRuntime( 7978): at com.google.android.gms.auth.gsf.AccountIntroActivity.onCreate(SourceFile:188)
E/AndroidRuntime( 7978): at android.app.Activity.performCreate(Activity.java:5933)
E/AndroidRuntime( 7978): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
E/AndroidRuntime( 7978): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2282)
E/AndroidRuntime( 7978): ... 10 more
W/ActivityManager( 772): Force finishing activity com.google.android.gms/.auth.gsf.AccountIntroActivity
W/ActivityManager( 772): Force finishing activity com.google.android.gms/.common.account.AccountPickerActivity
W/DropBoxManagerService( 772): Dropping: system_server_wtf (1497 > 0 bytes)
W/DropBoxManagerService( 772): Dropping: system_app_crash (2410 > 0 bytes)

Related

[Q] home screen crashing

any hint on how to restore it?
I can enter safe mode, (pressing MENU key at boot) but I can't figure out what to fix.
Here is the logcat of homescreen crashing
Code:
W/ActivityManager( 1159): Activity pause timeout for HistoryRecord{2ff36928 com.sonyericsson.homescreen/.HomeScreen}
I/WindowManager( 1159): onOrientationChanged, rotation changed to 0
W/KeyCharacterMap( 1159): Can't open keycharmap file
W/KeyCharacterMap( 1159): Error loading keycharmap file '/system/usr/keychars/robyn_keypad.kcm.bin'. hw.keyboards.0.devname='robyn_keypad'
W/KeyCharacterMap( 1159): Using default keymap: /system/usr/keychars/qwerty.kcm.bin
D/KeyguardViewMediator( 1159): pokeWakelock(5000)
I/ActivityManager( 1159): Process com.sonyericsson.homescreen (pid 1768) has died.
I/ActivityManager( 1159): Start proc com.sonyericsson.homescreen for activity com.sonyericsson.homescreen/.HomeScreen: pid=1780 uid=10009 gids={1015, 3003}
W/UsageStats( 1159): Something wrong here, didn't expect com.sonyericsson.homescreen to be resumed
I/ActivityThread( 1780): Publishing provider com.sonyericsson.homescreen.widgetprovider: com.sonyericsson.homescreen.widgetprovider.WidgetProvider
I/ActivityThread( 1780): Publishing provider com.sonyericsson.homescreen.settingsprovider: com.sonyericsson.homescreen.settingsprovider.SettingsProvider
I/ActivityManager( 1159): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.sonyericsson.homescreen/.HomeScreen }
I/ActivityManager( 1159): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.sonyericsson.homescreen/.HomeScreen }
W/dalvikvm( 1780): threadid=3: thread exiting with uncaught exception (group=0x2aac9a28)
E/AndroidRuntime( 1780): Uncaught handler: thread main exiting due to uncaught exception
I/global ( 1780): Default buffer size used in BufferedWriter constructor. It would be better to be explicit if an 8k-char buffer is required.
E/AndroidRuntime( 1780): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sonyericsson.homescreen/com.sonyericsson.homescreen.HomeScreen}: java.lang.ClassCastException: android.graphics.drawable.NinePatchDrawable
E/AndroidRuntime( 1780): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2401)
E/AndroidRuntime( 1780): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
E/AndroidRuntime( 1780): at android.app.ActivityThread.access$2100(ActivityThread.java:116)
E/AndroidRuntime( 1780): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
E/AndroidRuntime( 1780): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 1780): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 1780): at android.app.ActivityThread.main(ActivityThread.java:4203)
E/AndroidRuntime( 1780): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1780): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 1780): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:799)
E/AndroidRuntime( 1780): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
E/AndroidRuntime( 1780): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 1780): Caused by: java.lang.ClassCastException: android.graphics.drawable.NinePatchDrawable
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.applicationloader.ItemFactory.internalCreateApplication(ItemFactory.java:90)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.applicationloader.ItemFactory.createApplication(ItemFactory.java:49)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.applicationloader.ApplicationLoader.loadApplicationInfoList(ApplicationLoader.java:84)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.launcher.model.LauncherModel.loadApplications(LauncherModel.java:846)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.launcher.model.LauncherModel.<init>(LauncherModel.java:223)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.launcher.model.LauncherModel.getInstance(LauncherModel.java:327)
E/AndroidRuntime( 1780): at com.sonyericsson.homescreen.HomeScreen.onCreate(HomeScreen.java:243)
E/AndroidRuntime( 1780): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
E/AndroidRuntime( 1780): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2364)
E/AndroidRuntime( 1780): ... 11 more
I/CrashSMS( 1412): FileObserver found new crash data. Send DO_CRASH_MSG_ACTION
I/CrashSMS( 1412): Received DO_CRASH_MSG_ACTION
I/global ( 1412): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
I/CrashSMS( 1412): Picking oldest crash data file 1281433209.txt
I/CrashSMS( 1412): Compiling the crash report
I/global ( 1412): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
W/TimeStamp( 1412): TimeStamp is different! Directory: /system/app
I/CrashSMS( 1412): Storing report: type=2 unit=1
I/CrashSMS( 1412): MiscTA index = 2:1 1:1 10:1 9:1 8:1 7:1 6:1 5:1 4:1 3:1
I/MTBFParamSet( 1412): Converting to MTBF Message
I/CrashSMS( 1412): update counters and delete crash data
I/DumpStateReceiver( 1159): Added state dump to 1 crashes
I found the problem, it was the latest update of AnySoftKeyboard.
I already told the developer about the issue.
Do anyone experience the same problem?
It's easy to restore the phone, just reboot it in safe mode (keep MENU pressed at boot) and uninstall AnySoftKeyboard.
Ditto
The same thing happened to my wife's X10 mini after updating AnySoftKeyboard, just like you.
Thanks for providing the solution.
Uninstalled.
Nasty bug.
Same happend to me, thanks for sollution.
But I really like the soft-keyboard, hope he/she will fix the bug
good news, latest version in the market fixes the issue!

[Q] Android [Settings] error on Huawei 10FHD

sorry for bad english
Found a strange problem! Pairing tablet via bluetooth with any phone, then choosing pair settings on tablet and in this mometn Settings menu is closing and we see working table with error "error in Settings program". Same thing with choosing mobile network settings. I've got a log of this problem (listed below), anybody can help with this bug?
Code:
D/BluetoothAdapterStateMachine( 1841): BluetoothOn process message: 1
W/BluetoothAdapterStateMachine( 1841): BluetoothOn received: 1
D/BluetoothEnabler( 4541): HW DETECTABILITY DEFAULT is 0
D/LocalBluetoothManager( 4541): setting foreground activity to non-null context
D/BluetoothInputDevice( 4541): getConnectedDevices()
D/BluetoothInputDevice( 4541): getPriority(D8:2A:7E:D1:D1:A2)
D/AndroidRuntime( 4541): Shutting down VM
W/dalvikvm( 4541): threadid=1: thread exiting with uncaught exception (group=0x40a7e1f8)
E/AndroidRuntime( 4541): FATAL EXCEPTION: main
E/AndroidRuntime( 4541): java.lang.NullPointerException
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.HeadsetProfile.isPreferred(HeadsetProfile.java:144)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.CachedBluetoothDevice.connectWithoutResettingTimer(CachedBluetoothDevice.java:238)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.CachedBluetoothDevice.connect(CachedBluetoothDevice.java:209)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.BluetoothDevicePreference.onClicked(BluetoothDevicePreference.java:201)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.DeviceListPreferenceFragment.onDevicePreferenceClick(DeviceListPreferenceFragment.java:192)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.BluetoothSettings.onDevicePreferenceClick(BluetoothSettings.java:369)
E/AndroidRuntime( 4541): at com.android.settings.bluetooth.DeviceListPreferenceFragment.onPreferenceTreeClick(DeviceListPreferenceFragment.java:184)
E/AndroidRuntime( 4541): at android.preference.Preference.performClick(Preference.java:949)
E/AndroidRuntime( 4541): at android.preference.PreferenceScreen.onItemClick(PreferenceScreen.java:202)
E/AndroidRuntime( 4541): at android.widget.AdapterView.performItemClick(AdapterView.java:292)
E/AndroidRuntime( 4541): at android.widget.AbsListView.performItemClick(AbsListView.java:1068)
E/AndroidRuntime( 4541): at android.widget.AbsListView$PerformClick.run(AbsListView.java:2524)
E/AndroidRuntime( 4541): at android.widget.AbsListView$1.run(AbsListView.java:3193)
E/AndroidRuntime( 4541): at android.os.Handler.handleCallback(Handler.java:605)
E/AndroidRuntime( 4541): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime( 4541): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 4541): at android.app.ActivityThread.main(ActivityThread.java:4521)
E/AndroidRuntime( 4541): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4541): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 4541): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:762)
E/AndroidRuntime( 4541): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:529)
E/AndroidRuntime( 4541): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 1841): Force finishing activity com.android.settings/.Settings
D/OppNotification( 2613): Stopping notification thread: NotificationUpdateThread-1356435222415
W/ActivityManager( 1841): Activity pause timeout for ActivityRecord{41595320 com.android.settings/.Settings}
E/dalvikvm( 4801): GC_CONCURRENT freed 1373K, 13% free 11484K/13191K, paused 2ms+15ms
I/Process ( 4541): Sending signal. PID: 4541 SIG: 9
D/Settings( 2052): getAllInstallLangId().length43
D/Settings( 2052): getAllInstallLangId().length43
I/WindowManager( 1841): WIN DEATH: Window{417b2068 com.android.settings/com.android.settings.Settings paused=false}
I/ActivityManager( 1841): Process com.android.settings (pid 4541) has died.
W/ActivityManager( 1841): Activity destroy timeout for ActivityRecord{41595320 com.android.settings/.Settings}

Using internal memory by default?

I am rooting and flashing a nook for my friend and I've been using my own sd in the process. When I give the nook back I'll take my ad out of it so is there a way of making the nook's internal memory partition as its default memory for storage and whatnot? I think I saw a rom that did this but I might be mistaken
This probably belongs in q&a. Search the forums specifically look into posts under the various ROM posts as I believe it has been covered numerous times. Vold.fstab. In addition an SD card costs $5-10 and comes in handy when updating or troubleshooting problems. Its a wise investment for the minimal expense.
Sent from my CM 10 nook. Thanks devs.
Yes, it's all about the recovery you install and then you can flash a rom using emmc by default. So, the answer is YES.
http://forum.xda-developers.com/showthread.php?t=2056626
katu2006 said:
Yes, it's all about the recovery you install and then you can flash a rom using emmc by default. So, the answer is YES.
http://forum.xda-developers.com/showthread.php?t=2056626
Click to expand...
Click to collapse
Uhh he was asking if STORAGE could be set to default to emmc not about installing ROMs from emmc.
Sent from my CM 10 nook. Thanks devs.
7heBoss said:
I am rooting and flashing a nook for my friend and I've been using my own sd in the process. When I give the nook back I'll take my ad out of it so is there a way of making the nook's internal memory partition as its default memory for storage and whatnot? I think I saw a rom that did this but I might be mistaken
Click to expand...
Click to collapse
See the thread http://forum.xda-developers.com/showthread.php?t=2068595.
SlowCobra96 said:
Uhh he was asking if STORAGE could be set to default to emmc not about installing ROMs from emmc.
Sent from my CM 10 nook. Thanks devs.
Click to expand...
Click to collapse
Misread the post, i thought he was running the rooted version of the SD card...
So I have figured out what I need to do, I just have yet to figure out exactly what text I need to change in that file in order to work for me. I want it to work without an sd in the slot.
7heBoss said:
So I have figured out what I need to do, I just have yet to figure out exactly what text I need to change in that file in order to work for me. I want it to work without an sd in the slot.
Click to expand...
Click to collapse
adb shell setprop persist.sys.vold.switchexternal 1
Click to expand...
Click to collapse
OR directly in Terminal emulator:
su
setprop persist.sys.vold.switchexternal 1
Click to expand...
Click to collapse
This feature was inroduced in CM9 but unfortunelly it missing GUI control in Settings in CM10.
mik_os said:
OR directly in Terminal emulator:
This feature was inroduced in CM9 but unfortunelly it missing GUI control in Settings in CM10.
Click to expand...
Click to collapse
Words can't even express how Thankful I am right now. This is exactly what I was looking for. I was going crazy and getting super frustrated but I finally have this all worked out. Thanks again
7heBoss said:
Words can't even express how Thankful I am right now. This is exactly what I was looking for. I was going crazy and getting super frustrated but I finally have this all worked out. Thanks again
Click to expand...
Click to collapse
Can you post whether you encounter any negative side-effect with this fix (such as reported in this thread http://forum.xda-developers.com/showpost.php?p=35945579&postcount=1)?
digixmax said:
Can you post whether you encounter any negative side-effect with this fix (such as reported in this thread http://forum.xda-developers.com/showpost.php?p=35945579&postcount=1)?
Click to expand...
Click to collapse
Nope, it appears after swapping storage using this way I still get the process android.process.media force closing. (CM10.1)
noobernz said:
Nope, it appears after swapping storage using this way I still get the process android.process.media force closing. (CM10.1)
Click to expand...
Click to collapse
Here is excerpt from Logcat when trying to get to the play store and receiving the error:
Code:
I/ActivityThread( 3813): Pub drm: com.android.providers.drm.DrmProvider
I/DownloadManager( 3813): in removeSpuriousFiles
I/ActivityThread( 3813): Pub media: com.android.providers.media.MediaProvider
E/MediaProvider( 3813): Can't obtain external volume ID even though it's mounted.
D/AndroidRuntime( 3813): Shutting down VM
W/dalvikvm( 3813): threadid=1: thread exiting with uncaught exception (group=0x40e7a930)
E/AndroidRuntime( 3813): FATAL EXCEPTION: main
E/AndroidRuntime( 3813): java.lang.RuntimeException: Unable to get provider com.android.providers.media.MediaProvider: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3813): at android.app.ActivityThread.installProvider(ActivityThread.java:4972)
E/AndroidRuntime( 3813): at android.app.ActivityThread.installContentProviders(ActivityThread.java:4582)
E/AndroidRuntime( 3813): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4524)
E/AndroidRuntime( 3813): at android.app.ActivityThread.access$1300(ActivityThread.java:150)
E/AndroidRuntime( 3813): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1304)
E/AndroidRuntime( 3813): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3813): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 3813): at android.app.ActivityThread.main(ActivityThread.java:5191)
E/AndroidRuntime( 3813): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3813): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 3813): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime( 3813): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
E/AndroidRuntime( 3813): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 3813): Caused by: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3813): at com.android.providers.media.MediaProvider.attachVolume(MediaProvider.java:4986)
E/AndroidRuntime( 3813): at com.android.providers.media.MediaProvider.onCreate(MediaProvider.java:598)
E/AndroidRuntime( 3813): at android.content.ContentProvider.attachInfo(ContentProvider.java:1058)
E/AndroidRuntime( 3813): at android.app.ActivityThread.installProvider(ActivityThread.java:4969)
E/AndroidRuntime( 3813): ... 12 more
D/OpenGLRenderer( 3780): Enabling debug mode 0
W/IInputConnectionWrapper( 614): showStatusIcon on inactive InputConnection
D/Finsky ( 3780): [1] SelfUpdateScheduler.checkForSelfUpdate: Skipping DFE self-update. Local Version [8016010] >= Server Version [-1]
D/dalvikvm( 3780): GC_CONCURRENT freed 196K, 10% free 3440K/3816K, paused 11ms+11ms, total 44ms
I/Choreographer( 493): Skipped 44 frames! The application may be doing too much work on its main thread.
D/Finsky ( 3780): [1] 2.run: Loaded library for account: [CeCzEOBU3MuyC-Ig393z6fIL5Hs]
D/Finsky ( 3780): [1] 2.run: Finished loading 1 libraries.
I/ActivityManager( 381): Displayed com.android.vending/.AssetBrowserActivity: +1s57ms
D/Finsky ( 3780): [1] InstallerImpl.kick: Installer kick null - no action, not running yet
D/Finsky ( 3780): [1] MainActivity.initializeBilling: Optimistically initializing billing parameters.
I/QuickSettingsController( 493): Default tiles being loaded
I/QuickSettingsController( 493): Tiles list: toggleUser|toggleBrightness|toggleSettings|toggleWifi|toggleMobileData|toggleBattery|toggleAirplane|toggleBluetooth
D/dalvikvm( 3780): GC_FOR_ALLOC freed 210K, 11% free 3513K/3908K, paused 29ms, total 29ms
D/dalvikvm( 3780): GC_FOR_ALLOC freed 10K, 10% free 3788K/4184K, paused 25ms, total 25ms
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/dalvikvm( 3780): GC_FOR_ALLOC freed 138K, 8% free 4000K/4328K, paused 33ms, total 33ms
D/dalvikvm( 3780): GC_FOR_ALLOC freed 8K, 8% free 4226K/4564K, paused 31ms, total 32ms
I/dalvikvm-heap( 3780): Grow heap (frag case) to 5.265MB for 1013776-byte allocation
D/dalvikvm( 3780): GC_FOR_ALLOC freed <1K, 7% free 5216K/5556K, paused 32ms, total 32ms
D/dalvikvm( 3780): GC_CONCURRENT freed 2K, 6% free 5291K/5612K, paused 3ms+4ms, total 47ms
D/dalvikvm( 3780): GC_FOR_ALLOC freed 52K, 4% free 6009K/6244K, paused 23ms, total 23ms
D/dalvikvm( 3780): GC_CONCURRENT freed 56K, 4% free 7158K/7392K, paused 3ms+3ms, total 32ms
D/dalvikvm( 3780): GC_FOR_ALLOC freed 44K, 3% free 8266K/8504K, paused 27ms, total 27ms
D/dalvikvm( 3780): GC_FOR_ALLOC freed 24K, 3% free 9366K/9584K, paused 26ms, total 26ms
D/Finsky ( 3780): [1] BitmapLoader.onGetImageSuccess: #W720#H0http://lh3.ggpht.com/meAsKuRNusGOGdu0-GQZU_1ttJIahYiv7n2UAQeOmX-LuMaS2fUtjSV-J68haJ6qw8Y=w720 is too large to cache
D/Finsky ( 3780): [1] BitmapLoader.onGetImageSuccess: #W720#H0http://lh3.ggpht.com/_xTM0NIKM_JKPrO0c-H9Wvlru765wwiK5sfYNrMXfWxjF_fwlXMyBQtxt1F8E203zw5h=w720 is too large to cache
D/Finsky ( 3780): [1] BitmapLoader.onGetImageSuccess: #W720#H0http://lh4.ggpht.com/i9_A4pBMd275x6VtvBrYUgw151O5i8lFqGq1AQ-Y5wX4iM77PKIAEwR9VuFhso9yzJc=w720 is too large to cache
D/Finsky ( 3780): [1] BitmapLoader.onGetImageSuccess: #W720#H0http://lh6.ggpht.com/scuFNy24WOBaRdAhDq6CPRq4t5z11iv4KLDp1xoB527epHLAVuJLqb_tECQQs36ytQSO=w720 is too large to cache
D/dalvikvm( 3780): GC_EXPLICIT freed 328K, 5% free 10183K/10688K, paused 9ms+10ms, total 114ms
D/dalvikvm( 381): GC_EXPLICIT freed 1394K, 32% free 9874K/14348K, paused 10ms+10ms, total 123ms
I/Process ( 3813): Sending signal. PID: 3813 SIG: 9
I/ActivityManager( 381): Process android.process.media (pid 3813) has died.
W/ActivityManager( 381): Scheduling restart of crashed service com.android.providers.downloads/.DownloadService in 13032ms
I/ActivityManager( 381): Start proc android.process.media for restart android.process.media: pid=3840 uid=10017 gids={50017, 1015, 1023, 1024, 1028, 2001, 3003, 3007}
W/InputMethodManagerService( 381): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
I/ActivityThread( 3840): Pub downloads: com.android.providers.downloads.DownloadProvider
I/DownloadManager( 3840): in removeSpuriousFiles
I/ActivityThread( 3840): Pub drm: com.android.providers.drm.DrmProvider
I/ActivityThread( 3840): Pub media: com.android.providers.media.MediaProvider
E/MediaProvider( 3840): Can't obtain external volume ID even though it's mounted.
D/AndroidRuntime( 3840): Shutting down VM
W/dalvikvm( 3840): threadid=1: thread exiting with uncaught exception (group=0x40e7a930)
E/AndroidRuntime( 3840): FATAL EXCEPTION: main
E/AndroidRuntime( 3840): java.lang.RuntimeException: Unable to get provider com.android.providers.media.MediaProvider: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3840): at android.app.ActivityThread.installProvider(ActivityThread.java:4972)
E/AndroidRuntime( 3840): at android.app.ActivityThread.installContentProviders(ActivityThread.java:4582)
E/AndroidRuntime( 3840): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4524)
E/AndroidRuntime( 3840): at android.app.ActivityThread.access$1300(ActivityThread.java:150)
E/AndroidRuntime( 3840): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1304)
E/AndroidRuntime( 3840): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3840): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 3840): at android.app.ActivityThread.main(ActivityThread.java:5191)
E/AndroidRuntime( 3840): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3840): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 3840): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime( 3840): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
E/AndroidRuntime( 3840): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 3840): Caused by: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3840): at com.android.providers.media.MediaProvider.attachVolume(MediaProvider.java:4986)
E/AndroidRuntime( 3840): at com.android.providers.media.MediaProvider.onCreate(MediaProvider.java:598)
E/AndroidRuntime( 3840): at android.content.ContentProvider.attachInfo(ContentProvider.java:1058)
E/AndroidRuntime( 3840): at android.app.ActivityThread.installProvider(ActivityThread.java:4969)
E/AndroidRuntime( 3840): ... 12 more
W/ActivityManager( 381): Process android.process.media has crashed too many times: killing!
I/ActivityManager( 381): Killing proc 3840:android.process.media/u0a10017: crash
W/Finsky ( 3780): [336] DownloadManagerImpl.queryAllDownloads: Download progress cursor null when attempting to fetch all Downloads.
D/Finsky ( 3780): [1] InstallerImpl.kick: Installer kick null - starting com.eamobile.nfsshift_na_wf
W/ActivityManager( 381): Unable to launch app com.android.providers.downloads/10017 for provider downloads: launching app became null
E/ActivityThread( 3780): Failed to find provider info for downloads
D/Finsky ( 3780): [1] DownloadImpl.setState: com.eamobile.nfsshift_na_wf from null to UNQUEUED.
D/Finsky ( 3780): [1] DownloadQueueImpl.add: Download com.eamobile.nfsshift_na_wf added to DownloadQueue
D/Finsky ( 3780): [1] DownloadImpl.setState: com.eamobile.nfsshift_na_wf from UNQUEUED to QUEUED.
I/installd( 99): free_cache(1225593) avail 3262046208
I/ActivityManager( 381): Start proc android.process.media for content provider com.android.providers.downloads/.DownloadProvider: pid=3857 uid=10017 gids={50017, 1015, 1023, 1024, 1028, 2001, 3003, 3007}
D/Finsky ( 3780): [1] DownloadQueueImpl.startDownload: Download com.eamobile.nfsshift_na_wf starting
I/ActivityThread( 3857): Pub downloads: com.android.providers.downloads.DownloadProvider
I/DownloadManager( 3857): in removeSpuriousFiles
I/ActivityThread( 3857): Pub drm: com.android.providers.drm.DrmProvider
I/ActivityThread( 3857): Pub media: com.android.providers.media.MediaProvider
E/MediaProvider( 3857): Can't obtain external volume ID even though it's mounted.
D/AndroidRuntime( 3857): Shutting down VM
W/dalvikvm( 3857): threadid=1: thread exiting with uncaught exception (group=0x40e7a930)
E/AndroidRuntime( 3857): FATAL EXCEPTION: main
E/AndroidRuntime( 3857): java.lang.RuntimeException: Unable to get provider com.android.providers.media.MediaProvider: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3857): at android.app.ActivityThread.installProvider(ActivityThread.java:4972)
E/AndroidRuntime( 3857): at android.app.ActivityThread.installContentProviders(ActivityThread.java:4582)
E/AndroidRuntime( 3857): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4524)
E/AndroidRuntime( 3857): at android.app.ActivityThread.access$1300(ActivityThread.java:150)
E/AndroidRuntime( 3857): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1304)
E/AndroidRuntime( 3857): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3857): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 3857): at android.app.ActivityThread.main(ActivityThread.java:5191)
E/AndroidRuntime( 3857): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3857): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 3857): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime( 3857): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
E/AndroidRuntime( 3857): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 3857): Caused by: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3857): at com.android.providers.media.MediaProvider.attachVolume(MediaProvider.java:4986)
E/AndroidRuntime( 3857): at com.android.providers.media.MediaProvider.onCreate(MediaProvider.java:598)
E/AndroidRuntime( 3857): at android.content.ContentProvider.attachInfo(ContentProvider.java:1058)
E/AndroidRuntime( 3857): at android.app.ActivityThread.installProvider(ActivityThread.java:4969)
E/AndroidRuntime( 3857): ... 12 more
I/Process ( 3857): Sending signal. PID: 3857 SIG: 9
I/ActivityManager( 381): Process android.process.media (pid 3857) has died.
W/ActivityManager( 381): Scheduling restart of crashed service com.android.providers.downloads/.DownloadService in 5000ms
I/ActivityManager( 381): Start proc android.process.media for restart android.process.media: pid=3873 uid=10017 gids={50017, 1015, 1023, 1024, 1028, 2001, 3003, 3007}
W/InputMethodManagerService( 381): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
I/ActivityThread( 3873): Pub downloads: com.android.providers.downloads.DownloadProvider
I/ActivityThread( 3873): Pub drm: com.android.providers.drm.DrmProvider
I/DownloadManager( 3873): in removeSpuriousFiles
I/ActivityThread( 3873): Pub media: com.android.providers.media.MediaProvider
E/MediaProvider( 3873): Can't obtain external volume ID even though it's mounted.
D/AndroidRuntime( 3873): Shutting down VM
W/dalvikvm( 3873): threadid=1: thread exiting with uncaught exception (group=0x40e7a930)
E/AndroidRuntime( 3873): FATAL EXCEPTION: main
E/AndroidRuntime( 3873): java.lang.RuntimeException: Unable to get provider com.android.providers.media.MediaProvider: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3873): at android.app.ActivityThread.installProvider(ActivityThread.java:4972)
E/AndroidRuntime( 3873): at android.app.ActivityThread.installContentProviders(ActivityThread.java:4582)
E/AndroidRuntime( 3873): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4524)
E/AndroidRuntime( 3873): at android.app.ActivityThread.access$1300(ActivityThread.java:150)
E/AndroidRuntime( 3873): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1304)
E/AndroidRuntime( 3873): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3873): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 3873): at android.app.ActivityThread.main(ActivityThread.java:5191)
E/AndroidRuntime( 3873): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3873): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 3873): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime( 3873): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
E/AndroidRuntime( 3873): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 3873): Caused by: java.lang.IllegalArgumentException: Can't obtain external volume ID for external volume.
E/AndroidRuntime( 3873): at com.android.providers.media.MediaProvider.attachVolume(MediaProvider.java:4986)
E/AndroidRuntime( 3873): at com.android.providers.media.MediaProvider.onCreate(MediaProvider.java:598)
E/AndroidRuntime( 3873): at android.content.ContentProvider.attachInfo(ContentProvider.java:1058)
E/AndroidRuntime( 3873): at android.app.ActivityThread.installProvider(ActivityThread.java:4969)
E/AndroidRuntime( 3873): ... 12 more
W/ActivityManager( 381): Process android.process.media has crashed too many times: killing!
I/ActivityManager( 381): Killing proc 3873:android.process.media/u0a10017: crash
I/ActivityManager( 381): Kill com.android.vending (pid 3780): provider com.android.providers.downloads.DownloadProvider in dying process android.process.media
W/ActivityManager( 381): Unable to launch app com.android.providers.downloads/10017 for provider downloads: launching app became null
W/ActivityManager( 381): Unable to launch app com.android.providers.downloads/10017 for provider downloads: launching app became null
I/WindowState( 381): WIN DEATH: Window{41882c90 u0 com.android.vending/com.android.vending.AssetBrowserActivity}
I/ActivityManager( 381): Process com.android.vending (pid 3780) has died.
W/ActivityManager( 381): Force removing ActivityRecord{416c6b58 u0 com.android.vending/.AssetBrowserActivity}: app died, no saved state
I/InputReader( 381): Reconfiguring input devices. changes=0x00000004
I/InputReader( 381): Device reconfigured: id=5, name='ft5x06-i2c', size 1024x600, orientation 3, mode 1, display id 0
I/ActivityManager( 381): Config changed: {1.0 ?mcc?mnc en_US ldltr sw600dp w600dp h951dp 160dpi lrg port finger -keyb/v/h -nav/h s.20 themeResource=null}
W/InputMethodManagerService( 381): Got RemoteException sending setActive(false) notification to pid 3780 uid 10058
I/QuickSettingsController( 493): Default tiles being loaded
I/QuickSettingsController( 493): Tiles list: toggleUser|toggleBrightness|toggleSettings|toggleWifi|toggleMobileData|toggleBattery|toggleAirplane|toggleBluetooth
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/BluetoothAdapter( 493): 1092469392: getState() : mService = null. Returning STATE_OFF
D/dalvikvm( 381): GC_EXPLICIT freed 446K, 32% free 9792K/14348K, paused 8ms+7ms, total 139ms

[Q] [Help] Adding Su to build

I'm in the process of learning to build android from source. I've got my AOKP rom booting and am working on adding superuser to it, and am running into troubles. After much googling here is what I've done
Cloned Superuser source code
Code:
git clone git://github.com/ChainsDD/Superuser.git packages/apps/Superuser
Copied the su binary from my current rom (/system/xbin/su) to my device tree
Edited device.mk
Code:
# Build superuser
PRODUCT_PACKAGES := \
Superuser
# copy su binary
PRODUCT_COPY_FILES += \
device/lge/E973/su:system/xbin/su
Everything built fine and Superuser is in my app drawer when rom boots. If i try to open Superuser it force closes. Root checker shows that i am rooted, and typing 'su' in terminal emulator gets root access. Neither will give me a dialog asking to deny or grant.
If i install SuperSuperuser from the market, it will present all the normal dialogs and everything seems as it should.
I'm wondering what it is I'm doing wrong, and how I can correct it.
Here is a logcat of the failed attempt to open superuser
Code:
D/dalvikvm( 2157): Late-enabling CheckJNI
I/ActivityManager( 530): Start proc com.noshufou.android.su for activity com.noshufou.android.su/.Su: pid=2157 uid=10040 gids={50040, 3003, 1015, 1028}
I/dalvikvm( 2157): Turning on JNI app bug workarounds for target SDK version 11...
D/overlay ( 161): FROM_STATE = OV_BYPASS_3_LAYER TO_STATE = OV_CLOSED
I/ActivityThread( 2157): Pub com.noshufou.android.su.provider: com.noshufou.android.su.provider.PermissionsProvider
D/Su.HomeActivity( 2157): onCreate()
D/AndroidRuntime( 2157): Shutting down VM
W/dalvikvm( 2157): threadid=1: thread exiting with uncaught exception (group=0x40dd7930)
E/AndroidRuntime( 2157): FATAL EXCEPTION: main
E/AndroidRuntime( 2157): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.noshufou.android.su/com.noshufou.android.su.HomeActivity}: java.lang.RuntimeException: java.lang.NoSuchMethodException: <init> [class android.app.Activity, int]
E/AndroidRuntime( 2157): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2306)
E/AndroidRuntime( 2157): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2356)
E/AndroidRuntime( 2157): at android.app.ActivityThread.access$600(ActivityThread.java:150)
E/AndroidRuntime( 2157): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1244)
E/AndroidRuntime( 2157): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 2157): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 2157): at android.app.ActivityThread.main(ActivityThread.java:5193)
E/AndroidRuntime( 2157): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 2157): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 2157): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime( 2157): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
E/AndroidRuntime( 2157): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 2157): Caused by: java.lang.RuntimeException: java.lang.NoSuchMethodException: <init> [class android.app.Activity, int]
E/AndroidRuntime( 2157): at com.actionbarsherlock.ActionBarSherlock.wrap(ActionBarSherlock.java:232)
E/AndroidRuntime( 2157): at com.actionbarsherlock.app.SherlockFragmentActivity.getSherlock(SherlockFragmentActivity.java:32)
E/AndroidRuntime( 2157): at com.actionbarsherlock.app.SherlockFragmentActivity.requestWindowFeature(SherlockFragmentActivity.java:265)
E/AndroidRuntime( 2157): at com.noshufou.android.su.HomeActivity.onCreate(HomeActivity.java:59)
E/AndroidRuntime( 2157): at android.app.Activity.performCreate(Activity.java:5104)
E/AndroidRuntime( 2157): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
E/AndroidRuntime( 2157): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2260)
E/AndroidRuntime( 2157): ... 11 more
E/AndroidRuntime( 2157): Caused by: java.lang.NoSuchMethodException: <init> [class android.app.Activity, int]
E/AndroidRuntime( 2157): at java.lang.Class.getConstructorOrMethod(Class.java:460)
E/AndroidRuntime( 2157): at java.lang.Class.getConstructor(Class.java:431)
E/AndroidRuntime( 2157): at com.actionbarsherlock.ActionBarSherlock.wrap(ActionBarSherlock.java:229)
E/AndroidRuntime( 2157): ... 17 more
W/ActivityManager( 530): Force finishing activity com.noshufou.android.su/.Su
D/dalvikvm( 2157): GC_CONCURRENT freed 219K, 15% free 2489K/2912K, paused 2ms+1ms, total 21ms
I/dalvikvm( 530): Jit: resizing JitTable from 8192 to 16384
W/ActivityManager( 530): Activity pause timeout for ActivityRecord{41681370 u0 com.noshufou.android.su/.Su}
I/Process ( 2157): Sending signal. PID: 2157 SIG: 9
I/ActivityManager( 530): Process com.noshufou.android.su (pid 2157) has died.
W/InputMethodManagerService( 530): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
D/dalvikvm( 530): GC_CONCURRENT freed 7964K, 44% free 13574K/23868K, paused 2ms+6ms, total 57ms
D/overlay ( 161): FROM_STATE = OV_CLOSED TO_STATE = OV_BYPASS_3_LAYER
just a lilttle bump, if anyone can just point me in the dirrection of where i'm going wrong here I would be very appreciative.

Porting Rom, crashes after "unfortunately the process com.android.phone has stopped"

Porting Rom, crashes after "unfortunately the process com.android.phone has stopped"
I'm trying to port a 4.0.4 rom from the samsung galaxy note to the xperia play. I've crushed a good amount of bugs so far, but I still can't get it past the boot-splash except for a couple seconds after wiping the dalvik cache or not wiping data on first boot.
So when I flash my attempted port rom over itself with wiping everything but data it boots and I get to the android is updating screen and after it's finished optimizing all the apps a dialog box with "unfortunately the process com.android.phone has stopped" and I can see the android setup screen in the background. But immediately after the dialog box appears my phone soft reboots (it goes immediately to the boot-splash) and is stuck at the boot-splash.
If I flash the attempted port rom after wiping everything including data I'm just stuck at the boot-splash screen.
Here is the logcat when the phone crashes after the error dialog onscreen:
Code:
[ 01-06 06:21:43.507 2024:0x7e8 E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to create application com.android.phone.PhoneApp: java.lang.RuntimeException: java.lang.ClassNotFoundException: com.android.internal.telephony.SemcRIL
at android.app.ActivityThread.handleBindApplication(ActivityThread.java)
at android.app.ActivityThread.access$1300(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: com.android.internal.telephony.SemcRIL
at com.android.internal.telephony.PhoneFactory.makeDefaultPhone(PhoneFactory.java)
at com.android.internal.telephony.PhoneFactory.makeDefaultPhones(PhoneFactory.java)
at com.android.phone.PhoneApp.onCreate(PhoneApp.java:443)
at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java)
... 11 more
Caused by: java.lang.ClassNotFoundException: com.android.internal.telephony.SemcRIL
at java.lang.Class.classForName(Native Method)
at java.lang.Class.forName(Class.java:217)
at java.lang.Class.forName(Class.java:172)
... 15 more
Caused by: java.lang.NoClassDefFoundError: com/android/internal/telephony/SemcRIL
... 18 more
Caused by: java.lang.ClassNotFoundException: com.android.internal.telephony.SemcRIL
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:61)
at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
... 18 more
Right here also seems to be where the setup wizard fails to start or something similar, does anyone know what this log means?
Code:
[ 01-06 07:09:05.237 1923:0x783 E/ViewRootImpl ]
IllegalArgumentException locking surface
java.lang.IllegalArgumentException
at android.view.Surface.lockCanvasNative(Native Method)
at android.view.Surface.lockCanvas(Surface.java)
at android.view.ViewRootImpl.draw(ViewRootImpl.java)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java)
at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 07:09:05.237 1923:0x783 D/PhoneStatusBar ]
disable: < EXPAND ICONS ALERTS ticker SYSTEM_INFO back HOME RECENT clock >
[ 01-06 07:09:05.237 1923:0x7cc I/StorageNotification ]
UMS connection changed to true (media state removed)
[ 01-06 07:09:05.237 2069:0x815 E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to get provider com.google.android.gsf.subscribedfeeds.SubscribedFeedsProvider: java.lang.NullPointerException
at android.app.ActivityThread.installProvider(ActivityThread.java)
at android.app.ActivityThread.installContentProviders(ActivityThread.java)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java)
at android.app.ActivityThread.access$1300(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.accounts.AccountManager.getAccounts(AccountManager.java)
at android.accounts.AccountManager.addOnAccountsUpdatedListener(AccountManager.java)
at com.google.android.gsf.subscribedfeeds.AbstractSyncableContentProvider.onCreate(AbstractSyncableContentProvider.java:169)
at com.google.android.gsf.subscribedfeeds.SubscribedFeedsProvider.onCreate(SubscribedFeedsProvider.java:78)
at android.content.ContentProvider.attachInfo(ContentProvider.java)
... 13 more
[ 01-06 07:09:05.247 2069:0x815 I/Process ]
Sending signal. PID: 2069 SIG: 9
[ 01-06 07:09:05.247 2069:0x815 E/AndroidRuntime ]
Error reporting crash
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java)
at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 07:09:05.257 2020:0x7e4 E/InputQueue-JNI ]
channel '2bcfa598 com.google.android.setupwizard/com.google.android.setupwizard.WelcomeActivity (client)' ~ Publisher closed input channel or an error occurred. events=0x8
[ 01-06 07:09:05.267 1824:0x720 I/Zygote ]
Exit zygote because system server (1830) has terminated
[ 01-06 07:09:05.427 2118:0x846 D/AndroidRuntime ]
I hope someone can help me
Thank's to everyone in advance :fingers-crossed:
So I can't interact with my phone, but after digging a little deeper I was able to get it to not reboot, but now it flashes from a blank screen to a screen that says "unfortunately the process com.android.phone has stopped" with the statusbar indicating no network and the app to set up your phone in the background and adb produced some new errors that I can't begin to understand.
Code:
01-06 11:33:56.058 8063:0x1f9e E/AndroidRuntime ]
*** FATAL EXCEPTION IN SYSTEM PROCESS: android.server.ServerThread
java.lang.RuntimeException: Error receiving broadcast Intent { act=android.hardware.usb.action.USB_STATE flg=0x20000010 (has extras) } in [email protected]
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java)
at android.os.Handler.handleCallback(Handler.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at com.android.server.ServerThread.run(SystemServer.java:826)
Caused by: java.lang.IllegalArgumentException
at com.android.server.MountService.getVolumeState(MountService.java:1404)
at com.android.server.MountService.notifyShareAvailabilityChange(MountService.java:1026)
at com.android.server.MountService.access$1300(MountService.java:92)
at com.android.server.MountService$1.onReceive(MountService.java:546)
... 5 more
[ 01-06 11:33:56.248 8224:0x2020 E/AbstractCompatWrapper ]
Invalid input to AbstructCompatWrapper
[ 01-06 11:33:56.248 8224:0x2020 E/CompatUtils ]
Exception in invoke: NullPointerException
[ 01-06 11:33:56.248 8224:0x2020 E/CompatUtils ]
Exception in invoke: InvocationTargetException
[ 01-06 11:33:56.268 8241:0x2031 E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.AssertionError: android.os.DeadObjectException
at android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java)
at android.app.LoadedApk.getClassLoader(LoadedApk.java)
at android.app.LoadedApk.makeApplication(LoadedApk.java)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java)
at android.app.ActivityThread.access$1300(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.content.pm.IPackageManager$Stub$Proxy.getPackageInfo(IPackageManager.java)
... 14 more
[ 01-06 11:33:56.268 8241:0x2031 E/AndroidRuntime ]
Error reporting crash
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java)
at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 11:33:56.278 8224:0x2020 E/AbstractCompatWrapper ]
Invalid input to AbstructCompatWrapper
[ 01-06 11:33:56.278 8224:0x2020 E/CompatUtils ]
Exception in invoke: NullPointerException
[ 01-06 11:33:56.288 8254:0x203e E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.AssertionError: android.os.DeadObjectException
at android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java)
at android.app.LoadedApk.getClassLoader(LoadedApk.java)
at android.app.LoadedApk.makeApplication(LoadedApk.java)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java)
at android.app.ActivityThread.access$1300(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.content.pm.IPackageManager$Stub$Proxy.getPackageInfo(IPackageManager.java)
... 14 more
[ 01-06 11:33:56.288 8254:0x203e E/AndroidRuntime ]
Error reporting crash
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java)
at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 11:33:56.328 8224:0x2020 E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to create service com.android.inputmethod.latin.LatinIME: java.lang.NullPointerException
at android.app.ActivityThread.handleCreateService(ActivityThread.java)
at android.app.ActivityThread.access$1600(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.view.accessibility.AccessibilityManager.<init>(AccessibilityManager.java)
at android.view.accessibility.AccessibilityManager.getInstance(AccessibilityManager.java)
at android.app.ContextImpl$2.getService(ContextImpl.java)
at android.app.ContextImpl.getSystemService(ContextImpl.java)
at android.content.ContextWrapper.getSystemService(ContextWrapper.java)
at com.android.inputmethod.accessibility.AccessibilityUtils.initInternal(AccessibilityUtils.java:79)
at com.android.inputmethod.accessibility.AccessibilityUtils.init(AccessibilityUtils.java:63)
at com.android.inputmethod.latin.LatinIME.onCreate(LatinIME.java:495)
... 11 more
[ 01-06 11:33:56.328 8224:0x2020 E/AndroidRuntime ]
Error reporting crash
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java)
at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 11:33:56.328 1608:0x648 E/installd ]
eof
[ 01-06 11:33:56.328 1608:0x648 E/installd ]
failed to read size
[ 01-06 11:33:56.418 8158:0x1fde E/InputQueue-JNI ]
channel '2b8e8580 RecentsPanel (client)' ~ Publisher closed input channel or an error occurred. events=0x8
[ 01-06 11:33:56.418 8158:0x1fde E/AudioManager ]
Dead object in getRingerMode
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.media.IAudioService$Stub$Proxy.getRingerMode(IAudioService.java)
at android.media.AudioManager.getRingerMode(AudioManager.java)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy.updateVolume(PhoneStatusBarPolicy.java:245)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy.access$300(PhoneStatusBarPolicy.java:53)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy$1.onReceive(PhoneStatusBarPolicy.java:133)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java)
at android.os.Handler.handleCallback(Handler.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 11:33:56.428 8158:0x1fde E/AudioManager ]
Dead object in shouldVibrate
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.media.IAudioService$Stub$Proxy.shouldVibrate(IAudioService.java)
at android.media.AudioManager.shouldVibrate(AudioManager.java)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy.updateVolume(PhoneStatusBarPolicy.java:251)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy.access$300(PhoneStatusBarPolicy.java:53)
at com.android.systemui.statusbar.phone.PhoneStatusBarPolicy$1.onReceive(PhoneStatusBarPolicy.java:133)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java)
at android.os.Handler.handleCallback(Handler.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
[ 01-06 11:33:56.438 8158:0x1fde E/AndroidRuntime ]
FATAL EXCEPTION: main
java.lang.RuntimeException: Package manager has died
at android.app.ApplicationPackageManager.getApplicationInfo(ApplicationPackageManager.java)
at android.app.ApplicationPackageManager.getResourcesForApplication(ApplicationPackageManager.java)
at com.android.systemui.statusbar.StatusBarIconView.getIcon(StatusBarIconView.java:185)
at com.android.systemui.statusbar.StatusBarIconView.getIcon(StatusBarIconView.java:169)
at com.android.systemui.statusbar.StatusBarIconView.set(StatusBarIconView.java:138)
at com.android.systemui.statusbar.StatusBarIconView.set(StatusBarIconView.java:122)
at com.android.systemui.statusbar.phone.PhoneStatusBar.addIcon(PhoneStatusBar.java:734)
at com.android.systemui.statusbar.CommandQueue$H.handleMessage(CommandQueue.java:212)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.content.pm.IPackageManager$Stub$Proxy.getApplicationInfo(IPackageManager.java)
... 16 more
[ 01-06 11:33:56.438 8158:0x1fde E/AndroidRuntime ]
Error reporting crash
android.os.DeadObjectException
at android.os.BinderProxy.transact(Native Method)
at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java)
at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
at dalvik.system.NativeStart.main(Native Method)

Categories

Resources