ERROR: tried to execute code in unprepared class - Android Q&A, Help & Troubleshooting

Hoping someone here can help me with a recent issue. I've been updating my app, and somewhere along the way, I've lost the ability to debug. If I run the app normally it runs fine, but if i put a break point on the first line of onCreate of the main activity, it runs, but then dies saying it tried to execute code from an unprepared class.
I'm having a hard time figuring out where it's trying to run it from, since i'm breaking on the very first line of code in the app. I've even tried putting a breakpoint at every reference to that class (instead of at the top of onCreate) but then the app just runs normally w/o hitting any breakpoints.
According to the logcat, it looks like something in onCreate is is calling BillingHelper.isBillingSupported() but that does not exist in my onCreate method. And if i'm breaking at the top of onCreate, why would it try to be executing anything else in onCreate while the debugger is sitting with the yellow highlight where i had the breakpoint?
Anyone else had a similar issue?
Totally confused here.
One thing I haven't tried yet, is to do a "clean" on the project. I'll try that when I get home.
Logcat:
Code:
04-24 09:02:22.082: I/dalvikvm(28195): Debugger is active
04-24 09:02:22.222: I/System.out(28195): Debugger has connected
04-24 09:02:22.222: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:22.422: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:22.622: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:22.822: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:23.022: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:23.222: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:23.422: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:23.642: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:23.852: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:24.062: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:24.262: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:24.472: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:24.672: I/System.out(28195): waiting for debugger to settle...
04-24 09:02:24.882: I/System.out(28195): debugger has settled (1498)
04-24 09:02:27.442: E/dalvikvm(28195): ERROR: tried to execute code in unprepared class 'Lcom/interphaze/AcerRecoveryInstaller/BillingHelper;' (3)
04-24 09:02:27.442: I/dalvikvm(28195): "main" prio=5 tid=1 RUNNABLE
04-24 09:02:27.442: I/dalvikvm(28195): | group="main" sCount=0 dsCount=0 obj=0x40a45ed0 self=0x1032850
04-24 09:02:27.442: I/dalvikvm(28195): | sysTid=28195 nice=0 sched=0/0 cgrp=default handle=1074349192
04-24 09:02:27.442: I/dalvikvm(28195): | schedstat=( 125538000 23688000 127 ) utm=11 stm=1 core=1
04-24 09:02:27.442: I/dalvikvm(28195): at com.interphaze.AcerRecoveryInstaller.BillingHelper.isBillingSupported(BillingHelper.java:-1)
04-24 09:02:27.442: I/dalvikvm(28195): at com.interphaze.AcerRecoveryInstaller.AcerRecoveryInstaller.onCreate(AcerRecoveryInstaller.java:-1)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.Activity.performCreate(Activity.java:4465)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.ActivityThread.access$600(ActivityThread.java:123)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
04-24 09:02:27.442: I/dalvikvm(28195): at android.os.Handler.dispatchMessage(Handler.java:99)
04-24 09:02:27.442: I/dalvikvm(28195): at android.os.Looper.loop(Looper.java:137)
04-24 09:02:27.442: I/dalvikvm(28195): at android.app.ActivityThread.main(ActivityThread.java:4424)
04-24 09:02:27.442: I/dalvikvm(28195): at java.lang.reflect.Method.invokeNative(Native Method)
04-24 09:02:27.452: I/dalvikvm(28195): at java.lang.reflect.Method.invoke(Method.java:511)
04-24 09:02:27.452: I/dalvikvm(28195): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
04-24 09:02:27.452: I/dalvikvm(28195): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
04-24 09:02:27.452: I/dalvikvm(28195): at dalvik.system.NativeStart.main(Native Method)
04-24 09:02:27.452: E/dalvikvm(28195): VM aborting
04-24 09:02:27.452: A/libc(28195): Fatal signal 11 (SIGSEGV) at 0xdeadd00d (code=1)

After rolling back to earlier (then much earlier) versions of the app (versions that I know I was able to debug in onCreate and onStart methods), I'm convinced this is not a coding issue. It must be an Eclipse/ADT or JVM issue.
About a month ago, I updated eclipse to HELIOS (had INDIGO before), and the latest version of Java SDK.
I still can't understand why this is happening, but as it is, I cannot set a break point in onCreate or onStart w/o the VM aborting due to the error above. Even those there are no references to that class before the breakpoints.
I'll try to go back to the older eclipse and see if that helps.

Euclid's Brother said:
About a month ago, I updated eclipse to HELIOS (had INDIGO before), and the latest version of Java SDK.
Click to expand...
Click to collapse
Pretty sure you mean the other way around, correct? Indigo is the latest release

regaw_leinad said:
Pretty sure you mean the other way around, correct? Indigo is the latest release
Click to expand...
Click to collapse
Yes, I had it backwards. I'm on INDIGO now.
This is still driving me nuts. It doesn't matter where I put a break point. Even if it's in a method triggered by a button click after onCreate and onStart have finished. The app runs perfectly fine, even in debug mode, until i hit a break point somewhere. As soon as It breaks, and I see the highlight in the code, the VM aborts with the error above. And nothing is trying or has tried to call that method.
I'm gonna try to go back to the previous version of JVM and see if that helps.

Related

Need Help debugging Hero crash logs

