[Q] Self-developed system app encountered REMOVE_TASKS permission problem - General Questions and Answers

Hello evenryone:
I'm designing an application for removing recents tasks. Because of the need to access system permissions like REMOVE_TASKS and
READ_FRAME_BUFFER, I have sigend my apk file using platform signature and pushed it into /system/app.
After reboot, i found that the app was successfully installed as system app, and permission READ_FRAME_BUFFER was passed, as
application thumb nails were shown. But what confused me most was that permission REMOVE_TASKS seemed to be denied in some way,
tasks being not removed from task list and would be listed next time running this app.
AndroidManifest.xml:
Code:
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="android.permission.REMOVE_TASKS"/>
<uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
Logs read like this:
Code:
06-21 17:49:12.171: W/System.err(1540): java.lang.reflect.InvocationTargetException
06-21 17:49:12.171: W/ActivityManager(391): Permission Denial: removeTask() from pid=1540, uid=10068 requires android.permission.REMOVE_TASKS
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invokeNative(Native Method)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invoke(Method.java:511)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsPanelView.removeTask(RecentsPanelView.java:611)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsPanelView.handleSwipe(RecentsPanelView.java:549)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsVerticalScrollView.onChildDismissed(RecentsVerticalScrollView.java:144)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.SwipeHelper$1.onAnimationEnd(SwipeHelper.java:220)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator.endAnimation(ValueAnimator.java:1012)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator.access$400(ValueAnimator.java:51)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:623)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator$AnimationHandler.run(ValueAnimator.java:639)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer$CallbackRecord.run(Choreographer.java:749)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer.doCallbacks(Choreographer.java:562)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer.doFrame(Choreographer.java:531)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:735)
06-21 17:49:12.179: W/System.err(1540): at android.os.Handler.handleCallback(Handler.java:725)
06-21 17:49:12.179: W/System.err(1540): at android.os.Handler.dispatchMessage(Handler.java:92)
06-21 17:49:12.179: W/System.err(1540): at android.os.Looper.loop(Looper.java:137)
06-21 17:49:12.179: W/System.err(1540): at android.app.ActivityThread.main(ActivityThread.java:5041)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invokeNative(Native Method)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invoke(Method.java:511)
06-21 17:49:12.179: W/System.err(1540): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
06-21 17:49:12.179: W/System.err(1540): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
06-21 17:49:12.179: W/System.err(1540): at dalvik.system.NativeStart.main(Native Method)
06-21 17:49:12.187: W/System.err(1540): Caused by: java.lang.SecurityException: Permission Denial: removeTask() from pid=1540, uid=10068 requires android.permission.REMOVE_TASKS
06-21 17:49:12.187: W/System.err(1540): at android.os.Parcel.readException(Parcel.java:1425)
06-21 17:49:12.187: W/System.err(1540): at android.os.Parcel.readException(Parcel.java:1379)
06-21 17:49:12.187: W/System.err(1540): at android.app.ActivityManagerProxy.removeTask(ActivityManagerNative.java:3940)
06-21 17:49:12.187: W/System.err(1540): at android.app.ActivityManager.removeTask(ActivityManager.java:792)
06-21 17:49:12.187: W/System.err(1540): ... 23 more
I know exactly that there may be something wrong with uid or pid, so I tried to changed the uid by android:shareUserId="android.uid.system"
But new problem arised that it could not even be installed and couldn't appear in the launcher this time. Please help me!

Xuuuud said:
Hello evenryone:
I'm designing an application for removing recents tasks. Because of the need to access system permissions like REMOVE_TASKS and
READ_FRAME_BUFFER, I have sigend my apk file using platform signature and pushed it into /system/app.
After reboot, i found that the app was successfully installed as system app, and permission READ_FRAME_BUFFER was passed, as
application thumb nails were shown. But what confused me most was that permission REMOVE_TASKS seemed to be denied in some way,
tasks being not removed from task list and would be listed next time running this app.
AndroidManifest.xml:
Code:
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="android.permission.REMOVE_TASKS"/>
<uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
Logs read like this:
Code:
06-21 17:49:12.171: W/System.err(1540): java.lang.reflect.InvocationTargetException
06-21 17:49:12.171: W/ActivityManager(391): Permission Denial: removeTask() from pid=1540, uid=10068 requires android.permission.REMOVE_TASKS
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invokeNative(Native Method)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invoke(Method.java:511)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsPanelView.removeTask(RecentsPanelView.java:611)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsPanelView.handleSwipe(RecentsPanelView.java:549)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.RecentsVerticalScrollView.onChildDismissed(RecentsVerticalScrollView.java:144)
06-21 17:49:12.179: W/System.err(1540): at com.newbee.recentstaskmanager.SwipeHelper$1.onAnimationEnd(SwipeHelper.java:220)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator.endAnimation(ValueAnimator.java:1012)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator.access$400(ValueAnimator.java:51)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:623)
06-21 17:49:12.179: W/System.err(1540): at android.animation.ValueAnimator$AnimationHandler.run(ValueAnimator.java:639)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer$CallbackRecord.run(Choreographer.java:749)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer.doCallbacks(Choreographer.java:562)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer.doFrame(Choreographer.java:531)
06-21 17:49:12.179: W/System.err(1540): at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:735)
06-21 17:49:12.179: W/System.err(1540): at android.os.Handler.handleCallback(Handler.java:725)
06-21 17:49:12.179: W/System.err(1540): at android.os.Handler.dispatchMessage(Handler.java:92)
06-21 17:49:12.179: W/System.err(1540): at android.os.Looper.loop(Looper.java:137)
06-21 17:49:12.179: W/System.err(1540): at android.app.ActivityThread.main(ActivityThread.java:5041)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invokeNative(Native Method)
06-21 17:49:12.179: W/System.err(1540): at java.lang.reflect.Method.invoke(Method.java:511)
06-21 17:49:12.179: W/System.err(1540): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
06-21 17:49:12.179: W/System.err(1540): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
06-21 17:49:12.179: W/System.err(1540): at dalvik.system.NativeStart.main(Native Method)
06-21 17:49:12.187: W/System.err(1540): Caused by: java.lang.SecurityException: Permission Denial: removeTask() from pid=1540, uid=10068 requires android.permission.REMOVE_TASKS
06-21 17:49:12.187: W/System.err(1540): at android.os.Parcel.readException(Parcel.java:1425)
06-21 17:49:12.187: W/System.err(1540): at android.os.Parcel.readException(Parcel.java:1379)
06-21 17:49:12.187: W/System.err(1540): at android.app.ActivityManagerProxy.removeTask(ActivityManagerNative.java:3940)
06-21 17:49:12.187: W/System.err(1540): at android.app.ActivityManager.removeTask(ActivityManager.java:792)
06-21 17:49:12.187: W/System.err(1540): ... 23 more
I know exactly that there may be something wrong with uid or pid, so I tried to changed the uid by android:shareUserId="android.uid.system"
But new problem arised that it could not even be installed and couldn't appear in the launcher this time. Please help me!
Click to expand...
Click to collapse
Did you ever figure this out?

