Did I screwed up my table (ME176CX)? Need advice... - MeMO Pad 7 Q&A, Help & Troubleshooting

HI,
When I swipe down on the screen of my rooted ASUS MeMO Pad 7 (ME176CX), select
"Settings" and then "Data Usage", "Settings" dies with the notification:
"Unfortunately Settings has stopped! [OK]"
(by the way: what's [OK] with this??? ;|
With calog I found this:
08-08 18:52:21.109 I/ActivityManager(731): Start proc com.asus.powersaver for broadcast com.asus.powersaver/.BootReceiver: pid=3581 uid=1000 gids={41000, 9997, 3003, 3002, 3001, 1028, 1015, 1023} abi=x86
08-08 18:52:21.149 D/AndroidRuntime(3350): Shutting down VM
08-08 18:52:21.149 E/AndroidRuntime(3350): FATAL EXCEPTION: main
08-08 18:52:21.149 E/AndroidRuntime(3350): Process: com.android.settings, PID: 3350
08-08 18:52:21.149 E/AndroidRuntime(3350): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.settings/com.android.settings.SubSettings}: java.lang.NullPointerException: Attempt to invoke interface method 'boolean com.android.internal.telephony.ITelephony.getDataEnabled()' on a null object reference
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2316)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2376)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread.access$800(ActivityThread.java:147)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1281)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.os.Handler.dispatchMessage(Handler.java:102)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.os.Looper.loop(Looper.java:135)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread.main(ActivityThread.java:5253)
08-08 18:52:21.149 E/AndroidRuntime(3350): at java.lang.reflect.Method.invoke(Native Method)
08-08 18:52:21.149 E/AndroidRuntime(3350): at java.lang.reflect.Method.invoke(Method.java:372)
08-08 18:52:21.149 E/AndroidRuntime(3350): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
08-08 18:52:21.149 E/AndroidRuntime(3350): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
08-08 18:52:21.149 E/AndroidRuntime(3350): Caused by: java.lang.NullPointerException: Attempt to invoke interface method 'boolean com.android.internal.telephony.ITelephony.getDataEnabled()' on a null object reference
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.telephony.TelephonyManager.getDataEnabled(TelephonyManager.java:3449)
08-08 18:52:21.149 E/AndroidRuntime(3350): at com.android.settings.DataUsageSummary.onCreateView(DataUsageSummary.java:382)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.Fragment.performCreateView(Fragment.java:2053)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:894)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1067)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1049)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.FragmentManagerImpl.dispatchActivityCreated(FragmentManager.java:1869)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.Activity.performCreateCommon(Activity.java:5970)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.Activity.performCreate(Activity.java:5977)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
08-08 18:52:21.149 E/AndroidRuntime(3350): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2269)
08-08 18:52:21.149 E/AndroidRuntime(3350): ... 10 more
Is this with any MeMO Pad 7 ME176CX as it is a tablet and no phone or did I screwed up my tablet?
Since I am rooted and suppose I need to do a factory reset -- is there any tutorial on this or do
I only need to reboot into droidboot and select fectory reset?
Thank you very much in advance for any help!
Best regards,
tuxic
(PS: I did not remove any System App from the tablet.)

Related

SDL App porting problems...