I've been having trouble with numerous crash and acore errors whenever I reboot my phone. At first I thought it was due to certain programs being installed, but that's not the case. Its being very inconsistent.
for the background, look here:
http://androidcommunity.com/forums/f41/sprint-hero-crashes-on-re-boot-problem-app-27205/
The following are some logs generated by My Hero, after a reboot. I Collected them with Log Collector. If anyone can help me out, I'd really appreciate it.
thanks
Jbmm10-26 15:10:25.185 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:10:25.185 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:10:25.185 D/IQServer( 50): Reset the timeout to 3000(ms) for AlarmSet retry...
10-26 15:10:25.185 I/HtcLocationService( 194): onDestroy
10-26 15:10:25.185 D/LocationManager( 194): removeUpdates: listener = com.htc.htclocationservice.HtcLocationServiceAgent [email protected]
10-26 15:10:25.195 D/IQJavaJob( 50): JavaRequestAlarmSet: Java job client is not connected now!
10-26 15:10:25.195 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:10:25.195 D/IQServer( 50): Reset the timeout to 3000(ms) for AlarmSet retry...
10-26 15:10:25.195 D/IQJavaJob( 50): JavaRequestAlarmSet: Java job client is not connected now!
10-26 15:10:25.195 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:10:25.195 D/IQServer( 50): Reset the timeout to 3000(ms) for AlarmSet retry...
10-26 15:10:25.195 D/IQJavaJob( 50): JavaRequestAlarmSet: Java job client is not connected now!
10-26 15:10:25.195 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:10:25.195 D/IQServer( 50): Reset the timeout to 3000(ms) for AlarmSet retry...
10-26 15:10:25.195 D/IQJavaJob( 50): JavaRequestAlarmSet: Java job client is not connected now!
10-26 15:10:25.195 D/IQServer( 50): JavaRequestAlarmSet is failed... Will not release wakelock[ciq-backend]!
10-26 15:13:51.703 D/NotificationFlashLightUtility getIncomingCall( 415): load fail~~~~~~~~~~
10-26 15:13:51.733 I/LockUtil( 415): 06021143 - acquire WifiLock: DIRECTPUSH
10-26 15:13:51.853 D/AndroidRuntime( 473): Shutting down VM
10-26 15:13:51.853 W/dalvikvm( 473): threadid=3: thread exiting with uncaught exception (group=0x40013140)
10-26 15:13:51.853 E/AndroidRuntime( 473): Uncaught handler: thread main exiting due to uncaught exception
10-26 15:13:51.863 E/AndroidRuntime( 473): java.lang.RuntimeException: Unable to create application com.coremobility.integration.app.CM_App: java.lang.NullPointerException
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.ActivityThread.handleBindApplication(A ctivityThread.java:3754)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.ActivityThread.access$2500(ActivityThr ead.java:118)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.ActivityThread$H.handleMessage(Activit yThread.java:1796)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.os.Handler.dispatchMessage(Handler.java:99 )
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.os.Looper.loop(Looper.java:123)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.ActivityThread.main(ActivityThread.jav a:4077)
10-26 15:13:51.863 E/AndroidRuntime( 473): at java.lang.reflect.Method.invokeNative(Native Method)
10-26 15:13:51.863 E/AndroidRuntime( 473): at java.lang.reflect.Method.invoke(Method.java:521)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.android.internal.os.ZygoteInit$MethodAndArgsCa ller.run(ZygoteInit.java:782)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.android.internal.os.ZygoteInit.main(ZygoteInit .java:540)
10-26 15:13:51.863 E/AndroidRuntime( 473): at dalvik.system.NativeStart.main(Native Method)
10-26 15:13:51.863 E/AndroidRuntime( 473): Caused by: java.lang.NullPointerException
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.telephony.TelephonyManager.getCallState(Te lephonyManager.java:643)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.CM_ConfigSysProp.Chec kProps(CM_ConfigSysProp.java:300)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.CM_ConfigSysProp.GetI nstance(CM_ConfigSysProp.java:80)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.configuration.CM_Conf iguration.getInstance(CM_Configuration.java:132)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.log.CM_Errors.intLog( CM_Errors.java:101)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.log.CM_Errors.log(CM_ Errors.java:148)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.app.vnotes.CM_VnoteApp.<init>(CM_ VnoteApp.java:327)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.app.CM_App.CM_Initial ize(CM_App.java:250)
10-26 15:13:51.863 E/AndroidRuntime( 473): at com.coremobility.integration.app.CM_App.onCreate(C M_App.java:307)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.Instrumentation.callApplicationOnCreat e(Instrumentation.java:1045)
10-26 15:13:51.863 E/AndroidRuntime( 473): at android.app.ActivityThread.handleBindApplication(A ctivityThread.java:3751)
10-26 15:13:51.863 E/AndroidRuntime( 473): ... 10 more
10-26 15:13:51.953 D/KeyInputQueue( 66): DebugMonitor keycode=0 value=1
10-26 15:13:52.053 I/Process ( 66): Sending signal. PID: 473 SIG: 3
10-26 15:13:52.053 I/dalvikvm( 473): threadid=7: reacting to signal 3
10-26 15:13:52.053 D/CIQ ( 66): throwUI03
10-26 15:13:52.053 D/CIQ ( 66): processName com.coremobility.app.vnotes
10-26 15:13:52.093 E/com_htc_android_iqagent_Controller( 129): backend daemon was not ready!
10-26 15:13:52.213 W/ResourceType( 135): getEntry failing because entryIndex 1 is beyond type entryCount 1
10-26 15:13:52.213 W/ResourceType( 135): Failure getting entry for 0x7f080001 (t=7 e=1) in package 0: 0x80000001
10-26 15:13:52.223 D/EAS_DPReceiver( 415): 06021143 > SP() DP
10-26 15:13:52.263 I/ActivityManager( 66): Start proc com.newsrob for broadcast com.newsrob/.BootReceiver: pid=493 uid=10063 gids={3003}
10-26 15:13:52.263 D/CIQ ( 66): throwUI04 com.newsrob
10-26 15:13:52.263 D/CIQ ( 66): processName com.newsrob
10-26 15:13:52.263 E/com_htc_android_iqagent_Controller( 129): backend daemon was not ready!
10-26 15:13:52.483 W/ResourceType( 66): No package identifier when getting value for resource number 0x00000031
10-26 15:13:52.533 D/IQClient( 51): wait for backend daemon ready ...
10-26 15:13:52.583 I/dalvikvm( 493): Debugger thread not active, ignoring DDM send (t=0x41504e4d l=38)
10-26 15:13:52.773 W/ApplicationInfo( 66): Failure retrieving activity name
10-26 15:13:52.773 W/ApplicationInfo( 66): android.content.res.Resources$NotFoundException: String resource ID #0x31
10-26 15:13:52.773 W/ApplicationInfo( 66): at android.content.res.Resources.getText(Resources.ja va:155)
10-26 15:13:52.773 W/ApplicationInfo( 66): at android.app.ApplicationContext$ApplicationPackageM anager.getLabel(ApplicationContext.java:2211)
10-26 15:13:52.773 W/ApplicationInfo( 66): at android.app.ApplicationContext$ApplicationPackageM anager.getApplicationLabel(ApplicationContext.java :2289)
10-26 15:13:52.773 W/ApplicationInfo( 66): at com.android.server.am.AppErrorDialog.<init>(AppErr orDialog.java:47)
10-26 15:13:52.773 W/ApplicationInfo( 66): at com.android.server.am.ActivityManagerService$2.han dleMessage(ActivityManagerService.java:875)
10-26 15:13:52.773 W/ApplicationInfo( 66): at android.os.Handler.dispatchMessage(Handler.java:99 )
10-26 15:13:52.773 W/ApplicationInfo( 66): at android.os.Looper.loop(Looper.java:123)
10-26 15:13:52.773 W/ApplicationInfo( 66): at com.android.server.am.ActivityManagerService$AThre ad.run(ActivityManagerService.java:1156)