Mohammad_Adib said:
Did you ever figure this out?
Click to expand...
Click to collapse
Yes. Once I wanted to make the app independent of all ROMs, but later I found that this task manager could only be signed a platform signature used for that specific ROM, or else, this permission would still be denied, according to the source code of package manager service.
I added it into my signing list, everything went well.

Related

Is someone able to run Öffi, Glympse or OSMonitor in Froyomod2.9 ?

Hi
Setup: Milestone, Froyomod 2.9, ORA 3.3, App2ext used
I installed Froyomod 2.9 and can't start Öffi, Glympse and OSMonitor.
Is anyone of you able to start them ? If yes, could you please post the catlog (via droidexplorer.. clear the window, start the app, copy the log) of a successful start of these apps ?
Here are mine, if somebody wants to go bughunting..
Öffi:
Code:
ActivityManager( 2048): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=de.schildbach.oeffi/.stations.StationsActivity bnds=[632,369][761,480] }
ActivityManager( 2048): Start proc de.schildbach.oeffi for activity de.schildbach.oeffi/.stations.StationsActivity: pid=2926 uid=10065 gids={3003}
dalvikvm( 2926): could not disable core file generation for pid 2926, errno=1
ggheart ( 2373): onStop
ActivityThread( 2926): Publishing provider de.schildbach.oeffi.plans: de.schildbach.oeffi.plans.PlanContentProvider
global ( 2926): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
ActivityThread( 2926): Publishing provider de.schildbach.oeffi.stations.favorites: de.schildbach.oeffi.stations.FavoriteStationsProvider
ActivityThread( 2926): Publishing provider de.schildbach.oeffi.networks: de.schildbach.oeffi.stations.NetworkContentProvider
ActivityThread( 2926): Publishing provider de.schildbach.oeffi.directions.query_history: de.schildbach.oeffi.directions.QueryHistoryProvider
dalvikvm( 2926): Unable to resolve superclass of Lde/schildbach/oeffi/OeffiActivity; (199)
dalvikvm( 2926): Link of class 'Lde/schildbach/oeffi/OeffiActivity;' failed
dalvikvm( 2926): Unable to resolve superclass of Lde/schildbach/oeffi/OeffiMainActivity; (228)
dalvikvm( 2926): Link of class 'Lde/schildbach/oeffi/OeffiMainActivity;' failed
dalvikvm( 2926): Unable to resolve superclass of Lde/schildbach/oeffi/stations/StationsActivity; (231)
dalvikvm( 2926): Link of class 'Lde/schildbach/oeffi/stations/StationsActivity;' failed
dalvikvm( 2926): GC_FOR_MALLOC freed 5585 objects / 302712 bytes in 60ms
AndroidRuntime( 2926): Shutting down VM
dalvikvm( 2926): threadid=1: thread exiting with uncaught exception (group=0x400207e0)
AndroidRuntime( 2926): FATAL EXCEPTION: main
AndroidRuntime( 2926): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{de.schildbach.oeffi/de.schildbach.oeffi.stations.StationsActivity}: java.lang.ClassNotFoundException: de.schildbach.oeffi.stations.StationsActivity in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/de.schildbach.oeffi-1.apk]
AndroidRuntime( 2926): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
AndroidRuntime( 2926): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
AndroidRuntime( 2926): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
AndroidRuntime( 2926): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
AndroidRuntime( 2926): at android.os.Handler.dispatchMessage(Handler.java:99)
AndroidRuntime( 2926): at android.os.Looper.loop(Looper.java:123)
AndroidRuntime( 2926): at android.app.ActivityThread.main(ActivityThread.java:4627)
AndroidRuntime( 2926): at java.lang.reflect.Method.invokeNative(Native Method)
AndroidRuntime( 2926): at java.lang.reflect.Method.invoke(Method.java:521)
AndroidRuntime( 2926): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
AndroidRuntime( 2926): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
AndroidRuntime( 2926): at dalvik.system.NativeStart.main(Native Method)
AndroidRuntime( 2926): Caused by: java.lang.ClassNotFoundException: de.schildbach.oeffi.stations.StationsActivity in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/de.schildbach.oeffi-1.apk]
AndroidRuntime( 2926): at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
AndroidRuntime( 2926): at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
AndroidRuntime( 2926): at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
AndroidRuntime( 2926): at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
AndroidRuntime( 2926): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
AndroidRuntime( 2926): ... 11 more
ActivityManager( 2048): Force finishing activity de.schildbach.oeffi/.stations.StationsActivity
ActivityManager( 2048): Activity pause timeout for HistoryRecord{46421688 de.schildbach.oeffi/.stations.StationsActivity}
DemoService( 2373): DiyScheduer.onStart
ggheart ( 2373): onStart
ActivityManager( 2048): Activity destroy timeout for HistoryRecord{46421688 de.schildbach.oeffi/.stations.StationsActivity}
Glympse:
Code:
ActivityManager( 2048): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.glympse.android.glympse/.Glympse bnds=[426,262][555,373] }
ResourceType( 2048): Style contains key with bad entry: 0x01010361
ActivityManager( 2048): Start proc com.glympse.android.glympse for activity com.glympse.android.glympse/.Glympse: pid=2933 uid=10061 gids={3003, 1006}
dalvikvm( 2933): could not disable core file generation for pid 2933, errno=1
ggheart ( 2373): onStop
dalvikvm( 2933): Unable to resolve superclass of Lcom/glympse/android/glympse/Glympse; (530)
dalvikvm( 2933): Link of class 'Lcom/glympse/android/glympse/Glympse;' failed
AndroidRuntime( 2933): Shutting down VM
dalvikvm( 2933): threadid=1: thread exiting with uncaught exception (group=0x400207e0)
AndroidRuntime( 2933): FATAL EXCEPTION: main
AndroidRuntime( 2933): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.glympse.android.glympse/com.glympse.android.glympse.Glympse}: java.lang.ClassNotFoundException: com.glympse.android.glympse.Glympse in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.glympse.android.glympse-1.apk]
AndroidRuntime( 2933): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
AndroidRuntime( 2933): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
AndroidRuntime( 2933): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
AndroidRuntime( 2933): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
AndroidRuntime( 2933): at android.os.Handler.dispatchMessage(Handler.java:99)
AndroidRuntime( 2933): at android.os.Looper.loop(Looper.java:123)
AndroidRuntime( 2933): at android.app.ActivityThread.main(ActivityThread.java:4627)
AndroidRuntime( 2933): at java.lang.reflect.Method.invokeNative(Native Method)
AndroidRuntime( 2933): at java.lang.reflect.Method.invoke(Method.java:521)
AndroidRuntime( 2933): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
AndroidRuntime( 2933): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
AndroidRuntime( 2933): at dalvik.system.NativeStart.main(Native Method)
AndroidRuntime( 2933): Caused by: java.lang.ClassNotFoundException: com.glympse.android.glympse.Glympse in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.glympse.android.glympse-1.apk]
AndroidRuntime( 2933): at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
AndroidRuntime( 2933): at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
AndroidRuntime( 2933): at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
AndroidRuntime( 2933): at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
AndroidRuntime( 2933): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
AndroidRuntime( 2933): ... 11 more
ActivityManager( 2048): Force finishing activity com.glympse.android.glympse/.Glympse
ActivityManager( 2048): Activity pause timeout for HistoryRecord{46470bf8 com.glympse.android.glympse/.Glympse}
DemoService( 2373): DiyScheduer.onStart
ggheart ( 2373): onStart
OS Monitor:
Code:
ActivityManager( 2048): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.eolwral.osmonitor/.OSMonitor bnds=[220,262][349,373] }
ActivityManager( 2048): Start proc com.eolwral.osmonitor for activity com.eolwral.osmonitor/.OSMonitor: pid=2946 uid=10070 gids={3003, 1007, 1015}
dalvikvm( 2946): could not disable core file generation for pid 2946, errno=1
dalvikvm( 2946): Unable to resolve superclass of Lcom/eolwral/osmonitor/networks/NetworkList; (198)
dalvikvm( 2946): Link of class 'Lcom/eolwral/osmonitor/networks/NetworkList;' failed
dalvikvm( 2946): Could not find class 'com.eolwral.osmonitor.networks.NetworkList', referenced from method com.eolwral.osmonitor.OSMonitor.onCreate
dalvikvm( 2946): VFY: unable to resolve const-class 178 (Lcom/eolwral/osmonitor/networks/NetworkList;) in Lcom/eolwral/osmonitor/OSMonitor;
dalvikvm( 2946): VFY: replacing opcode 0x1c at 0x00bd
dalvikvm( 2946): VFY: dead code 0x00bf-0125 in Lcom/eolwral/osmonitor/OSMonitor;.onCreate (Landroid/os/Bundle;)V
ggheart ( 2373): onStop
dalvikvm( 2946): GC_EXTERNAL_ALLOC freed 991 objects / 71992 bytes in 79ms
dalvikvm( 2946): Trying to load lib /data/data/com.eolwral.osmonitor/lib/libosmonitor.so 0x461819f0
dalvikvm( 2946): Added shared lib /data/data/com.eolwral.osmonitor/lib/libosmonitor.so 0x461819f0
AndroidRuntime( 2946): Shutting down VM
dalvikvm( 2946): threadid=1: thread exiting with uncaught exception (group=0x400207e0)
AndroidRuntime( 2946): FATAL EXCEPTION: main
AndroidRuntime( 2946): java.lang.NoClassDefFoundError: com.eolwral.osmonitor.networks.NetworkList
AndroidRuntime( 2946): at com.eolwral.osmonitor.OSMonitor.onCreate(OSMonitor.java:73)
AndroidRuntime( 2946): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
AndroidRuntime( 2946): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
AndroidRuntime( 2946): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
AndroidRuntime( 2946): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
AndroidRuntime( 2946): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
AndroidRuntime( 2946): at android.os.Handler.dispatchMessage(Handler.java:99)
AndroidRuntime( 2946): at android.os.Looper.loop(Looper.java:123)
AndroidRuntime( 2946): at android.app.ActivityThread.main(ActivityThread.java:4627)
AndroidRuntime( 2946): at java.lang.reflect.Method.invokeNative(Native Method)
AndroidRuntime( 2946): at java.lang.reflect.Method.invoke(Method.java:521)
AndroidRuntime( 2946): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
AndroidRuntime( 2946): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
AndroidRuntime( 2946): at dalvik.system.NativeStart.main(Native Method)
ActivityManager( 2048): Force finishing activity com.eolwral.osmonitor/.OSMonitor
ActivityManager( 2048): Activity pause timeout for HistoryRecord{46387588 com.eolwral.osmonitor/.OSMonitor}
DemoService( 2373): DiyScheduer.onStart
ggheart ( 2373): onStart