Hello xda-people
i've been lately trying to compile some SDL stuff on my phone, in order to see it running on android.... i compiled SDL using this guide: http://jiggawatt.org/badc0de/android/index.html#sdl
and then proceeded to try to start some app which has compiled without any problems too, up. (From debian, will explain later why)
However, startup stopped at the SDL init part, since it wasn't able to access the framebuffer. And that's the reason why i tried to do the following(from Android):
mkdir /data/local/mnt/dev/graphics
ln -s /dev/graphics/fb0 /data/local/mnt/dev/graphics/fb0
it went without any problems, however the app still gave me the following error:
(!) DirectFB/FBDev: Error opening '/dev/graphics/fb0'!
--> Too many levels of symbolic links
Click to expand...
Click to collapse
so, what does this mean? and why do i keep on getting command not found when running from android after doing this:
chmod 0777 ./executable_file_here
cp ./executable_file_here /data/misc
chmod 0777 /data/misc/executable_file_here
./executable_file_here ?
any ideas?
P.S.: the app is mainly written in C++, but the graphics init part is C...
You can't compile SDL that way, you need root permissions to access the framebuffer (and it's not portable at all)
Check: http://www.anddev.org/sdl_port_for_android_sdk-ndk_16-t9218.html, there's a SDL port ready to use
shagrath78 said:
You can't compile SDL that way, you need root permissions to access the framebuffer (and it's not portable at all)
Check: http://www.anddev.org/sdl_port_for_android_sdk-ndk_16-t9218.html, there's a SDL port ready to use
Click to expand...
Click to collapse
I'll look into it, thanks!
alright, so i ended up having to set up a virtual machine running 8.04, since developing for android is IMPOSSIBLE on 9.10, it just won't compile anything... i just wanted to ask if i did this right so far:
Followed the readme, edited everything to my app name, created new folder in project/jni, and copied all the (C++) code there.... is that right?
Hmm, i keep getting assertion failed errors... what am i doing wrong? is it that the NDK doesn't support subfolders?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
If I remember, this kind of error appears when you mess up the sources configuration and files are not taken into account. Check your LOCAL_SRC_FILES variable (take example on the alienblaster sample provided with the SDL port).
shagrath78 said:
If I remember, this kind of error appears when you mess up the sources configuration and files are not taken into account. Check your LOCAL_SRC_FILES variable (take example on the alienblaster sample provided with the SDL port).
Click to expand...
Click to collapse
thanks!
so i got it to "compile" however it seems to have problems linking the object files together, i'm gonna show you the exact error message later
EDIT:
here you go:
http://de.pastebin.ca/1723703
still couldn't get it to work. no one who can help me?
hmmm made some major progress here, but i keep having problems with android accessing the GPU.
Code:
I/ActivityManager( 133): Start proc com.tw.teeworlds for activity com.tw.teeworlds/.DemoActivity: pid=749 uid=10080 gids={3003, 1015}
D/dalvikvm( 749): Trying to load lib /data/data/com.tw.teeworlds/lib/libteeworlds.so 0x437433f0
D/dalvikvm( 749): Added shared lib /data/data/com.tw.teeworlds/lib/libteeworlds.so 0x437433f0
D/dalvikvm( 749): No JNI_OnLoad found in /data/data/com.tw.teeworlds/lib/libteeworlds.so 0x437433f0
D/dalvikvm( 749): +++ not scanning '/system/lib/libwebcore.so' for 'nativeAudioInit' (wrong CL)
D/dalvikvm( 749): +++ not scanning '/system/lib/libexif.so' for 'nativeAudioInit' (wrong CL)
D/SurfaceFlinger( 133): pid 749 requesting gpu core (owner = -1)
E/MemoryHeapBase( 133): mmap(fd=90, size=7340032) failed (Invalid argument)
W/SurfaceFlinger( 133): couldn't grant gpu core to pid 749
D/EGL ( 749): requestGPU() failed
E/libEGL ( 749): h/w accelerated eglGetDisplay() failed (EGL_SUCCESS)
D/SurfaceFlinger( 133): pid 749 requesting gpu surface (current owner = -1)
E/MemoryHeapBase( 133): mmap(fd=90, size=7340032) failed (Invalid argument)
D/SurfaceFlinger( 133): pid 749 requesting gpu surface (current owner = -1)
E/MemoryHeapBase( 133): mmap(fd=90, size=7340032) failed (Invalid argument)
D/dalvikvm( 749): +++ not scanning '/system/lib/libwebcore.so' for 'nativeInit' (wrong CL)
D/dalvikvm( 749): +++ not scanning '/system/lib/libexif.so' for 'nativeInit' (wrong CL)
I/ActivityManager( 133): Displayed activity com.tw.teeworlds/.DemoActivity: 2568 ms (total 2568 ms)
D/dalvikvm( 749): +++ not scanning '/system/lib/libwebcore.so' for 'nativeResize' (wrong CL)
D/dalvikvm( 749): +++ not scanning '/system/lib/libexif.so' for 'nativeResize' (wrong CL)
I/libSDL ( 749): resize w=320 h=430
D/dalvikvm( 749): +++ not scanning '/system/lib/libwebcore.so' for 'nativeRender' (wrong CL)
D/dalvikvm( 749): +++ not scanning '/system/lib/libexif.so' for 'nativeRender' (wrong CL)
W/FlurryAgent( 199): onEndSession called without context from corresponding onStartSession
I/ActivityManager( 133): Process com.google.android.apps.maps:LocationFriendService (pid 734) has died.
I/ActivityManager( 133): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=mobi.intuitit.android.x.launcher/.Launcher }
D/PhoneWindow( 749): couldn't save which view has focus because the focused view [email protected] has no id.
W/InputManagerService( 133): Starting input on non-focused client [email protected] (uid=10080 pid=749)
D/AndroidRuntime( 749): Shutting down VM
W/dalvikvm( 749): threadid=3: thread exiting with uncaught exception (group=0x4001da38)
E/AndroidRuntime( 749): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 749): java.lang.RuntimeException: Unable to stop activity {com.tw.teeworlds/com.tw.teeworlds.DemoActivity}: java.lang.RuntimeException: WakeLock under-locked teeworlds
E/AndroidRuntime( 749): at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3124)
E/AndroidRuntime( 749): at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3167)
E/AndroidRuntime( 749): at android.app.ActivityThread.access$2400(ActivityThread.java:116)
E/AndroidRuntime( 749): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1810)
E/AndroidRuntime( 749): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 749): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 749): at android.app.ActivityThread.main(ActivityThread.java:4203)
E/AndroidRuntime( 749): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 749): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 749): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
E/AndroidRuntime( 749): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
E/AndroidRuntime( 749): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 749): Caused by: java.lang.RuntimeException: WakeLock under-locked teeworlds
E/AndroidRuntime( 749): at android.os.PowerManager$WakeLock.release(PowerManager.java:266)
E/AndroidRuntime( 749): at com.tw.teeworlds.DemoActivity.onStop(DemoActivity.java:289)
E/AndroidRuntime( 749): at android.app.Instrumentation.callActivityOnStop(Instrumentation.java:1245)
E/AndroidRuntime( 749): at android.app.Activity.performStop(Activity.java:3593)
E/AndroidRuntime( 749): at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3121)
E/AndroidRuntime( 749): ... 11 more
I/Process ( 133): Sending signal. PID: 749 SIG: 3
I/dalvikvm( 749): threadid=7: reacting to signal 3
I/dalvikvm( 749): Wrote stack trace to '/data/anr/traces.txt'
I/DumpStateReceiver( 133): Added state dump to 1 crashes
I/Process ( 749): Sending signal. PID: 749 SIG: 9
W/InputManagerService( 133): Window already focused, ignoring focus gain of: [email protected]
I/ActivityManager( 133): Process com.tw.teeworlds (pid 749) has died.
I/WindowManager( 133): WIN DEATH: Window{43a16f48 com.tw.teeworlds/com.tw.teeworlds.DemoActivity paused=false}
I/WindowManager( 133): WIN DEATH: Window{43a495b8 SurfaceView paused=false}
W/WindowManager( 133): No window to dispatch pointer action 0
W/WindowManager( 133): No window to dispatch pointer action 1
at first it tried to access /dev/*gpu1 so i symlinked /dev/*gpu0 to gpu1... however as that logcat shows, android won't give access to the app so it can't actually display anything. weird. any ideas there?
bump
10char

android.process.acore force close

Everytime I install a new ROM that isn't 1.6, I get an android.process.acore when using the send/call button in the contacts app. I'm currently running cannon's 2.1, and it's been doing this. This has also occurred in other ROMs i installed such as eugene's eclair rom. Does anyone know if this happens to everyone or if its just my phone? How would I go on to fixing this if possible? Thanks.
a logcat would be helpful here.
Might be a problem with the default contact/phone apk. You could try a 3rd party application and set that as default and see if that fixes it.
Code:
I/ActivityManager( 2733): Starting activity: Intent { act=android.intent.action.VIEW dat=content://com.android.contacts/contacts/lookup/1212i6.1212i296b1ff40e269798/74 cmp=com.android.contacts/.ViewContactActivity }
W/AudioFlinger( 2717): write blocked for 92 msecs, 40 delayed writes, thread 0xcda0
D/NetworkLocationProvider( 2733): onCellLocationChanged [26299,44233]
D/Sources ( 3741): Creating external source for type=com.facebook.auth.login, packageName=com.facebook.katana
I/ActivityManager( 2733): Displayed activity com.android.contacts/.ViewContactActivity: 846 ms (total 846 ms)
W/Sources ( 3741): Unknown type=com.google, mime=vnd.com.google.cursor.item/contact_misc
W/Sources ( 3741): Unknown type=com.google, mime=vnd.com.google.cursor.item/contact_misc
W/Sources ( 3741): Unknown type=com.google, mime=vnd.android.cursor.item/group_membership
D/NetworkLocationProvider( 2733): onCellLocationChanged [26299,61953]
I/ActivityManager( 2733): Starting activity: Intent { act=android.intent.action.CALL_PRIVILEGED dat=content://com.android.contacts/contacts/74 }
D/AndroidRuntime( 3741): Shutting down VM
W/dalvikvm( 3741): threadid=3: thread exiting with uncaught exception (group=0x4001e180)
E/AndroidRuntime( 3741): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 3741): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.CALL_PRIVILEGED dat=content://com.android.contacts/contacts/74 }
E/AndroidRuntime( 3741): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1408)
E/AndroidRuntime( 3741): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
E/AndroidRuntime( 3741): at android.app.Activity.startActivityForResult(Activity.java:2749)
E/AndroidRuntime( 3741): at android.app.Activity.startActivity(Activity.java:2855)
E/AndroidRuntime( 3741): at com.android.contacts.ViewContactActivity.onKeyDown(ViewContactActivity.java:715)
E/AndroidRuntime( 3741): at android.view.KeyEvent.dispatch(KeyEvent.java:1037)
E/AndroidRuntime( 3741): at android.app.Activity.dispatchKeyEvent(Activity.java:2043)
E/AndroidRuntime( 3741): at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1631)
E/AndroidRuntime( 3741): at android.view.ViewRoot.deliverKeyEventToViewHierarchy(ViewRoot.java:2368)
E/AndroidRuntime( 3741): at android.view.ViewRoot.handleFinishedEvent(ViewRoot.java:2338)
E/AndroidRuntime( 3741): at android.view.ViewRoot.handleMessage(ViewRoot.java:1641)
E/AndroidRuntime( 3741): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3741): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 3741): at android.app.ActivityThread.main(ActivityThread.java:4363)
E/AndroidRuntime( 3741): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3741): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 3741): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
E/AndroidRuntime( 3741): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
E/AndroidRuntime( 3741): at dalvik.system.NativeStart.main(Native Method)
I/Process ( 2733): Sending signal. PID: 3741 SIG: 3
I/dalvikvm( 3741): threadid=7: reacting to signal 3
I/dalvikvm( 3741): Wrote stack trace to '/data/anr/traces.txt'
I/DumpStateReceiver( 2733): Added state dump to 1 crashes
logcat of when i hit send on the contacts app
what other third party contact apk can you sugges for me? thanks
The ones you mentioned are fine, or wysie_sho (sorry something like that) has his modified in the dev section. Just rename and copy to /system/app/.

Contacts not opening

Somebody please help me, im using Helly Bean 4.2 built of 02 December.... and everytime i try to open the Contacts App, it FC and i don't know why... Here is the logcat
Sorry for my english, i'm Mexican
Logcat
Code:
I/ActivityManager( 397): START u0 {act=android.intent.action.MAIN cat=[android.
intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.contacts/.activities.Pe
opleActivity bnds=[120,700][240,772]} from pid 611
I/ActivityManager( 397): Start proc com.android.contacts for activity com.andro
id.contacts/.activities.PeopleActivity: pid=32628 uid=10001 gids={50001, 3003, 1
015, 1028}
E/dalvikvm(32628): Dex cache directory isn't writable: /data/dalvik-cache
I/dalvikvm(32628): Unable to open or create cache for /system/app/Contacts.apk (
/data/dalvik-cache/[email protected]@[email protected])
D/AndroidRuntime(32628): Shutting down VM
W/dalvikvm(32628): threadid=1: thread exiting with uncaught exception (group=0x4
0d37930)
E/AndroidRuntime(32628): FATAL EXCEPTION: main
E/AndroidRuntime(32628): java.lang.RuntimeException: Unable to instantiate appli
cation com.android.contacts.ContactsApplication: java.lang.ClassNotFoundExceptio
n: Didn't find class "com.android.contacts.ContactsApplication" on path: /system
/app/Contacts.apk
E/AndroidRuntime(32628): at android.app.LoadedApk.makeApplication(LoadedA
pk.java:504)
E/AndroidRuntime(32628): at android.app.ActivityThread.handleBindApplicat
ion(ActivityThread.java:4516)
E/AndroidRuntime(32628): at android.app.ActivityThread.access$1300(Activi
tyThread.java:150)
E/AndroidRuntime(32628): at android.app.ActivityThread$H.handleMessage(Ac
tivityThread.java:1304)
E/AndroidRuntime(32628): at android.os.Handler.dispatchMessage(Handler.ja
va:99)
E/AndroidRuntime(32628): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(32628): at android.app.ActivityThread.main(ActivityThrea
d.java:5191)
E/AndroidRuntime(32628): at java.lang.reflect.Method.invokeNative(Native
Method)
E/AndroidRuntime(32628): at java.lang.reflect.Method.invoke(Method.java:5
11)
E/AndroidRuntime(32628): at com.android.internal.os.ZygoteInit$MethodAndA
rgsCaller.run(ZygoteInit.java:795)
E/AndroidRuntime(32628): at com.android.internal.os.ZygoteInit.main(Zygot
eInit.java:562)
E/AndroidRuntime(32628): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(32628): Caused by: java.lang.ClassNotFoundException: Didn't fin
d class "com.android.contacts.ContactsApplication" on path: /system/app/Contacts
.apk
E/AndroidRuntime(32628): at dalvik.system.BaseDexClassLoader.findClass(Ba
seDexClassLoader.java:65)
E/AndroidRuntime(32628): at java.lang.ClassLoader.loadClass(ClassLoader.j
ava:501)
E/AndroidRuntime(32628): at java.lang.ClassLoader.loadClass(ClassLoader.j
ava:461)
E/AndroidRuntime(32628): at android.app.Instrumentation.newApplication(In
strumentation.java:968)
E/AndroidRuntime(32628): at android.app.LoadedApk.makeApplication(LoadedA
pk.java:499)
E/AndroidRuntime(32628): ... 11 more
W/ActivityManager( 397): Force finishing activity com.android.contacts/.activ
ities.PeopleActivity
D/dalvikvm( 397): GC_CONCURRENT freed 1949K, 20% free 15713K/19616K, paused 9ms
+18ms, total 196ms
W/ActivityManager( 397): Activity pause timeout for ActivityRecord{41897848 u0
com.android.contacts/.activities.PeopleActivity}
W/ActivityManager( 397): Activity destroy timeout for ActivityRecord{41897848 u
0 com.android.contacts/.activities.PeopleActivity}

Since upgrade 10.2.1 -> 10.2 mail app crashes when opening a mail

Hi.
Sorry for writing here, but i'm unable to post to the related thread because i think i haven't enough posts in this forum (<10).
[ROM][4.3][P7300/P7310][UNOFFICIAL] CyanogenMod 10.2 [2013-Nov-22]
http://forum.xda-developers.com/showthread.php?t=2398003
I've upgraded my tab 8.9 (p7310) from c-o-m's 10.2.1-unofficial ROM to c-o-m' "CM10.2 P7310 p5wifi 20131122".
Now I've problem with the mail app and my exchange account.
I can't read emails. i can write new mails or list them or change to another folder. but if i want to open one, there will be an exception and the app close.
Here is a dump from logcat starting the app and crashing
Code:
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
W/NotificationService( 410): Toast already cancelled. pkg=com.nuance.swype.dtc [email protected]
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
W/NotificationService( 410): Toast already cancelled. pkg=com.nuance.swype.dtc [email protected]
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
W/NotificationService( 410): Toast already cancelled. pkg=com.nuance.swype.dtc [email protected]
I/ActivityManager( 410): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.cyanogenmod.trebuchet/.Launcher} from pid 410
W/IInputConnectionWrapper( 2470): showStatusIcon on inactive InputConnection
I/ActivityManager( 410): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.email/.activity.Welcome bnds=[286,1131][356,1201]} from pid 711
D/ExchangeService( 1362): !!! EAS ExchangeService, onStartCommand, startingUp = false, running = true
I/ActivityManager( 410): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x2000000 cmp=com.android.email/.activity.EmailActivity (has extras)} from pid 2556
V/NFC ( 2556): this device does not have NFC support
D/libEGL ( 2556): loaded /system/lib/egl/libEGL_tegra.so
D/libEGL ( 2556): loaded /system/lib/egl/libGLESv1_CM_tegra.so
D/libEGL ( 2556): loaded /system/lib/egl/libGLESv2_tegra.so
D/OpenGLRenderer( 2556): Enabling debug mode 0
I/ActivityManager( 410): Displayed com.android.email/.activity.EmailActivity: +471ms (total +581ms)
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x421811c0 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x42181108 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x42181968 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x421817b0 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x42181340 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x42181218 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x42173cb8 successful
I/OMXNodeInstance( 128): OMX_FreeBuffer for buffer header 0x435e70e8 successful
D/AndroidRuntime( 2556): Shutting down VM
W/dalvikvm( 2556): threadid=1: thread exiting with uncaught exception (group=0x417dd7c0)
E/AndroidRuntime( 2556): FATAL EXCEPTION: main
E/AndroidRuntime( 2556): java.lang.IllegalArgumentException: View doesn't exist
E/AndroidRuntime( 2556): at com.android.email.activity.UiUtilities.checkView(UiUtilities.java:100)
E/AndroidRuntime( 2556): at com.android.email.activity.UiUtilities.getView(UiUtilities.java:95)
E/AndroidRuntime( 2556): at com.android.email.activity.MessageViewFragmentBase.onCreateView(MessageViewFragmentBase.java:317)
E/AndroidRuntime( 2556): at com.android.email.activity.MessageViewFragment.onCreateView(MessageViewFragment.java:214)
E/AndroidRuntime( 2556): at android.app.Fragment.performCreateView(Fragment.java:1695)
E/AndroidRuntime( 2556): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:885)
E/AndroidRuntime( 2556): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1057)
E/AndroidRuntime( 2556): at android.app.BackStackRecord.run(BackStackRecord.java:682)
E/AndroidRuntime( 2556): at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1435)
E/AndroidRuntime( 2556): at android.app.FragmentManagerImpl.executePendingTransactions(FragmentManager.java:474)
E/AndroidRuntime( 2556): at com.android.email.activity.UIControllerBase.commitFragmentTransaction(UIControllerBase.java:489)
E/AndroidRuntime( 2556): at com.android.email.activity.UIControllerTwoPane.navigateToMessage(UIControllerTwoPane.java:498)
E/AndroidRuntime( 2556): at com.android.email.activity.UIControllerTwoPane.onMessageOpen(UIControllerTwoPane.java:159)
E/AndroidRuntime( 2556): at com.android.email.activity.MessageListFragment.onMessageOpen(MessageListFragment.java:792)
E/AndroidRuntime( 2556): at com.android.email.activity.MessageListFragment.onListItemClick(MessageListFragment.java:604)
E/AndroidRuntime( 2556): at android.app.ListFragment$2.onItemClick(ListFragment.java:160)
E/AndroidRuntime( 2556): at android.widget.AdapterView.performItemClick(AdapterView.java:297)
E/AndroidRuntime( 2556): at android.widget.AbsListView.performItemClick(AbsListView.java:1100)
E/AndroidRuntime( 2556): at android.widget.AbsListView$PerformClick.run(AbsListView.java:2788)
E/AndroidRuntime( 2556): at android.widget.AbsListView$1.run(AbsListView.java:3463)
E/AndroidRuntime( 2556): at android.os.Handler.handleCallback(Handler.java:730)
E/AndroidRuntime( 2556): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime( 2556): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 2556): at android.app.ActivityThread.main(ActivityThread.java:5289)
E/AndroidRuntime( 2556): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 2556): at java.lang.reflect.Method.invoke(Method.java:525)
E/AndroidRuntime( 2556): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:739)
E/AndroidRuntime( 2556): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
E/AndroidRuntime( 2556): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 410): Force finishing activity com.android.email/.activity.EmailActivity
W/ActivityManager( 410): Activity pause timeout for ActivityRecord{41b45a40 u0 com.android.email/.activity.EmailActivity}
I/Process ( 2556): Sending signal. PID: 2556 SIG: 9
W/InputDispatcher( 410): channel '41f93510 com.android.email/com.android.email.activity.EmailActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 410): channel '41f93510 com.android.email/com.android.email.activity.EmailActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
I/ActivityManager( 410): Process com.android.email (pid 2556) has died.
W/InputDispatcher( 410): Attempted to unregister already unregistered input channel '41f93510 com.android.email/com.android.email.activity.EmailActivity (server)'
I/WindowState( 410): WIN DEATH: Window{41f93510 u0 com.android.email/com.android.email.activity.EmailActivity}
W/ActivityManager( 410): Scheduling restart of crashed service com.android.email/.service.PolicyService in 5000ms
I/ActivityManager( 410): Kill com.android.exchange (pid 1362): provider com.android.email.provider.EmailProvider in dying process com.android.email
I/ActivityManager( 410): Process com.android.exchange (pid 1362) has died.
W/ActivityManager( 410): Scheduling restart of crashed service com.android.exchange/.ExchangeService in 5000ms
W/InputMethodManagerService( 410): Got RemoteException sending setActive(false) notification to pid 2556 uid 10018
I/ActivityManager( 410): Start proc com.android.email for broadcast com.android.email/.provider.WidgetProvider: pid=2698 uid=10018 gids={50018, 3003, 1015, 1028}
I/ActivityManager( 410): START u0 {act=com.android.systemui.recent.action.TOGGLE_RECENTS flg=0x10800000 cmp=com.android.systemui/.recent.RecentsActivity} from pid 548
I/ActivityManager( 410): Start proc com.android.exchange for service com.android.exchange/.ExchangeService: pid=2717 uid=10019 gids={50019, 3003, 1015, 1028}
E/SQLiteLog( 2698): (1) no such table: Account
W/EmailProvider( 2698): Exception cleaning EmailProvider.dbandroid.database.sqlite.SQLiteException: no such table: Account (code 1): , while compiling: delete from Account WHERE displayName ISNULL;
D/ExchangeService( 2717): !!! EAS ExchangeService, onStartCommand, startingUp = false, running = false
D/Eas Debug( 2717): Logging:
D/ExchangeService( 2717): !!! EAS ExchangeService, onStartCommand, startingUp = true, running = false
D/ExchangeService( 2717): Received deviceId from Email app: android1357919128229
D/ExchangeService( 2717): Reconciling accounts...
D/Eas Debug( 2717): Logging:
I/ActivityManager( 410): Displayed com.android.systemui/.recent.RecentsActivity: +242ms
I/Email ( 2698): ReconcilePopImapAccountsSync: start
D/AttachmentService( 2698): Count: 0
I/Email ( 2698): ReconcilePopImapAccountsSync: already running
I/Email ( 2698): ReconcilePopImapAccountsSync: done
D/ExchangeService( 2717): ExchangeService thread running
D/AttachmentService( 2698): *** All done; shutting down service
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
W/NotificationService( 410): Toast already cancelled. pkg=com.nuance.swype.dtc [email protected]
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
W/NotificationService( 410): Toast already cancelled. pkg=com.nuance.swype.dtc [email protected]
I/NotificationService( 410): cancelToast pkg=com.nuance.swype.dtc [email protected]
^C
130|[email protected]:/ $
has anybody else this issue?
I've wipeed dalvik cache, cache partition.
still the same problem.
After factory reset and adding a new account I get the same exception during account setup ("E-Mail" wurde beendet).
thanks in advanced.
mitch
Maybe one more info:
After upgrade from c-o-m's 10.2.1-unofficial ROM to c-o-m's "CM10.2 P7310 p5wifi..." pre-september version, there wasn't this issue!
but on the image isn't available anymore

When Starting My Application I Get Runtime Errors

Errors
I wanted to start my Application but i got this error code(s):
08-25 14:33:37.861 8987-8987/com.example.max.mediaplayermitlistview E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.max.mediaplayermitlistview, PID: 8987
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.max.mediaplayermitlistview/com.example.max.mediaplayermitlistview.Player}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2328)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
at android.app.ActivityThread.access$900(ActivityThread.java:169)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5476)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.example.max.mediaplayermitlistview.Player.onCreate(Player.java:77)
at android.app.Activity.performCreate(Activity.java:5451)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2292)
************at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
************at android.app.ActivityThread.access$900(ActivityThread.java:169)
************at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
************at android.os.Handler.dispatchMessage(Handler.java:102)
************at android.os.Looper.loop(Looper.java:136)
************at android.app.ActivityThread.main(ActivityThread.java:5476)
************at java.lang.reflect.Method.invokeNative(Native Method)
************at java.lang.reflect.Method.invoke(Method.java:515)
************at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
************at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
************at dalvik.system.NativeStart.main(Native Method)
Can you explain me what this error code means (where in the application the error is)?
Andorid Studio Version?
deviceChecker said:
I wanted to start my Application but i got this error code(s):
08-25 14:33:37.861 8987-8987/com.example.max.mediaplayermitlistview E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.max.mediaplayermitlistview, PID: 8987
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.max.mediaplayermitlistview/com.example.max.mediaplayermitlistview.Player}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2328)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
at android.app.ActivityThread.access$900(ActivityThread.java:169)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5476)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.example.max.mediaplayermitlistview.Player.onCreate(Player.java:77)
at android.app.Activity.performCreate(Activity.java:5451)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2292)
************at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
************at android.app.ActivityThread.access$900(ActivityThread.java:169)
************at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
************at android.os.Handler.dispatchMessage(Handler.java:102)
************at android.os.Looper.loop(Looper.java:136)
************at android.app.ActivityThread.main(ActivityThread.java:5476)
************at java.lang.reflect.Method.invokeNative(Native Method)
************at java.lang.reflect.Method.invoke(Method.java:515)
************at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
************at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
************at dalvik.system.NativeStart.main(Native Method)
Can you explain me what this error code means (where in the application the error is)?
Click to expand...
Click to collapse
thi is Android Studio Version???
h3r102 said:
thi is Android Studio Version???
Click to expand...
Click to collapse
I have the Android Studio Version 1.3.1 Build #AI-141.135290, built on August 3,2015
"Caused by: java.lang.NullPointerException
at com.example.max.mediaplayermitlistview.Player.onCr eate(Player.java:77)"
Looks like in your Player class, on line 77, you're referencing something that doesn't exist yet. Like maybe you're inflating a layout that hasn't been defined in the xml file. Maybe something like that.
FATAL EXCEPTION: main
Process: com.example.max.mediaplayermitlistview, PID: 8987
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.max.mediaplayermitlistview/com.example.max.mediaplayermitlistview.Player}: java.lang.NullPointerException
( at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2328)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
at android.app.ActivityThread.access-$900(ActivityThread.java:169)
at android.app.ActivityThread-$H.handleMessage(ActivityThread.java:1277)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5476)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283 : Init:Method.Java:525)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099 return Method:515)
at dalvik.system.NativeStart.main(Native Method));
Caused by: java.lang.NullPointerException
( at com.example.max.mediaplayermitlistview.Player.onCreate(Player.java:77)
at android.app.Activity.performCreate(Activity.java:5451)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2292)
/*at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
************at android.app.ActivityThread.access$900(ActivityThread.java:169)
************at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
************at android.os.Handler.dispatchMessage(Handler.java:102)
************at android.os.Looper.loop(Looper.java:136)
************at android.app.ActivityThread.main(ActivityThread.java:5476)
************at java.lang.reflect.Method.invokeNative(Native Method)
************at java.lang.reflect.Method.invoke(Method.java:515)
************at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
************at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
************at dalvik.system.NativeStart.main(Native Method) (NOT REQUIRED) */

Categories

Resources