Unfortunately application has stopped

hi all,
I am working in reversing apk aplication. I have got with sucess normally. I got a aplication not working now. It is do with API level v14.
I have decompile, compile and sing with sucess.
For test I to use emulator with Device Nexus S.
When i to install original application run without problems but with aplication decompiled, compiled and signed not working.
I have to used java tool and apk for sign. Nothing work.
I got the follow message:
"Unfortunately, aplication name has stopped.
I have read but don´t have seen same problem.
Any suggest?
A greeting.
To help you, we really need a logcat.
Because you have an emulator, I guess you have android-sdk installed.
To get your logcat, do:
adb logcat
After doing this, let it run.
Run your application in your emulator now. When it says "force close", you stop adb logcat by doing Ctrl+C
Then you copy the text with your error in it.
Thanks in advance
Sent from my Galaxy Nexus running Android 4.2 JB
hi, i did that.
I got the follow message.
Code:
I/ActivityManager( 82): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.anite.handy/.ui.core.ResumeActivit
y} from pid 181
D/PermissionCache( 36): checking android.permission.READ_FRAME_BUFFER for uid=1000 => granted (1379 us)
W/WindowManager( 82): Failure taking screenshot for (180x300) to layer 21005
I/ActivityManager( 82): Start proc com.anite.handy for activity com.anite.hand
y/.ui.core.ResumeActivity: pid=492 uid=10040 gids={3002, 3001, 3003, 1015}
I/dalvikvm( 492): Turning on JNI app bug workarounds for target SDK version 10.
..
W/NetworkManagementSocketTagger( 82): setKernelCountSet(10040, 1) failed witherrno -2
I/Process ( 82): Sending signal. PID: 492 SIG: 3
I/dalvikvm( 492): threadid=3: reacting to signal 3
I/dalvikvm( 492): Wrote stack traces to '/data/anr/traces.txt'
I/Process ( 82): Sending signal. PID: 492 SIG: 3
I/dalvikvm( 492): threadid=3: reacting to signal 3
I/dalvikvm( 492): Wrote stack traces to '/data/anr/traces.txt'
I/Handy ( 492): HandyApp.onCreate() pid=492
I/Process ( 82): Sending signal. PID: 492 SIG: 3
I/dalvikvm( 492): threadid=3: reacting to signal 3
I/dalvikvm( 492): Wrote stack traces to '/data/anr/traces.txt'
D/AndroidRuntime( 492): Shutting down VM
W/dalvikvm( 492): threadid=1: thread exiting with uncaught exception (group=0x4
09c01f8)
E/AndroidRuntime( 492): FATAL EXCEPTION: main
E/AndroidRuntime( 492): java.lang.RuntimeException: Unable to create application com.anite.handy.app.HandyApp: java.lang.SecurityException
E/AndroidRuntime( 492): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3957)
E/AndroidRuntime( 492): at android.app.ActivityThread.access$1300(ActivityThread.java:123)
E/AndroidRuntime( 492): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1185)
E/AndroidRuntime( 492): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 492): at android.os.Looper.loop(Looper.java:137)E/AndroidRuntime( 492): at android.app.ActivityThread.main(ActivityThread.java:4424)
E/AndroidRuntime( 492): at java.lang.reflect.Method.invokeNative(NativeMethod)
E/AndroidRuntime( 492): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 492): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
E/AndroidRuntime( 492): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
E/AndroidRuntime( 492): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 492): Caused by: java.lang.SecurityException
E/AndroidRuntime( 492): at com.anite.handy.app.HandyApp.onCreate(Unknown Source)
E/AndroidRuntime( 492): at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:969)
E/AndroidRuntime( 492): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3954)
E/AndroidRuntime( 492): ... 10 more
W/ActivityManager( 82): Force finishing activity com.anite.handy/.ui.core.ResumeActivity
W/InputManagerService( 82): Window already focused, ignoring focus gain of: [email protected]
I/Process ( 82): Sending signal. PID: 492 SIG: 3
I/dalvikvm( 492): threadid=3: reacting to signal 3
I/dalvikvm( 492): Wrote stack traces to '/data/anr/traces.txt'
W/ActivityManager( 82): Activity pause timeout for ActivityRecord{4142a7e0 com.anite.handy/.ui.core.ResumeActivity}
I/Process ( 82): Sending signal. PID: 492 SIG: 3
I/dalvikvm( 492): threadid=3: reacting to signal 3
I/dalvikvm( 492): Wrote stack traces to '/data/anr/traces.txt'
W/NetworkManagementSocketTagger( 82): setKernelCountSet(10040, 0) failed with errno -2
W/ActivityManager( 82): Activity destroy timeout for ActivityRecord{4142a7e0 com.anite.handy/.ui.core.ResumeActivity}
Check your "HandyApp Application" is declared in your manifest
I suggest you take a look at this one:
http://developer.android.com/guide/topics/manifest/manifest-intro.html
If you don't understand it just reply here and I'll fix it for ya
Sent from my Galaxy Nexus running Android 4.2 JB
i have checked AndroidManifest.xml decompiled file and i can see android:name=".app.HandyApp" in code.
Full code atached here
View attachment AndroidManifest.rar
Anyone have any suggestion? I can share the target if need.
Thanks
i have the same problem
unfortunately application has stop.
i have the same problem but its worse.
i have been installed kaspersky security using apk not from manual installed by google play.
and iam forget to unistalled it before i upgrade my android software.
after the process done it show message "unfortunately......." it keep showing up even after i klik "ok" or restart
i can't do anything with my device now (can't type anything, can't touch anything, even pick up incoming call) because of the pop up n start being stressed
anyone can help? :crying:
*My Device is galaxy Note II
Hi, I am not sure if this is the right thread, but since I don't know exactly where sould I post this I will post it here and if someone knows a better thread they sould tell me to go there.
My problem is with the game called Rhythm Racer 2, I have been in to this game since 2011 when I got Galaxy S 2, and it was working even on my Galaxy Tab S (SM-T805) until I was updated to lollipop, since then it just pops "Unfotunately Rhythm Racer 2 Has Stopped", also the same problem applies in Galaxy Note 4 (N910F), only there it doesn't work even on kitkat and in lollipop either, and the problem is that this app doesn't getting any update, it's on its initial version since 2011 and discontiniued, I know it's just a game and noone can know exactly what's the problem but I think the same error applies also in other apps that doesn't work since lollipop and based on that I think there is a solution someway.
I will apreciate any feedbak and advice on what should I do, Thanks.
Exception
Please provide logs for logcat.
use below command
$ adb logcat
You can verify it by your own to see why you got crash.
Waiting for logs .
I came across this same error caused by having installed the JDK 7 instead of 6. Hope it helps some other people with this error.
please check below link
http://stackoverflow.com/questions/6161931/java-lang-securityexception-when-install-apk
This is what I get when I try to run the app:
---- Oct 15, 2015 1:50:24 AM ----
10-15 01:47:42.044 9007 9007 I Timeline: Timeline: Activity_launch_request id:com.AvatarLabs.RhythmRacerX time:75719530
10-15 01:47:42.049 3837 5012 W ActivityManager: NORMAL SET : srcAppInfo.processName = com.sec.android.app.launcher, destAppInfo.processName = com.AvatarLabs.RhythmRacerX
10-15 01:47:42.159 3837 8545 I ActivityManager: Start proc com.AvatarLabs.RhythmRacerX for activity com.AvatarLabs.RhythmRacerX/com.unity3d.MobclixPlugin.MobclixPluginActivity: pid=12571 uid=10193 gids={50193, 9997, 3003} abi=armeabi-v7a
10-15 01:47:42.489 12571 12571 E AndroidRuntime: Process: com.AvatarLabs.RhythmRacerX, PID: 12571
10-15 01:47:42.489 12571 12571 E AndroidRuntime: java.lang.UnsatisfiedLinkError: Bad JNI version returned from JNI_OnLoad in "/data/app/com.AvatarLabs.RhythmRacerX-1/lib/arm/libmono.so": 0
10-15 01:47:42.509 3837 3937 W ActivityManager: Force finishing activity com.AvatarLabs.RhythmRacerX/com.unity3d.MobclixPlugin.MobclixPluginActivity
10-15 01:47:42.859 3837 3937 I WindowManager: Screenshot max retries 4 of Token{b537e72 ActivityRecord{35dd2f7d u0 com.AvatarLabs.RhythmRacerX/com.unity3d.MobclixPlugin.MobclixPluginActivity t403 f}} appWin=Window{27d1c81f u0 Starting com.AvatarLabs.RhythmRacerX} drawState=4
10-15 01:47:43.364 3837 3959 W ActivityManager: Activity pause timeout for ActivityRecord{35dd2f7d u0 com.AvatarLabs.RhythmRacerX/com.unity3d.MobclixPlugin.MobclixPluginActivity t403 f}
10-15 01:47:44.864 3837 8850 I ActivityManager: Process com.AvatarLabs.RhythmRacerX (pid 12571)(adj 9) has died(476,758)
---- Oct 15, 2015 1:50:24 AM ----
This is the entire logcat, I know this is weird, you mean that lollipop has JDK 7 and the game uses JDK 6 and that's the problem, and do I have to install JDK 6 some way on my device or try to make the propper changes to my .apk file?