"Unfortunately, Terminal Emulator has stopped." -- Missing library?

It's been a while since I've used Terminal Emulator on the phone, but this is a new failure for me. As far as I know, I'm still running the same CM9 build from months ago and shouldn't have changed much. As best as I can tell it is an unsatisfied library linkage.
Code:
Caused by: java.lang.UnsatisfiedLinkError: Couldn't load jackpal-androidterm4: findLibrary returned null
but no indications as to what might be missing. I've re-installed a fresh APK from both Market/Play, as well as deleting and side-loading from the source distribution site, without much change in behavior. APK is installed in /system/app/ and is ODEX-ed when installed by Market/Play over the original. Installing from Market/Play or side-loading as a user app
Has anyone else run into this?
More logcat:
Code:
I/ActivityManager( 224): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=jackpal.androidterm/.Term bnds=[240,170][360,302]} from pid 14011
I/ActivityManager( 224): Start proc jackpal.androidterm for activity jackpal.androidterm/.Term: pid=20860 uid=10081 gids={3003, 1015}
I/dalvikvm(20860): Turning on JNI app bug workarounds for target SDK version 11...
E/Term (20860): onCreate
D/OpenGLRenderer(14011): Flushing caches (mode 1)
D/Term (20860): TermService started
I/TermService(20860): Activity called onBind()
I/Term (20860): Bound to TermService
I/TermService(20860): Activity binding to service
W/dalvikvm(20860): Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Ljackpal/androidterm/Exec;
D/AndroidRuntime(20860): Shutting down VM
W/dalvikvm(20860): threadid=1: thread exiting with uncaught exception (group=0x40a2b1f8)
E/AndroidRuntime(20860): FATAL EXCEPTION: main
E/AndroidRuntime(20860): java.lang.ExceptionInInitializerError
E/AndroidRuntime(20860): at jackpal.androidterm.ShellTermSession.createSubprocess(ShellTermSession.java:198)
E/AndroidRuntime(20860): at jackpal.androidterm.ShellTermSession.initializeSession(ShellTermSession.java:135)
E/AndroidRuntime(20860): at jackpal.androidterm.ShellTermSession.<init>(ShellTermSession.java:88)
E/AndroidRuntime(20860): at jackpal.androidterm.Term.createTermSession(Term.java:430)
E/AndroidRuntime(20860): at jackpal.androidterm.Term.createTermSession(Term.java:439)
E/AndroidRuntime(20860): at jackpal.androidterm.Term.populateViewFlipper(Term.java:352)
E/AndroidRuntime(20860): at jackpal.androidterm.Term.access$400(Term.java:78)
E/AndroidRuntime(20860): at jackpal.androidterm.Term$2.onServiceConnected(Term.java:148)
E/AndroidRuntime(20860): at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1068)
E/AndroidRuntime(20860): at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1085)
E/AndroidRuntime(20860): at android.os.Handler.handleCallback(Handler.java:605)
E/AndroidRuntime(20860): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime(20860): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(20860): at android.app.ActivityThread.main(ActivityThread.java:4575)
E/AndroidRuntime(20860): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(20860): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(20860): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
E/AndroidRuntime(20860): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
E/AndroidRuntime(20860): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(20860): Caused by: java.lang.UnsatisfiedLinkError: Couldn't load jackpal-androidterm4: findLibrary returned null
E/AndroidRuntime(20860): at java.lang.Runtime.loadLibrary(Runtime.java:365)
E/AndroidRuntime(20860): at java.lang.System.loadLibrary(System.java:535)
E/AndroidRuntime(20860): at jackpal.androidterm.Exec.<clinit>(Exec.java:33)
E/AndroidRuntime(20860): ... 19 more
W/ActivityManager( 224): Force finishing activity jackpal.androidterm/.Term