Ported a rom but settings not working

Hello guys I ported a rom sucessfully with the only downside that settings doesnt work as I get Unfortunately, Settings Has Stopped
What can It be / how to fix or troubleshoot?
logcat below
SVLAN said:
Hello guys I ported a rom sucessfully with the only downside that settings doesnt work as I get Unfortunately, Settings Has Stopped
What can It be / how to fix or troubleshoot?
logcat below
Click to expand...
Click to collapse
Looking into it now......
Ok besides the crap load of wifi stuff and sound issues heres what I found.
Code:
11-25 22:44:17.930 I/ActivityManager(890): START u0 {act=android.settings.SETTINGS flg=0x14000000 cmp=com.android.settings/.Settings} from pid 1056
11-25 22:44:18.030 D/dalvikvm(890): GC_FOR_ALLOC freed 1816K, 33% free 20264K/29940K, paused 65ms, total 67ms
11-25 22:44:18.080 V/PanelView(1056): animationTick called with dtms=0; nothing to do (h=1184.0 v=-5000.0)
11-25 22:44:18.080 V/PanelView(1056): animationTick called with dtms=-11; nothing to do (h=1184.0 v=-5000.0)
11-25 22:44:18.090 I/ActivityManager(890): Start proc com.android.settings for activity com.android.settings/.Settings: pid=9959 uid=1000 gids={41000, 1028, 1015, 1023, 3002, 3001, 3003}
11-25 22:44:18.380 E/NFC (9959): could not retrieve NFC service
11-25 22:44:18.380 D/AndroidRuntime(9959): Shutting down VM
11-25 22:44:18.380 W/dalvikvm(9959): threadid=1: thread exiting with uncaught exception (group=0x41b29b90)
11-25 22:44:18.390 E/AndroidRuntime(9959): FATAL EXCEPTION: main
11-25 22:44:18.390 E/AndroidRuntime(9959): Process: com.android.settings, PID: 9959
11-25 22:44:18.390 E/AndroidRuntime(9959): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.settings/com.android.settings.Settings}: java.lang.NullPointerException
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2176)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2226)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread.access$700(ActivityThread.java:135)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1397)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.os.Handler.dispatchMessage(Handler.java:102)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.os.Looper.loop(Looper.java:137)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread.main(ActivityThread.java:4998)
11-25 22:44:18.390 E/AndroidRuntime(9959): at java.lang.reflect.Method.invokeNative(Native Method)
11-25 22:44:18.390 E/AndroidRuntime(9959): at java.lang.reflect.Method.invoke(Method.java:515)
11-25 22:44:18.390 E/AndroidRuntime(9959): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:781)
11-25 22:44:18.390 E/AndroidRuntime(9959): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
11-25 22:44:18.390 E/AndroidRuntime(9959): at dalvik.system.NativeStart.main(Native Method)
11-25 22:44:18.390 E/AndroidRuntime(9959): Caused by: java.lang.NullPointerException
11-25 22:44:18.390 E/AndroidRuntime(9959): at com.android.settings.Settings.updateHeaderList(Settings.java:594)
11-25 22:44:18.390 E/AndroidRuntime(9959): at com.android.settings.Settings.onBuildHeaders(Settings.java:530)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.preference.PreferenceActivity.onCreate(PreferenceActivity.java:555)
11-25 22:44:18.390 E/AndroidRuntime(9959): at com.android.settings.Settings.onCreate(Settings.java:207)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.Activity.performCreate(Activity.java:5243)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
11-25 22:44:18.390 E/AndroidRuntime(9959): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2140)
11-25 22:44:18.390 E/AndroidRuntime(9959): ... 11 more
11-25 22:44:18.440 W/ActivityManager(890): Force finishing activity com.android.settings/.Settings
11-25 22:44:18.681 D/dalvikvm(890): GC_FOR_ALLOC freed 889K, 30% free 20974K/29940K, paused 122ms, total 122ms
11-25 22:44:19.191 W/ActivityManager(890): Activity pause timeout for ActivityRecord{42c74560 u0 com.android.settings/.Settings t33 f}
11-25 22:44:19.341 I/ActivityManager(890): Start proc com.android.vending for service com.android.vending/com.google.android.finsky.services.ContentSyncService: pid=9981 uid=10021 gids={50021, 3003, 1028, 1015, 1023}
11-25 22:44:19.481 D/Finsky (9981): [1] FinskyApp.onCreate: Initializing network with DFE https://android.clients.google.com/fdfe/
11-25 22:44:19.531 D/dalvikvm(9981): GC_CONCURRENT freed 252K, 3% free 11251K/11592K, paused 2ms+3ms, total 37ms
11-25 22:44:19.581 D/Finsky (9981): [1] DailyHygiene.goMakeHygieneIfDirty: No need to run daily hygiene.
11-25 22:44:19.612 W/Settings(9981): Setting download_manager_max_bytes_over_mobile has moved from android.provider.Settings.Secure to android.provider.Settings.Global.
11-25 22:44:19.622 W/Settings(9981): Setting download_manager_recommended_max_bytes_over_mobile has moved from android.provider.Settings.Secure to android.provider.Settings.Global.
11-25 22:44:19.642 D/dalvikvm(9981): GC_CONCURRENT freed 352K, 4% free 11420K/11852K, paused 5ms+9ms, total 54ms
null pointer exception?
issue with nfc.
try a different apk. It might be the wrong apk for your version of android.
what is your rom based on?
Is base on aosp. I deleted the NFC.apk and tag.apk because it was giving me an error which didn't let me do anything. And my device is not NFC ready. Once I deleted the file everything works but not the settings.apk at all. Maybe if I can find everything related to NFC and remove it?
Its odd:cyclops:
Im not really a rom dev so I can't help any further
Wish you the best
Hopefully someone help me at least to tried stuff. Do I also need to port settings.apk?
How 'bout removing the data for the settings app (/data/data/whatever)
then wiping cache partition and dalvik cache.(LOL I just had a moment of truth.....)
Are you using ART on this phone?
---------- Post added at 11:58 PM ---------- Previous post was at 11:57 PM ----------
SVLAN said:
Hopefully someone help me at least to tried stuff. Do I also need to port settings.apk?
Click to expand...
Click to collapse
Probably......
If you looked through the source for the settings apk(dex2jar) then you might find it
Lgrootnoob said:
How 'bout removing the data for the settings app (/data/data/whatever)
then wiping cache partition and dalvik cache.(LOL I just had a moment of truth.....)
Are you using ART on this phone?
---------- Post added at 11:58 PM ---------- Previous post was at 11:57 PM ----------
Probably......
If you looked through the source for the settings apk(dex2jar) then you might find it
Click to expand...
Click to collapse
ok I managed to fix the settings issue by deleting all the intances for NFC which my device dont have or is built for. So that is a plus. Now the only thing that is not working is the tehering and wifi. lol