[Q]com.android.phone stop!Need help.

Port miui base on stockrom,first boot the phone crash.I can not confirm the reason.
Code:
W/dalvikvm(18330): threadid=1: thread exiting with uncaught exception (group=0x417bee48)
E/AndroidRuntime(18330): FATAL EXCEPTION: main
E/AndroidRuntime(18330): Process: com.android.phone, PID: 18330
E/AndroidRuntime(18330): java.lang.RuntimeException: Error receiving broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x20000010 (has extras) } in [email protected]
E/AndroidRuntime(18330): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:788)
E/AndroidRuntime(18330): at android.os.Handler.handleCallback(Handler.java:733)
E/AndroidRuntime(18330): at android.os.Handler.dispatchMessage(Handler.java:95)
E/AndroidRuntime(18330): at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime(18330): at android.app.ActivityThread.main(ActivityThread.java:5105)
E/AndroidRuntime(18330): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(18330): at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime(18330): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:792)
E/AndroidRuntime(18330): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:608)
E/AndroidRuntime(18330): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(18330): Caused by: java.lang.IllegalArgumentException: Unknown URL
E/AndroidRuntime(18330): at com.android.providers.telephony.SmsProvider.delete(SmsProvider.java:935)
E/AndroidRuntime(18330): at android.content.ContentProvider$Transport.delete(ContentProvider.java:273)
E/AndroidRuntime(18330): at android.content.ContentResolver.delete(ContentResolver.java:1298)
E/AndroidRuntime(18330): at android.database.sqlite.SqliteWrapper.delete(SqliteWrapper.java:90)
E/AndroidRuntime(18330): at com.android.internal.telephony.gsm.GSMPhone$3.onReceive(GSMPhone.java:558)
E/AndroidRuntime(18330): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:778)
E/AndroidRuntime(18330): ... 9 more
I/Process (18330): Sending signal. PID: 18330 SIG: 9
W/ActivityManager( 1101): Process com.android.phone has crashed too many times: killing!

[Q&A] [ROM][PORT][D2303][4.4.4]Pac-Man-Final Release[Fully Working]

Q&A for [ROM][PORT][D2303][4.4.4]Pac-Man-Final Release[Fully Working]
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.
Before posting, please use the forum search and read through the discussion thread for [ROM][PORT][D2303][4.4.4]Pac-Man-Final Release[Fully Working]. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.
Thanks for understanding and for helping to keep XDA neat and tidy!
AssoDiPicche said:
The ROM is ready, but not work:Torch and Random reboots.
Sent from my Xperia M2 LTE using XDA Free mobile app
Click to expand...
Click to collapse
link please? work in D2306?
The ROM is ready, i upload in this week, yes work on D2306, (the dual sim works!!)
Sent from my Xperia M2 LTE using XDA Free mobile app
Wont rotate
Hi, mi xperia m2 d2306 wont rotate display
Any ideas why?
Thanks
---------- Post added at 06:09 AM ---------- Previous post was at 05:22 AM ----------
Mi xperia m2 2306 wont rotate display
any ideas?
Thanks
Hey just tested all roms on my D2403 here, first Pac doesn't work. After installing FIUI my recovery changed and I just tried flashing Pac again.
It works, after starting it said com.android.phone and pacconsole stopped but i can call. Camera doesn't work too.
i would like to see everything working on my phone.
my error log
Code:
E/tadif ( 193): Failed to connect to tad.
E/bs_updatemiscta( 277): Read "ro.semc.version.sw": -> ERROR
E/bs_updatemiscta( 277): Read "ro.semc.version.sw_revision": -> ERROR
E/bs_updatemiscta( 277): Read "ro.semc.version.sw_variant": -> ERROR
E/bs_updatemiscta( 277): Read "ro.semc.version.sw_type": -> ERROR
E/bs_updatemiscta( 277): Step Reading version properties information -> ERROR
E/bs_updatemiscta( 277): update_ta_sw_version: SpaceId string length error
E/bs_updatemiscta( 277): Update SW_VERSION information -> ERROR
E/bs_updatemiscta( 277): Read "ro.semc.version.fs": -> ERROR
E/bs_updatemiscta( 277): Read "ro.semc.product.model": -> ERROR
E/bs_updatemiscta( 277): UpdateMiscTa ended with error -> ERROR
E/PackageParser( 707): Package com.cyanogenmod.services has no certificates at entry AndroidManifest.xml; ignoring!
E/EventHub( 707): could not get driver version for /dev/input/mice, Not a typewriter
E/MobileDataStateTracker( 707): default: Ignoring feature request because could not acquire PhoneService
E/MobileDataStateTracker( 707): default: Could not enable APN type "default"
E/DisplayPowerController( 707): *** Keyguard started
E/QCOM PowerHAL( 707): Invalid hint ID.
E/OMXMaster( 262): A component of name 'OMX.qcom.audio.decoder.aac' already exists, ignoring this one.
E/WifiConfigStore( 707): Error parsing configurationjava.io.FileNotFoundException: /data/misc/wifi/ipconfig.txt: open failed: ENOENT (No such file or directory)
E/SELinux ( 1027): SELinux: Loaded file_contexts from /file_contexts
E/SELinux ( 1027): SELinux: Could not open /data/system/packages.list: Permission denied.
E/MediaFocusControl( 707): Error updating focussed RCC to RCD
E/MediaFocusControl( 707): java.util.EmptyStackException
E/MediaFocusControl( 707): at java.util.Stack.peek(Stack.java:57)
E/MediaFocusControl( 707): at android.media.MediaFocusControl.registerRemoteControlDisplay_int(MediaFocusControl.java:2238)
E/MediaFocusControl( 707): at android.media.MediaFocusControl.registerRemoteController(MediaFocusControl.java:217)
E/MediaFocusControl( 707): at android.media.AudioService.registerRemoteController(AudioService.java:4574)
E/MediaFocusControl( 707): at android.media.IAudioService$Stub.onTransact(IAudioService.java:625)
E/MediaFocusControl( 707): at android.os.Binder.execTransact(Binder.java:404)
E/MediaFocusControl( 707): at dalvik.system.NativeStart.run(Native Method)
E/ ( 707): W/open failed: /dev/mdm: No such file or directory
E/LocSvc_afw( 707): W/get_extension: Invalid interface passed in
E/VoldConnector( 707): NDC Command {3 volume mount /storage/sdcard1} took too long (1280ms)
E/LocationManagerService( 707): no fused location provider found
E/LocationManagerService( 707): java.lang.IllegalStateException: Location service needs a fused location provider
E/LocationManagerService( 707): at com.android.server.LocationManagerService.loadProvidersLocked(LocationManagerService.java:420)
E/LocationManagerService( 707): at com.android.server.LocationManagerService.systemRunning(LocationManagerService.java:250)
E/LocationManagerService( 707): at com.android.server.ServerThread$2.run(SystemServer.java:1204)
E/LocationManagerService( 707): at com.android.server.am.ActivityManagerService.systemReady(ActivityManagerService.java:9554)
E/LocationManagerService( 707): at com.android.server.ServerThread.initAndLoop(SystemServer.java:1111)
E/LocationManagerService( 707): at com.android.server.SystemServer.main(SystemServer.java:1386)
E/LocationManagerService( 707): at java.lang.reflect.Method.invokeNative(Native Method)
E/LocationManagerService( 707): at java.lang.reflect.Method.invoke(Method.java:515)
E/LocationManagerService( 707): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:796)
E/LocationManagerService( 707): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
E/LocationManagerService( 707): at dalvik.system.NativeStart.main(Native Method)
E/LocationManagerService( 707): no geocoder provider found
E/LocSvc_flp( 707): I/===> const FlpLocationInterface* get_flp_interface() line 63
E/ ( 707): W/open failed: /dev/mdm: No such file or directory
E/ ( 707): W/open failed: /dev/mdm: No such file or directory
E/LocSvc_api_v02( 707): I/locClientOpen:2189]: Service instance id is -1
E/LocSvc_api_v02( 707): I/---> locClientOpenInstance line 2073 loc client open
E/LocationManagerService( 707): No FusedProvider found.
E/LocationManagerService( 707): no geofence provider found
E/PackageManager( 707): Unable to find icon pack: holo
E/LocSvc_api_v02( 707): I/---> locClientSendReq line 2333 QMI_LOC_REG_EVENTS_REQ_V02
E/LocSvc_IzatApiV02( 707): I/===> virtual bool izat_core::IzatApiV02::getBatchingSupport() line 426
E/LocSvc_api_v02( 707): I/---> locClientSupportMsgCheck line 2433 QMI_LOC_GET_SUPPORTED_MSGS_REQ_V02
E/ActivityThread( 1169): Failed to find provider info for com.android.launcher2.settings
E/NfcAdaptation( 1136): NfcAdaptation::Initialize: ver=NFCDROID_MI_422.10.0.15 nfa=NFA_MI_1.03.62+
E/BluetoothSap( 1071): Could not bind to Bluetooth Sap Service with Intent { act=android.bluetooth.IBluetoothSap }
E/NxpFwDnld( 1136): Freeing Mem for Dnld Context..
E/BrcmNfcNfa( 1136): reset notification nfc_state : #### 1
E/BrcmNfcNfa( 1136): reset notification sending core init
E/BrcmNfcNfa( 1136): UICC[0x0] is not activated
E/BrcmNfcNfa( 1136): UICC[0x0] is not activated
E/BrcmNfcJni( 1136): nfcManager_doDeselectSecureElement: already deselected
E/BluetoothPhoneService( 1115): Could not get a handle on Connection object for the call
E/wpa_supplicant( 1043): wpa_driver_nl80211_driver_cmd: failed to issue private commands
E/WifiStateMachine( 707): Unexpected BatchedScanResults :null
E/wpa_supplicant( 1043): wpa_driver_nl80211_driver_cmd: failed to issue private commands
E/FileUtils( 1071): Could not write to file /sys/devices/virtual/input/lge_touch/touch_gesture
E/FileUtils( 1071): java.io.FileNotFoundException: /sys/devices/virtual/input/lge_touch/touch_gesture: open failed: ENOENT (No such file or directory)
E/FileUtils( 1071): at libcore.io.IoBridge.open(IoBridge.java:409)
E/FileUtils( 1071): at java.io.FileOutputStream.<init>(FileOutputStream.java:88)
E/FileUtils( 1071): at java.io.FileOutputStream.<init>(FileOutputStream.java:128)
E/FileUtils( 1071): at java.io.FileOutputStream.<init>(FileOutputStream.java:117)
E/FileUtils( 1071): at org.cyanogenmod.hardware.util.FileUtils.writeLine(FileUtils.java:65)
E/FileUtils( 1071): at org.cyanogenmod.hardware.TapToWake.setEnabled(TapToWake.java:36)
E/FileUtils( 1071): at com.android.settings.DisplaySettings.restore(DisplaySettings.java:668)
E/FileUtils( 1071): at com.android.settings.cyanogenmod.BootReceiver.onReceive(BootReceiver.java:79)
E/FileUtils( 1071): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2450)
E/FileUtils( 1071): at android.app.ActivityThread.access$1700(ActivityThread.java:144)
E/FileUtils( 1071): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1281)
E/FileUtils( 1071): at android.os.Handler.dispatchMessage(Handler.java:102)
E/FileUtils( 1071): at android.os.Looper.loop(Looper.java:136)
E/FileUtils( 1071): at android.app.ActivityThread.main(ActivityThread.java:5146)
E/FileUtils( 1071): at java.lang.reflect.Method.invokeNative(Native Method)
E/FileUtils( 1071): at java.lang.reflect.Method.invoke(Method.java:515)
E/FileUtils( 1071): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:796)
E/FileUtils( 1071): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
E/FileUtils( 1071): at dalvik.system.NativeStart.main(Native Method)
E/FileUtils( 1071): Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)
E/FileUtils( 1071): at libcore.io.Posix.open(Native Method)
E/FileUtils( 1071): at libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
E/FileUtils( 1071): at libcore.io.IoBridge.open(IoBridge.java:393)
E/FileUtils( 1071): ... 18 more
E/DisplaySettings( 1071): Failed to restore tap-to-wake settings.
E/MediaFocusControl( 707): Error updating focussed RCC to RCD
E/MediaFocusControl( 707): java.util.EmptyStackException
E/MediaFocusControl( 707): at java.util.Stack.peek(Stack.java:57)
E/MediaFocusControl( 707): at android.media.MediaFocusControl.registerRemoteControlDisplay_int(MediaFocusControl.java:2238)
E/MediaFocusControl( 707): at android.media.MediaFocusControl.registerRemoteControlDisplay(MediaFocusControl.java:230)
E/MediaFocusControl( 707): at android.media.AudioService.registerRemoteControlDisplay(AudioService.java:4578)
E/MediaFocusControl( 707): at android.media.IAudioService$Stub.onTransact(IAudioService.java:604)
E/MediaFocusControl( 707): at android.os.Binder.execTransact(Binder.java:404)
E/MediaFocusControl( 707): at dalvik.system.NativeStart.run(Native Method)
E/AndroidRuntime( 1115): FATAL EXCEPTION: main
E/AndroidRuntime( 1115): Process: com.android.phone, PID: 1115
E/AndroidRuntime( 1115): java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
E/AndroidRuntime( 1115): at com.android.internal.telephony.cdma.CdmaSubscriptionSourceManager.handleMessage(CdmaSubscriptionSourceManager.java:129)
E/AndroidRuntime( 1115): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime( 1115): at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime( 1115): at android.app.ActivityThread.main(ActivityThread.java:5146)
E/AndroidRuntime( 1115): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1115): at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime( 1115): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:796)
E/AndroidRuntime( 1115): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
E/AndroidRuntime( 1115): at dalvik.system.NativeStart.main(Native Method)
E/QC-time-services( 304): Daemon:tod_update_ind_cb: Got Update from modem msg_id 39
E/ConnectivityService( 707): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
E/ConnectivityService( 707): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
E/ConnectivityService( 707): Unexpected mtu value: [email protected]
E/ConnectivityService( 707): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_use_userconfig: open failed: ENOENT (No such file or directory)
E/ConnectivityService( 707): Can't set delayed ACK size:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_delack_seg: open failed: ENOENT (No such file or directory)
E/ConnectivityService( 707): Unexpected mtu value: [email protected]
E/WiredAccessoryManager( 707): No state change.
E/BluetoothPhoneService( 1625): Could not get a handle on Connection object for the call
E/TelephonyProvider( 1625): Failed setting numeric 'null' to the current operator
E/Nat464Xlat( 707): stopClat: already stopped
E/QC-time-services( 304): Daemon:Update to modem bit set
E/QC-time-services( 707): Receive Passed == base = 2, unit = 1, operation = 0, result = 0
E/QC-time-services( 304): Daemon:tod_update_ind_cb: Got Update from modem msg_id 40
E/QC-time-services( 304): Daemon: Time-services: Waiting to acceptconnection
E/LocSvc_eng( 707): I/===> int loc_eng_inject_time(loc_eng_data_s_type&, GpsUtcTime, int64_t, int) line 1839
E/LocSvc_eng( 707): W/int loc_eng_inject_time(loc_eng_data_s_type&, GpsUtcTime, int64_t, int): log_eng state error: instance not initialized
E/QC-time-services( 304): Daemon:Update to modem bit set
E/QC-time-services( 2000): Receive Passed == base = 2, unit = 1, operation = 0, result = 0
E/QC-time-services( 304): Daemon:tod_update_ind_cb: Got Update from modem msg_id 40
E/QC-time-services( 304): Daemon: Time-services: Waiting to acceptconnection
E/AndroidRuntime( 2067): FATAL EXCEPTION: main
E/AndroidRuntime( 2067): Process: com.pac.console, PID: 2067
E/AndroidRuntime( 2067): java.lang.RuntimeException: Unable to start receiver android.pacstats.ReportingServiceManager: java.lang.NumberFormatException: Invalid long: ""
E/AndroidRuntime( 2067): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2457)
E/AndroidRuntime( 2067): at android.app.ActivityThread.access$1700(ActivityThread.java:144)
E/AndroidRuntime( 2067): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1281)
E/AndroidRuntime( 2067): at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime( 2067): at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime( 2067): at android.app.ActivityThread.main(ActivityThread.java:5146)
E/AndroidRuntime( 2067): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 2067): at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime( 2067): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:796)
E/AndroidRuntime( 2067): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
E/AndroidRuntime( 2067): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 2067): Caused by: java.lang.NumberFormatException: Invalid long: ""
E/AndroidRuntime( 2067): at java.lang.Long.invalidLong(Long.java:124)
E/AndroidRuntime( 2067): at java.lang.Long.parseLong(Long.java:345)
E/AndroidRuntime( 2067): at java.lang.Long.parseLong(Long.java:318)
E/AndroidRuntime( 2067): at java.lang.Long.valueOf(Long.java:476)
E/AndroidRuntime( 2067): at android.pacstats.Utilities.getTimeFrame(Utilities.java:114)
E/AndroidRuntime( 2067): at android.pacstats.ReportingServiceManager.setAlarm(ReportingServiceManager.java:54)
E/AndroidRuntime( 2067): at android.pacstats.ReportingServiceManager.onReceive(ReportingServiceManager.java:41)
E/AndroidRuntime( 2067): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2450)
E/AndroidRuntime( 2067): ... 10 more
E/QC-time-services( 304): Daemon:Update to modem bit set
E/QC-time-services( 1625): Receive Passed == base = 2, unit = 1, operation = 0, result = 0
E/QC-time-services( 304): Daemon:tod_update_ind_cb: Got Update from modem msg_id 40
E/QC-time-services( 304): Daemon: Time-services: Waiting to acceptconnection
E/QC-time-services( 304): Daemon:Update to modem bit set
E/QC-time-services( 2000): Receive Passed == base = 2, unit = 1, operation = 0, result = 0
E/QC-time-services( 304): Daemon: Time-services: Waiting to acceptconnection
E/QC-time-services( 304): Daemon:tod_update_ind_cb: Got Update from modem msg_id 40
After further testing mobile data and Sensors arent working.
How flash?
I mean what recovery i have to use?
I'm on Jellybean 4.3
Device D2303
Unlocked BL
Recovery and final link
How can i enter recovery with this rom? I actually can't do that after installing this rom. And when will appear link to final version?
Recovery problem
I can't get in recovery. How can i do it?
Is it working on d2302..
Edit- ril does not work and the dual sim support as expected is missing.. Else everything is smooth.. Hope the developer will soon make it compatible for d2302
is this work for M2 D2305??
Hopefully not..
Mega Link
I was using this rom but now, I can not download because the link is not working. The rom has been deleted from Mega. So can you upload it to somewheres else? Please, I want this rom as you can't guess...
links
link for ROM is dead