[Q] SystemUI.apk crashes

Hi,
I'm bulding android for my single board computer with connected 7 inch lcd touch screen. It's working like a charm, but one issue. SystemUI.apk is crashing all the time with following error log:
Code:
I/ActivityManager( 368): Start proc com.android.systemui for restart com.android.systemui: pid=1883 uid=10001 gids={50001, 1028, 1015, 3002, 3001}
D/SystemUIService( 1883): loading: class com.android.systemui.statusbar.tablet.TabletStatusBar
D/SystemUIService( 1883): running: [email protected]
I/StatusBarManagerService( 368): registerStatusBar [email protected]0
W/ResourceType( 1883): Failure getting entry for 0x7f0200db (t=1 e=219) in package 0 (error -75)
D/AndroidRuntime( 1883): Shutting down VM
W/dalvikvm( 1883): threadid=1: thread exiting with uncaught exception (group=0x40d30930)
E/AndroidRuntime( 1883): FATAL EXCEPTION: main
E/AndroidRuntime( 1883): java.lang.RuntimeException: Unable to create service com.android.systemui.SystemUIService: android.view.InflateException: Binary XML file line #48: Error inflating class com.android.systemui.statusbar.policy.CompatModeButton
Does anyone know how to fix this or what's the reason for the crash?
Thank you very much in advance.
Update
rotowsky said:
Hi,
I'm bulding android for my single board computer with connected 7 inch lcd touch screen. It's working like a charm, but one issue. SystemUI.apk is crashing all the time with following error log:
Code:
I/ActivityManager( 368): Start proc com.android.systemui for restart com.android.systemui: pid=1883 uid=10001 gids={50001, 1028, 1015, 3002, 3001}
D/SystemUIService( 1883): loading: class com.android.systemui.statusbar.tablet.TabletStatusBar
D/SystemUIService( 1883): running: [email protected]
I/StatusBarManagerService( 368): registerStatusBar [email protected]0
W/ResourceType( 1883): Failure getting entry for 0x7f0200db (t=1 e=219) in package 0 (error -75)
D/AndroidRuntime( 1883): Shutting down VM
W/dalvikvm( 1883): threadid=1: thread exiting with uncaught exception (group=0x40d30930)
E/AndroidRuntime( 1883): FATAL EXCEPTION: main
E/AndroidRuntime( 1883): java.lang.RuntimeException: Unable to create service com.android.systemui.SystemUIService: android.view.InflateException: Binary XML file line #48: Error inflating class com.android.systemui.statusbar.policy.CompatModeButton
Does anyone know how to fix this or what's the reason for the crash?
Thank you very much in advance.
Click to expand...
Click to collapse
Hope for an Update , and that it works , ( I think so )
Mmh?