Camera Failed on G925I

I'm using a G925I and I've been getting the dreaded "Camera Failed" and "EVT or Cal error. Please change your test device" errors.
Previously I fixed the error by updating/changing my kernel and a mix of clearing the cache. However, I'm believing that it might've been pure luck that it worked.So far I've re-flashed every possible thing (BL, Kernel, ROM, Modem) and my camera is still spitting out the error.
At this point I'm a little unsure if it's a hardware error or not. I'm hoping it isn't, as any repairs that happen with my carrier go through an authorized Samsung repair center iirc, and I don't think they'd take too kindly to a phone with tripped knox.
I've also taken a look at my camera firmware versions and the rear camera firmware displays NULL where as the front camera (which works fine) displays its correct firmware versions and details.
Logcat Logs
---- 21/06/2016 7:37:58 PM ----
06-21 19:27:29.151 12320 12320 E AXLOG : Total-CameraPreviewLoading**StartU[1466494049157]**
06-21 19:27:29.151 12320 12320 E AXLOG : Total-CameraUILoading(TSP)**StartU[1466494049157]**
06-21 19:27:29.201 12320 22224 E SecCamera-JNI-Java: SecCamera.open()
06-21 19:27:29.204 2944 9274 E CameraService: companion_disable property set to enable
06-21 19:27:29.208 2944 9274 E SecCameraCoreManager: initialize1
06-21 19:27:29.208 2944 9274 E ExynosCamera: Build Date is (Apr 14 2016) (18:46:39)
06-21 19:27:29.231 2944 9274 E SecCameraCoreManager: initialize2
06-21 19:27:29.314 12320 22222 E SecCamera-JNI-Java: checkSupportedShotMode(1000)
06-21 19:27:29.318 2944 4039 E SecCameraCoreManager: changeToSingleShot :: effectmode = 0
06-21 19:27:29.334 2944 22238 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(m_setInput):exynos_v4l2_s_input(fd:51, index:6823952) fail (-1)
06-21 19:27:29.334 2944 22238 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(setInput):m_setInput fail [6823952]
06-21 19:27:29.334 2944 22238 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(m_setInput[2384]): nodeNums[11] : 150, setInput(sensorIds : 6823952 fail, ret(-38)
06-21 19:27:29.334 2944 22238 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(setupPipe[182]):m_setInput(secondary) fail, ret(-38)
06-21 19:27:29.334 2944 22238 E ExynosCameraFrameFactory3aaIspTpu: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(m_initPipesFastenAeStable[990])IS setupPipe fail, ret(-38)
06-21 19:27:29.334 2944 22238 E ExynosCameraFrameFactoryPreview: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(fastenAeStable[703]):m_initPipesFastenAeStable(120) fail
06-21 19:27:29.334 2944 22238 E ExynosCamera: [CAM_ID(0)][]-ERR(m_fastenAeThreadFunc[5867]):m_fastenAeStable() failed
06-21 19:27:29.414 2944 3804 E ExynosCameraBufferManager: [CAM_ID(0)][SCP_BUF]-ERR(m_alloc[1693]):m_reqBufCount(9)
06-21 19:27:29.494 2944 3804 E ExynosCamera: [CAM_ID(0)][]-ERR(startPreview[1975]):fastenAeThread exit with error
06-21 19:27:29.644 12320 12320 E AXLOG : Total-CameraUILoading(TSP)**EndU[1466494049650]**
06-21 19:27:30.571 12320 12320 E Camera4 : Black overlay is already invisible
06-21 19:28:51.108 12320 22418 E SecCamera-JNI-Java: SecCamera.open()
06-21 19:28:51.111 2944 3804 E CameraService: companion_disable property set to enable
06-21 19:28:51.114 2944 3804 E SecCameraCoreManager: initialize1
06-21 19:28:51.114 2944 3804 E ExynosCamera: Build Date is (Apr 14 2016) (18:46:39)
06-21 19:28:51.131 2944 3804 E SecCameraCoreManager: initialize2
06-21 19:28:51.148 12320 22416 E SecCamera-JNI-Java: checkSupportedShotMode(1000)
06-21 19:28:51.148 2944 15540 E SecCameraCoreManager: changeToSingleShot :: effectmode = 0
06-21 19:28:51.188 2944 3804 E ExynosCameraBufferManager: [CAM_ID(0)][SCP_BUF]-ERR(m_alloc[1693]):m_reqBufCount(9)
06-21 19:28:51.231 2944 22429 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(m_setInput):exynos_v4l2_s_input(fd:45, index:6823952) fail (-1)
06-21 19:28:51.231 2944 22429 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(setInput):m_setInput fail [6823952]
06-21 19:28:51.231 2944 22429 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(m_setInput[2384]): nodeNums[11] : 150, setInput(sensorIds : 6823952 fail, ret(-38)
06-21 19:28:51.231 2944 22429 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(setupPipe[182]):m_setInput(secondary) fail, ret(-38)
06-21 19:28:51.231 2944 22429 E ExynosCameraFrameFactory3aaIspTpu: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(m_initPipesFastenAeStable[990])IS setupPipe fail, ret(-38)
06-21 19:28:51.231 2944 22429 E ExynosCameraFrameFactoryPreview: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(fastenAeStable[703]):m_initPipesFastenAeStable(120) fail
06-21 19:28:51.231 2944 22429 E ExynosCamera: [CAM_ID(0)][]-ERR(m_fastenAeThreadFunc[5867]):m_fastenAeStable() failed
06-21 19:28:51.308 2944 3804 E ExynosCamera: [CAM_ID(0)][]-ERR(startPreview[1975]):fastenAeThread exit with error
06-21 19:28:52.381 12320 12320 E Camera4 : Black overlay is already invisible
06-21 19:29:10.754 12320 22488 E SecCamera-JNI-Java: SecCamera.open()
06-21 19:29:10.754 2944 4039 E CameraService: companion_disable property set to enable
06-21 19:29:10.758 2944 4039 E SecCameraCoreManager: initialize1
06-21 19:29:10.758 2944 4039 E ExynosCamera: Build Date is (Apr 14 2016) (18:46:39)
06-21 19:29:10.771 2944 4039 E SecCameraCoreManager: initialize2
06-21 19:29:10.794 12320 22486 E SecCamera-JNI-Java: checkSupportedShotMode(1000)
06-21 19:29:10.794 2944 15540 E SecCameraCoreManager: changeToSingleShot :: effectmode = 0
06-21 19:29:10.814 2944 4039 E ExynosCameraBufferManager: [CAM_ID(0)][SCP_BUF]-ERR(m_alloc[1693]):m_reqBufCount(9)
06-21 19:29:10.851 2944 22499 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(m_setInput):exynos_v4l2_s_input(fd:45, index:6823952) fail (-1)
06-21 19:29:10.851 2944 22499 E ExynosCameraNode: [CAM_ID(0)][DIS_OUTPUT]-ERR(setInput):m_setInput fail [6823952]
06-21 19:29:10.851 2944 22499 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(m_setInput[2384]): nodeNums[11] : 150, setInput(sensorIds : 6823952 fail, ret(-38)
06-21 19:29:10.851 2944 22499 E ExynosCameraMCPipe: [CAM_ID(0)][PIPE_DIS]-ERR(setupPipe[182]):m_setInput(secondary) fail, ret(-38)
06-21 19:29:10.851 2944 22499 E ExynosCameraFrameFactory3aaIspTpu: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(m_initPipesFastenAeStable[990])IS setupPipe fail, ret(-38)
06-21 19:29:10.851 2944 22499 E ExynosCameraFrameFactoryPreview: [CAM_ID(0)][ExynosCameraFrameFactory3aaIspTpu]-ERR(fastenAeStable[703]):m_initPipesFastenAeStable(120) fail
06-21 19:29:10.851 2944 22499 E ExynosCamera: [CAM_ID(0)][]-ERR(m_fastenAeThreadFunc[5867]):m_fastenAeStable() failed
06-21 19:29:10.908 2944 4039 E ExynosCamera: [CAM_ID(0)][]-ERR(startPreview[1975]):fastenAeThread exit with error
06-21 19:29:12.198 12320 12320 E Camera4 : Black overlay is already invisible
---- 21/06/2016 7:37:58 PM ----
I have exactly the same issues "null" please let me know if you find a fix
SALAH100 said:
I have exactly the same issues "null" please let me know if you find a fix
Click to expand...
Click to collapse
Caved in and sent it into Samsung in the end. I had a tripped Knox bit, but they still repaired it for free. Oddly enough, on the repair sheet, the 'full warranty' box was ticked.

Categories

Resources