BankID and Swish don't work on CM 12.1

I just flashed the new CM 12.1 version and i can't get two of the most important apps i use to work and i wonder if anyone else experiences this? i got an E1003 model.
bankid doesn't work for me either, it's really too bad. Otherwise cm 12.1 seems perfect.
sydeu said:
bankid doesn't work for me either, it's really too bad. Otherwise cm 12.1 seems perfect.
Click to expand...
Click to collapse
i've never experienced this on any device before but i found a temporary fix for it, got bankid and swish activated on my shield tablet meanwhile untill it get resolved but it would be nice to have it working when you leave your home aswell
oll3_1991 said:
i've never experienced this on any device before but i found a temporary fix for it, got bankid and swish activated on my shield tablet meanwhile untill it get resolved but it would be nice to have it working when you leave your home aswell
Click to expand...
Click to collapse
i wouldn't really call that a fix as it doesn't help the phone at all. Hopefully this will be solved but if we're unlucky it will be hard as the dev probably isn't scandinavian and therefor doesn't have the app.
Bankid probably not supported for rooted or custom ROMs.
TTone said:
Bankid probably not supported for rooted or custom ROMs.
Click to expand...
Click to collapse
It had worked on every phone and ROM I've ever used so this is not it.
TTone said:
Bankid probably not supported for rooted or custom ROMs.
Click to expand...
Click to collapse
it worked on my rooted nexus 5 with CM 12.1 and it's currently running on my rooted nvidia shield tablet which is running CM 12.1 so it's something wrong in the rom.
oll3_1991 said:
I just flashed the new CM 12.1 version and i can't get two of the most important apps i use to work and i wonder if anyone else experiences this? i got an E1003 model.
Click to expand...
Click to collapse
What exactly are you experiencing -- are the apps FCing?
Just wanted to see if the app checks for root but it FCs. Here's the logcat.
PHP:
I/Timeline( 9153): Timeline: Activity_launch_request id:com.bankid.bus time:1712596
I/ActivityManager( 8355): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.bankid.bus/.activities.InitActivity (has extras)} from uid 10075 on display 0
V/WindowManager( 8355): addAppToken: AppWindowToken{28764ddb token=Token{29df66ea ActivityRecord{2e0ed5 u0 com.bankid.bus/.activities.InitActivity t86}}} to stack=1 task=86 at 0
V/WindowManager( 8355): Adding window Window{4086bbc u0 Starting com.bankid.bus} at 7 of 11 (after Window{1360d09f u0 com.android.vending/com.google.android.finsky.activities.MainActivity})
I/ActivityManager( 8355): Start proc 19172:com.bankid.bus/u0a73 for activity com.bankid.bus/.activities.InitActivity
V/WindowManager( 8355): rotationForOrientationLw(orient=-1, last=0); user=0 USER_ROTATION_LOCKED
I/Timeline(19172): Timeline: Activity_launch_request id:com.bankid.bus time:1712781
I/ActivityManager( 8355): START u0 {act=android.intent.action.MAIN flg=0x14000000 cmp=com.bankid.bus/.activities.StartupActivity} from uid 10073 on display 0
V/WindowManager( 8355): addAppToken: AppWindowToken{2d587654 token=Token{2fb171a7 ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86}}} to stack=1 task=86 at 1
V/WindowManager( 8355): Based on layer: Adding window Window{4086bbc u0 Starting com.bankid.bus} at 7 of 11
D/AndroidRuntime(19172): Shutting down VM
E/AndroidRuntime(19172): FATAL EXCEPTION: main
E/AndroidRuntime(19172): Process: com.bankid.bus, PID: 19172
E/AndroidRuntime(19172): java.lang.RuntimeException: Unable to resume activity {com.bankid.bus/com.bankid.bus.activities.StartupActivity}: android.opengl.GLException: 4Lx0MSjvuz3sg2eR3r4NuUQZj3E=
E/AndroidRuntime(19172): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3019)
E/AndroidRuntime(19172): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3050)
E/AndroidRuntime(19172): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2425)
E/AndroidRuntime(19172): at android.app.ActivityThread.access$900(ActivityThread.java:154)
E/AndroidRuntime(19172): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1321)
E/AndroidRuntime(19172): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime(19172): at android.os.Looper.loop(Looper.java:135)
E/AndroidRuntime(19172): at android.app.ActivityThread.main(ActivityThread.java:5294)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime(19172): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904)
E/AndroidRuntime(19172): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:699)
E/AndroidRuntime(19172): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:114)
E/AndroidRuntime(19172): Caused by: android.opengl.GLException: 4Lx0MSjvuz3sg2eR3r4NuUQZj3E=
E/AndroidRuntime(19172): at com.bankid.bus.activities.StartupActivity.b0445ххх044504450445(Unknown Source)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime(19172): at com.bankid.bus.activities.StartupActivity.onResume(Unknown Source)
E/AndroidRuntime(19172): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1257)
E/AndroidRuntime(19172): at android.app.Activity.performResume(Activity.java:6076)
E/AndroidRuntime(19172): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3008)
E/AndroidRuntime(19172): ... 12 more
W/ActivityManager( 8355): Force finishing activity 1 com.bankid.bus/.activities.StartupActivity
I/WindowManager( 8355): Screenshot max retries 4 of Token{2fb171a7 ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86 f}} appWin=Window{4086bbc u0 Starting com.bankid.bus} drawState=4
W/art ( 8355): Long monitor contention event with owner method=void com.android.server.am.ActivityManagerService.crashApplication(com.android.server.am.ProcessRecord, android.app.ApplicationErrorReport$CrashInfo) from ActivityManagerService.java:12322 waiters=0 for 295ms
I/OpenGLRenderer( 8355): Initialized EGL, version 1.4
W/ActivityManager( 8355): Activity pause timeout for ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86 f}
V/WindowManager( 8355): rotationForOrientationLw(orient=5, last=0); user=0 USER_ROTATION_LOCKED
I/Timeline( 9153): Timeline: Activity_idle id: [email protected] time:1713710
I/Timeline( 8355): Timeline: Activity_windows_visible id: ActivityRecord{1b40d166 u0 com.teslacoilsw.launcher/.NovaLauncher t77} time:1713970
W/ResourceType( 8663): No package identifier when getting value for resource number 0x00000000
W/PackageManager( 8663): Failure retrieving resources for com.bankid.bus: Resource ID #0x0
D/TaskPersister( 8355): removeObsoleteFile: deleting file=85_task.xml
MrKhozam said:
What exactly are you experiencing -- are the apps FCing?
Click to expand...
Click to collapse
both apps force closes, swish doesn't even say that it force closed. bankid says Unfortunately, BankID has stopped.
SpiritBreak3r said:
Just wanted to see if the app checks for root but it FCs. Here's the logcat.
PHP:
I/Timeline( 9153): Timeline: Activity_launch_request id:com.bankid.bus time:1712596
I/ActivityManager( 8355): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.bankid.bus/.activities.InitActivity (has extras)} from uid 10075 on display 0
V/WindowManager( 8355): addAppToken: AppWindowToken{28764ddb token=Token{29df66ea ActivityRecord{2e0ed5 u0 com.bankid.bus/.activities.InitActivity t86}}} to stack=1 task=86 at 0
V/WindowManager( 8355): Adding window Window{4086bbc u0 Starting com.bankid.bus} at 7 of 11 (after Window{1360d09f u0 com.android.vending/com.google.android.finsky.activities.MainActivity})
I/ActivityManager( 8355): Start proc 19172:com.bankid.bus/u0a73 for activity com.bankid.bus/.activities.InitActivity
V/WindowManager( 8355): rotationForOrientationLw(orient=-1, last=0); user=0 USER_ROTATION_LOCKED
I/Timeline(19172): Timeline: Activity_launch_request id:com.bankid.bus time:1712781
I/ActivityManager( 8355): START u0 {act=android.intent.action.MAIN flg=0x14000000 cmp=com.bankid.bus/.activities.StartupActivity} from uid 10073 on display 0
V/WindowManager( 8355): addAppToken: AppWindowToken{2d587654 token=Token{2fb171a7 ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86}}} to stack=1 task=86 at 1
V/WindowManager( 8355): Based on layer: Adding window Window{4086bbc u0 Starting com.bankid.bus} at 7 of 11
D/AndroidRuntime(19172): Shutting down VM
E/AndroidRuntime(19172): FATAL EXCEPTION: main
E/AndroidRuntime(19172): Process: com.bankid.bus, PID: 19172
E/AndroidRuntime(19172): java.lang.RuntimeException: Unable to resume activity {com.bankid.bus/com.bankid.bus.activities.StartupActivity}: android.opengl.GLException: 4Lx0MSjvuz3sg2eR3r4NuUQZj3E=
E/AndroidRuntime(19172): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3019)
E/AndroidRuntime(19172): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3050)
E/AndroidRuntime(19172): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2425)
E/AndroidRuntime(19172): at android.app.ActivityThread.access$900(ActivityThread.java:154)
E/AndroidRuntime(19172): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1321)
E/AndroidRuntime(19172): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime(19172): at android.os.Looper.loop(Looper.java:135)
E/AndroidRuntime(19172): at android.app.ActivityThread.main(ActivityThread.java:5294)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime(19172): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904)
E/AndroidRuntime(19172): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:699)
E/AndroidRuntime(19172): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:114)
E/AndroidRuntime(19172): Caused by: android.opengl.GLException: 4Lx0MSjvuz3sg2eR3r4NuUQZj3E=
E/AndroidRuntime(19172): at com.bankid.bus.activities.StartupActivity.b0445ххх044504450445(Unknown Source)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime(19172): at java.lang.reflect.Method.invoke(Method.java:372)
E/AndroidRuntime(19172): at com.bankid.bus.activities.StartupActivity.onResume(Unknown Source)
E/AndroidRuntime(19172): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1257)
E/AndroidRuntime(19172): at android.app.Activity.performResume(Activity.java:6076)
E/AndroidRuntime(19172): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3008)
E/AndroidRuntime(19172): ... 12 more
W/ActivityManager( 8355): Force finishing activity 1 com.bankid.bus/.activities.StartupActivity
I/WindowManager( 8355): Screenshot max retries 4 of Token{2fb171a7 ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86 f}} appWin=Window{4086bbc u0 Starting com.bankid.bus} drawState=4
W/art ( 8355): Long monitor contention event with owner method=void com.android.server.am.ActivityManagerService.crashApplication(com.android.server.am.ProcessRecord, android.app.ApplicationErrorReport$CrashInfo) from ActivityManagerService.java:12322 waiters=0 for 295ms
I/OpenGLRenderer( 8355): Initialized EGL, version 1.4
W/ActivityManager( 8355): Activity pause timeout for ActivityRecord{147cca66 u0 com.bankid.bus/.activities.StartupActivity t86 f}
V/WindowManager( 8355): rotationForOrientationLw(orient=5, last=0); user=0 USER_ROTATION_LOCKED
I/Timeline( 9153): Timeline: Activity_idle id: [email protected] time:1713710
I/Timeline( 8355): Timeline: Activity_windows_visible id: ActivityRecord{1b40d166 u0 com.teslacoilsw.launcher/.NovaLauncher t77} time:1713970
W/ResourceType( 8663): No package identifier when getting value for resource number 0x00000000
W/PackageManager( 8663): Failure retrieving resources for com.bankid.bus: Resource ID #0x0
D/TaskPersister( 8355): removeObsoleteFile: deleting file=85_task.xml
Click to expand...
Click to collapse
i tried to disable root so it's not that, BankID FC's and Swish just flashes for a millisecond before it even have a chance to FC.
these apps are the two of the most important apps in scandinavia
I had the same experience when I tried CM 12.1 yesterday. Didn't investigate any deeper, instead I went back to OOS 2.1.3.X where both apps work fine.
Swish has not always worked on OPX. About a month ago the Swish devs made a fix serverside to solve the problems to activate Swish on OPX. Before that, I used the xposed module Device Faker as a workaround. Apparently, Swish detects what device you are using and acts according to that... Don't know if Device Faker would work this time also. Seems like a different problem now, but try it and report back.
ptblad said:
I had the same experience when I tried CM 12.1 yesterday. Didn't investigate any deeper, instead I went back to OOS 2.1.3.X where both apps work fine.
Swish has not always worked on OPX. About a month ago the Swish devs made a fix serverside to solve the problems to activate Swish on OPX. Before that, I used the xposed module Device Faker as a workaround. Apparently, Swish detects what device you are using and acts according to that... Don't know if Device Faker would work this time also. Seems like a different problem now, but try it and report back.
Click to expand...
Click to collapse
not the same issue this time, i also had that and fixed it with device faker, this is instant FC and has nothing to do with the activation.
sydeu said:
both apps force closes, swish doesn't even say that it force closed. bankid says Unfortunately, BankID has stopped.
Click to expand...
Click to collapse
I think there should be a way to grab a logcat for the dev (since you're rooted) to help debug the issue.
/edit: nvm, you did exactly that and I didn't catch it.
MrKhozam said:
I think there should be a way to grab a logcat for the dev (since you're rooted) to help debug the issue.
/edit: nvm, you did exactly that and I didn't catch it.
Click to expand...
Click to collapse
It wasn't me but yes someone else already did so that's a good start
Bugs still present in new release.
i flashed back to oxygenOS meanwhile because call quality was crap aswell.
Has anyone tried on the last CM version?
charliebigpot said:
Has anyone tried on the last CM version?
Click to expand...
Click to collapse
I tried on stable 9.0s and the bug is still present.
Still doesn't work - how can I help?
I'm typically a Web Developer, I have some knowledge of adb and could probably debug properly if I knew where to start. How can I start?

Categories

Resources