App chrashes when opening activity from nav drawer - Java for Android App Development
I'm having a problem with my app. I'm trying to use a nav drawer to navigate thru my app. It works fine when going from fragment to fragment. The problem I'm having is when trying to use one of the drawer items to open an activity. When clicking on the item it get a pop up that tells me "unfortunately my app has stopped. The app chrashes and then opens that activity anyways.
Code:
[user=439709]@override[/user]
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
// TODO Auto-generated method stub
drawer.closeDrawer(expListView);
Fragment fragment = null;
if(listDataHeader.get(groupPosition).toString().equals("Grace Lutheran Church Fairgrove")){
if(childPosition==0) {
fragment = new FairgroveDirectory();
}if(childPosition==1) {
fragment = new FairgroveServices();
}if(childPosition==2) {
startActivity(new Intent(Main.this, FairgroveSermons.class));
//Intent intent = new Intent(Main.this, FairgroveSermons.class);
//startActivity(intent);
}if(childPosition==3) {
}if(childPosition==4) {
}if(childPosition==5) {
}if(childPosition==6) {
}
}
[CODE\]
I'm trying to open " child position 2".
11-10 02:37:25.232 15741 15741 I FONT_SIZE nullMedium
11-10 02:37:45.299 15741 15741 I CITIES nullFairgrove Church
11-10 02:37:45.300 15741 15741 I CITIES nullFairgrove Church
11-10 02:37:53.563 15741 15741 I CITIES nullFairgrove Church
11-10 02:37:53.563 15741 15741 I FONT_SIZE nullXLarge
11-10 02:37:59.894 15741 15741 I CITIES nullFairgrove Church
11-10 02:37:59.894 15741 15741 I CITIES nullFairgrove Church
11-10 02:39:20.367 15741 15741 D AndroidRuntime Shutting down VM
11-10 02:39:20.368 15741 15741 E AndroidRuntime FATAL EXCEPTION: main
11-10 02:39:20.368 15741 15741 E AndroidRuntime Process: com.JEB.lutheranchurch, PID: 15741
11-10 02:39:20.368 15741 15741 E AndroidRuntime java.lang.NullPointerException: Attempt to write to field 'android.app.FragmentManagerImpl android.app.Fragment.mFragmentManager' on a null object reference
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.app.BackStackRecord.doAddOp(BackStackRecord.java:461)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.app.BackStackRecord.replace(BackStackRecord.java:496)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.app.BackStackRecord.replace(BackStackRecord.java:488)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at com.JEB.lutheranchurch.Main$100000004.onChildClick(Main.java:200)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.widget.ExpandableListView.handleItemClick(ExpandableListView.java:714)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.widget.ExpandableListView.performItemClick(ExpandableListView.java:653)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.widget.AbsListView$PerformClick.run(AbsListView.java:3042)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.widget.AbsListView$3.run(AbsListView.java:3879)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.os.Handler.handleCallback(Handler.java:739)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.os.Handler.dispatchMessage(Handler.java:95)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.os.Looper.loop(Looper.java:148)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at android.app.ActivityThread.main(ActivityThread.java:5417)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at java.lang.reflect.Method.invoke(Native Method)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
11-10 02:39:20.368 15741 15741 E AndroidRuntime at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
11-10 02:39:25.237 15741 15741 I Process Sending signal. PID: 15741 SIG: 9
11-10 02:39:25.367 16119 16119 I art Late-enabling -Xcheck:jni
11-10 02:39:25.426 16119 16119 W System ClassLoader referenced unknown path: /data/app/com.JEB.lutheranchurch-1/lib/arm
11-10 02:39:25.575 16119 16119 I WebViewFactory Loading com.google.android.webview version 46.0.2490.76 (code 249007600)
11-10 02:39:25.620 16119 16119 I cr.library_loader Time to load native libraries: 2 ms (timestamps 7683-7685)
11-10 02:39:25.621 16119 16119 I cr.library_loader Expected native library version number "46.0.2490.76", actual native library version number "46.0.2490.76"
11-10 02:39:25.639 16119 16119 V WebViewChromiumFactoryProvider Binding Chromium to main looper Looper (main, tid 1) {baa2940}
11-10 02:39:25.639 16119 16119 I cr.library_loader Expected native library version number "46.0.2490.76", actual native library version number "46.0.2490.76"
11-10 02:39:25.640 16119 16119 I chromium [INFO:library_loader_hooks.cc(118)] Chromium logging enabled: level = 0, default verbosity = 0
11-10 02:39:25.649 16119 16119 I cr.BrowserStartup Initializing chromium process, singleProcess=true
11-10 02:39:25.656 16119 16119 E SysUtils ApplicationContext is null in ApplicationStatus
11-10 02:39:25.692 16119 16119 I Adreno QUALCOMM build : 576fcee, I44fb0b5862
11-10 02:39:25.692 16119 16119 I Adreno Build Date : 08/26/15
11-10 02:39:25.692 16119 16119 I Adreno OpenGL ES Shader Compiler Version: XE031.05.13.02
11-10 02:39:25.692 16119 16119 I Adreno Local Branch : M13
11-10 02:39:25.692 16119 16119 I Adreno Remote Branch :
11-10 02:39:25.692 16119 16119 I Adreno Remote Branch :
11-10 02:39:25.692 16119 16119 I Adreno Reconstruct Branch :
11-10 02:39:25.730 16119 16119 E chromium [ERROR:browser_gpu_channel_host_factory.cc(258)] Failed to init browser shader disk cache.
11-10 02:39:25.745 16119 16155 W cr.media Requires BLUETOOTH permission
11-10 02:39:25.749 16119 16119 E libEGL validate_display:255 error 3008 (EGL_BAD_DISPLAY)
11-10 02:39:25.782 16119 16119 W art Attempt to remove non-JNI local reference, dumping thread
11-10 02:39:25.791 16119 16119 W AwContents onDetachedFromWindow called when already detached. Ignoring
11-10 02:39:25.943 16119 16166 D OpenGLRenderer Use EGL_SWAP_BEHAVIOR_PRESERVED: true
11-10 02:39:25.995 16119 16166 I OpenGLRenderer Initialized EGL, version 1.4
11-10 02:39:28.470 16119 16119 W cr.BindingManager Cannot call determinedVisibility() - never saw a connection for the pid: 16119
11-10 02:39:56.672 16119 16119 I CITIES nullFairgrove Church
11-10 02:42:33.473 16398 16398 I art Late-enabling -Xcheck:jni
11-10 02:42:33.533 16398 16398 W System ClassLoader referenced unknown path: /data/app/com.JEB.lutheranchurch-2/lib/arm
11-10 02:42:34.251 16398 16398 I CITIES nullFairgrove Church
11-10 02:42:34.363 16398 16398 I CITIES nullFairgrove Church
11-10 02:42:34.373 16398 16398 I CITIES nullFairgrove Church
11-10 02:42:34.411 16398 16455 D OpenGLRenderer Use EGL_SWAP_BEHAVIOR_PRESERVED: true
11-10 02:42:34.458 16398 16455 I Adreno QUALCOMM build : 576fcee, I44fb0b5862
11-10 02:42:34.458 16398 16455 I Adreno Build Date : 08/26/15
11-10 02:42:34.458 16398 16455 I Adreno OpenGL ES Shader Compiler Version: XE031.05.13.02
11-10 02:42:34.458 16398 16455 I Adreno Local Branch : M13
11-10 02:42:34.458 16398 16455 I Adreno Remote Branch :
11-10 02:42:34.458 16398 16455 I Adreno Remote Branch :
11-10 02:42:34.458 16398 16455 I Adreno Reconstruct Branch :
11-10 02:42:34.466 16398 16455 I OpenGLRenderer Initialized EGL, version 1.4
11-10 02:42:39.380 16398 16398 E InputEventReceiver Exception dispatching input event.
11-10 02:42:39.380 16398 16398 E MessageQueue-JNI Exception in MessageQueue callback: handleReceiveCallback
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI java.lang.NullPointerException: Attempt to write to field 'android.app.FragmentManagerImpl android.app.Fragment.mFragmentManager' on a null object reference
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.app.BackStackRecord.doAddOp(BackStackRecord.java:461)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.app.BackStackRecord.replace(BackStackRecord.java:496)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.app.BackStackRecord.replace(BackStackRecord.java:488)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.JEB.lutheranchurch.Main$100000004.onChildClick(Main.java:200)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.widget.ExpandableListView.handleItemClick(ExpandableListView.java:714)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.widget.ExpandableListView.performItemClick(ExpandableListView.java:653)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.widget.AbsListView$PerformClick.run(AbsListView.java:3042)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.widget.AbsListView.onTouchUp(AbsListView.java:3891)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.widget.AbsListView.onTouchEvent(AbsListView.java:3656)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.View.dispatchTouchEvent(View.java:9294)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2547)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2240)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.android.internal.policy.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:2403)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.android.internal.policy.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1737)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.app.Activity.dispatchTouchEvent(Activity.java:2765)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.android.internal.policy.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:2364)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.View.dispatchPointerEvent(View.java:9514)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$ViewPostImeInputStage.processPointerEvent(ViewRootImpl.java:4230)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$ViewPostImeInputStage.onProcess(ViewRootImpl.java:4096)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:3695)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:3661)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$AsyncInputStage.forward(ViewRootImpl.java:3787)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:3669)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$AsyncInputStage.apply(ViewRootImpl.java:3844)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:3695)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:3661)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:3669)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:5922)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:5896)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:5857)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:6025)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:185)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.os.MessageQueue.nativePollOnce(Native Method)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.os.MessageQueue.next(MessageQueue.java:323)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.os.Looper.loop(Looper.java:135)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at android.app.ActivityThread.main(ActivityThread.java:5417)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at java.lang.reflect.Method.invoke(Native Method)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
11-10 02:42:39.383 16398 16398 E MessageQueue-JNI at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
11-10 02:42:39.383 16398 16398 D AndroidRuntime Shutting down VM
11-10 02:42:39.385 16398 16398 E AndroidRuntime FATAL EXCEPTION: main
11-10 02:42:39.385 16398 16398 E AndroidRuntime Process: com.JEB.lutheranchurch, PID: 16398
11-10 02:42:39.385 16398 16398 E AndroidRuntime java.lang.NullPointerException: Attempt to write to field 'android.app.FragmentManagerImpl android.app.Fragment.mFragmentManager' on a null object reference
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.app.BackStackRecord.doAddOp(BackStackRecord.java:461)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.app.BackStackRecord.replace(BackStackRecord.java:496)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.app.BackStackRecord.replace(BackStackRecord.java:488)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.JEB.lutheranchurch.Main$100000004.onChildClick(Main.java:200)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.widget.ExpandableListView.handleItemClick(ExpandableListView.java:714)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.widget.ExpandableListView.performItemClick(ExpandableListView.java:653)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.widget.AbsListView$PerformClick.run(AbsListView.java:3042)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.widget.AbsListView.onTouchUp(AbsListView.java:3891)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.widget.AbsListView.onTouchEvent(AbsListView.java:3656)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.View.dispatchTouchEvent(View.java:9294)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2547)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2240)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2553)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2254)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.android.internal.policy.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:2403)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.android.internal.policy.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1737)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.app.Activity.dispatchTouchEvent(Activity.java:2765)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.android.internal.policy.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:2364)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.View.dispatchPointerEvent(View.java:9514)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$ViewPostImeInputStage.processPointerEvent(ViewRootImpl.java:4230)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$ViewPostImeInputStage.onProcess(ViewRootImpl.java:4096)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:3695)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:3661)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$AsyncInputStage.forward(ViewRootImpl.java:3787)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:3669)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$AsyncInputStage.apply(ViewRootImpl.java:3844)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:3695)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:3661)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:3669)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:3642)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:5922)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:5896)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:5857)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:6025)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:185)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.os.MessageQueue.nativePollOnce(Native Method)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.os.MessageQueue.next(MessageQueue.java:323)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.os.Looper.loop(Looper.java:135)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at android.app.ActivityThread.main(ActivityThread.java:5417)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at java.lang.reflect.Method.invoke(Native Method)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
11-10 02:42:39.385 16398 16398 E AndroidRuntime at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
11-10 02:42:41.474 16398 16398 I Process Sending signal. PID: 16398 SIG: 9
11-10 02:42:41.597 16467 16467 I art Late-enabling -Xcheck:jni
11-10 02:42:41.675 16467 16467 W System ClassLoader referenced unknown path: /data/app/com.JEB.lutheranchurch-2/lib/arm
11-10 02:42:41.804 16467 16467 I WebViewFactory Loading com.google.android.webview version 46.0.2490.76 (code 249007600)
11-10 02:42:41.842 16467 16467 I cr.library_loader Time to load native libraries: 2 ms (timestamps 336-338)
11-10 02:42:41.843 16467 16467 I cr.library_loader Expected native library version number "46.0.2490.76", actual native library version number "46.0.2490.76"
11-10 02:42:41.858 16467 16467 V WebViewChromiumFactoryProvider Binding Chromium to main looper Looper (main, tid 1) {baa2940}
11-10 02:42:41.858 16467 16467 I cr.library_loader Expected native library version number "46.0.2490.76", actual native library version number "46.0.2490.76"
11-10 02:42:41.859 16467 16467 I chromium [INFO:library_loader_hooks.cc(118)] Chromium logging enabled: level = 0, default verbosity = 0
11-10 02:42:41.866 16467 16467 I cr.BrowserStartup Initializing chromium process, singleProcess=true
11-10 02:42:41.870 16467 16467 E SysUtils ApplicationContext is null in ApplicationStatus
11-10 02:42:41.903 16467 16467 I Adreno QUALCOMM build : 576fcee, I44fb0b5862
11-10 02:42:41.903 16467 16467 I Adreno Build Date : 08/26/15
11-10 02:42:41.903 16467 16467 I Adreno OpenGL ES Shader Compiler Version: XE031.05.13.02
11-10 02:42:41.903 16467 16467 I Adreno Local Branch : M13
11-10 02:42:41.903 16467 16467 I Adreno Remote Branch :
11-10 02:42:41.903 16467 16467 I Adreno Remote Branch :
11-10 02:42:41.903 16467 16467 I Adreno Reconstruct Branch :
11-10 02:42:41.949 16467 16467 E chromium [ERROR:browser_gpu_channel_host_factory.cc(258)] Failed to init browser shader disk cache.
11-10 02:42:41.969 16467 16467 E libEGL validate_display:255 error 3008 (EGL_BAD_DISPLAY)
11-10 02:42:41.979 16467 16504 W cr.media Requires BLUETOOTH permission
11-10 02:42:42.001 16467 16467 W art Attempt to remove non-JNI local reference, dumping thread
11-10 02:42:42.011 16467 16467 W AwContents onDetachedFromWindow called when already detached. Ignoring
11-10 02:42:42.158 16467 16515 D OpenGLRenderer Use EGL_SWAP_BEHAVIOR_PRESERVED: true
11-10 02:42:42.212 16467 16515 I OpenGLRenderer Initialized EGL, version 1.4
11-10 02:42:43.401 16467 16467 W cr.BindingManager Cannot call determinedVisibility() - never saw a connection for the pid: 16467
" java.lang.NullPointerException: Attempt to write to field 'android.app.FragmentManagerImpl android.app.Fragment.mFragmentManager' on a null object reference"
This is the main key to find an answer to your problem.
Check your code in onChildClick drawer.closeDrawer(expListView); and whether you are setting the fragment you want to use to null.
startActivity(new Intent(Main.this, FairgroveSermons.class)); check if Main.this is not null
Related
Compilation Assistance
Command I'm using to start compiling: Code: cd android/omni/ && repo sync -f --no-clone-bundle && . build/envsetup.sh && lunch omni_geespr-userdebug Output: Code: including device/generic/armv7-a-neon/vendorsetup.sh including device/generic/mips/vendorsetup.sh including device/generic/x86/vendorsetup.sh including device/lge/geespr/vendorsetup.sh including sdk/bash_completion/adb.bash ============================================ PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=4.4.2 TARGET_PRODUCT=omni_geespr TARGET_BUILD_VARIANT=userdebug TARGET_BUILD_TYPE=release TARGET_BUILD_APPS= TARGET_ARCH=arm TARGET_ARCH_VARIANT=armv7-a-neon TARGET_CPU_VARIANT=krait HOST_ARCH=x86 HOST_OS=linux HOST_OS_EXTRA=Linux-3.13.0-6-generic-x86_64-with-Ubuntu-14.04-trusty HOST_BUILD_TYPE=release BUILD_ID=KOT49H OUT_DIR=/home/bmos/android/omni/out ============================================
VoluntaryMan said: Command I'm using to start compiling: Code: cd android/omni/ && repo sync -f --no-clone-bundle && . build/envsetup.sh && lunch omni_geespr-userdebug Click to expand... Click to collapse Try Code: lunch geespr instead. Also, I use brunch instead of lunch, and I've found it useful to prefix the command with 'time' (so you can see how long it takes), and end it with '2> build.log' so you can review the log for errors instead of reading the terminal. For example: Code: time brunch geespr 2> build.log
PonsAsinorem said: Try Code: lunch geespr instead. Also, I use brunch instead of lunch, and I've found it useful to prefix the command with 'time' (so you can see how long it takes), and end it with '2> build.log' so you can review the log for errors instead of reading the terminal. For example: Code: time brunch geespr 2> build.log Click to expand... Click to collapse That's got it working, thanks :good:
can i hijack a bit your thread? :silly: i try to build omnirom 4.3jb for the official supported xperia T (mint). i must say, under linux mint i was able to build 4.4kitkat homemade. now iam on elementary os (ubuntu 12.04) and try to build 4.3. i have installed jdk1.6 (oracle) everything should be set up correctly, atleast iam quiet sure about it^^ roomservice.xml Code: <?xml version="1.0" encoding="UTF-8"?> <!--Please do not manually edit this file--> <manifest> <project name="android_device_sony_mint" path="device/sony/mint" remote="omnirom" revision="android-4.3" /> <project name="omnirom/android_device_sony_common" path="device/sony/common" remote="github" revision="android-4.3" /> <project name="omnirom/android_device_sony_qcom-common" path="device/sony/qcom-common" remote="github" revision="android-4.3" /> <project name="omnirom/android_device_sony_blue-common" path="device/sony/blue-common" remote="github" revision="android-4.3" /> <project name="omnirom/android_kernel_sony_msm8960" path="kernel/sony/msm8960" remote="github" revision="android-4.3" /> <project name="omnirom/android_hardware_sony_DASH" path="hardware/sony/DASH" remote="github" revision="android-4.3" /> </manifest> local_manifest.xml Code: <?xml version="1.0" encoding="UTF-8"?> <manifest> <project path="vendor/sony" name="DonkeyCoyote/proprietary_vendor_sony" remote="github" revision="android-4.3" /> <remove-project name="device/samsung/toro" /> <remove-project name="device/asus/deb" /> <remove-project name="android_device_asus_flo" /> <remove-project name="android_device_asus_grouper" /> <remove-project name="android_device_asus_tilapia" /> <remove-project name="android_device_lge_mako" /> <remove-project name="android_device_samsung_maguro" /> <remove-project name="android_device_samsung_manta" /> <remove-project name="device/samsung/toroplus" /> <remove-project name="device/samsung/tuna" /> </manifest> no errors at repo sync. . build/envsetup.sh Code: including device/generic/armv7-a-neon/vendorsetup.sh including device/generic/mips/vendorsetup.sh including device/generic/x86/vendorsetup.sh including device/samsung_slsi/arndale/vendorsetup.sh including device/sony/mint/vendorsetup.sh including device/ti/panda/vendorsetup.sh including sdk/bash_completion/adb.bash is it normal that there is samsung/ti stuff written? this is the important output for errors, i think xD at the beginning many warnings in build/core/ .mk files (old commands for target...ignored) "brunch mint"---> Code: build/core/base_rules.mk:520: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/bin/fsck_msdos« werden überschrieben bootable/recovery/dosfstools/Android.mk:21: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/bin/fsck_msdos« werden ignoriert build/core/copy_headers.mk:15: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit.h« werden überschrieben build/core/copy_headers.mk:15: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit.h« werden ignoriert build/core/copy_headers.mk:15: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit_priv.h« werden überschrieben build/core/copy_headers.mk:15: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit_priv.h« werden ignoriert PRODUCT_COPY_FILES device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml ignored. build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/etc/permissions/android.software.live_wallpaper.xml« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/etc/permissions/android.software.live_wallpaper.xml« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libMPU3050.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libMPU3050.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libfmradio.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libfmradio.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmllite.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmllite.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmlplatform.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmlplatform.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libsensors_akm8972.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libsensors_akm8972.so« werden ignoriert PRODUCT_COPY_FILES vendor/sony/mint/proprietary/lib/libsysmon_idd.so:system/lib/libsysmon_idd.so ignored. No private recovery resources for TARGET_DEVICE mint make -C kernel/sony/msm8960 O=/home/hubertus/android/omni/out/target/product/mint/obj/KERNEL_OBJ ARCH=arm CROSS_COMPILE="/home/hubertus/android/omni/prebuilts/misc/linux-x86/ccache/ccache /home/hubertus/android/omni/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/bin/arm-eabi-" headers_install [COLOR="Yellow"]host C[/COLOR]: acp <= build/tools/acp/acp.c make[1]: Betrete Verzeichnis '/home/hubertus/android/omni/kernel/sony/msm8960' [COLOR="Yellow"]host StaticLib:[/COLOR] libhost (/home/hubertus/android/omni/out/host/linux-x86/obj/STATIC_LIBRARIES/libhost_intermediates/libhost.a) [COLOR="Yellow"]host Executable[/COLOR]: mkbootfs (/home/hubertus/android/omni/out/host/linux-x86/obj/EXECUTABLES/mkbootfs_intermediates/mkbootfs) /bin/bash: m4: Kommando nicht gefunden. make: *** [/home/hubertus/android/omni/out/target/product/mint/obj/ETC/sepolicy_intermediates/policy.conf] Fehler 127 make: *** Datei »/home/hubertus/android/omni/out/target/product/mint/obj/ETC/sepolicy_intermediates/policy.conf« wird gelöscht make: *** Warte auf noch nicht beendete Prozesse... GEN /home/hubertus/android/omni/out/target/product/mint/obj/KERNEL_OBJ/Makefile # # configuration written to .config # make[1]: Verlasse Verzeichnis '/home/hubertus/android/omni/kernel/sony/msm8960' it ends with "exit directory '/home/hubertus/android/omni/kernel/sony/msm8960' is there something wrong with my .mk files, or is it a path error? what can be the error 127? i looked around xda, but i not found comprehensive posts. how about my roomservice.xml/local_manifest.xml look? should be allright? thanks for reading
ok, i fixed it myself. if someone has a similar problem, maybe that will help... i found out something was wrong inside my .bashrc file. iam not sure if that can cause such problems? but after rework that file to the usual paths we need for compilation, everything worked fine building 4.3omnirom in my .bashrc i ****ed up the export PATH=${PATH}:~/bin and some more lines. after changing to the right line, everything fine
immerblind said: can i hijack a bit your thread? :silly: i try to build omnirom 4.3jb for the official supported xperia T (mint). i must say, under linux mint i was able to build 4.4kitkat homemade. now iam on elementary os (ubuntu 12.04) and try to build 4.3. i have installed jdk1.6 (oracle) everything should be set up correctly, atleast iam quiet sure about it^^ roomservice.xml Code: <?xml version="1.0" encoding="UTF-8"?> <!--Please do not manually edit this file--> <manifest> <project name="android_device_sony_mint" path="device/sony/mint" remote="omnirom" revision="android-4.3" /> <project name="omnirom/android_device_sony_common" path="device/sony/common" remote="github" revision="android-4.3" /> <project name="omnirom/android_device_sony_qcom-common" path="device/sony/qcom-common" remote="github" revision="android-4.3" /> <project name="omnirom/android_device_sony_blue-common" path="device/sony/blue-common" remote="github" revision="android-4.3" /> <project name="omnirom/android_kernel_sony_msm8960" path="kernel/sony/msm8960" remote="github" revision="android-4.3" /> <project name="omnirom/android_hardware_sony_DASH" path="hardware/sony/DASH" remote="github" revision="android-4.3" /> </manifest> local_manifest.xml Code: <?xml version="1.0" encoding="UTF-8"?> <manifest> <project path="vendor/sony" name="DonkeyCoyote/proprietary_vendor_sony" remote="github" revision="android-4.3" /> <remove-project name="device/samsung/toro" /> <remove-project name="device/asus/deb" /> <remove-project name="android_device_asus_flo" /> <remove-project name="android_device_asus_grouper" /> <remove-project name="android_device_asus_tilapia" /> <remove-project name="android_device_lge_mako" /> <remove-project name="android_device_samsung_maguro" /> <remove-project name="android_device_samsung_manta" /> <remove-project name="device/samsung/toroplus" /> <remove-project name="device/samsung/tuna" /> </manifest> no errors at repo sync. . build/envsetup.sh Code: including device/generic/armv7-a-neon/vendorsetup.sh including device/generic/mips/vendorsetup.sh including device/generic/x86/vendorsetup.sh including device/samsung_slsi/arndale/vendorsetup.sh including device/sony/mint/vendorsetup.sh including device/ti/panda/vendorsetup.sh including sdk/bash_completion/adb.bash is it normal that there is samsung/ti stuff written? this is the important output for errors, i think xD at the beginning many warnings in build/core/ .mk files (old commands for target...ignored) "brunch mint"---> Code: build/core/base_rules.mk:520: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/bin/fsck_msdos« werden überschrieben bootable/recovery/dosfstools/Android.mk:21: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/bin/fsck_msdos« werden ignoriert build/core/copy_headers.mk:15: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit.h« werden überschrieben build/core/copy_headers.mk:15: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit.h« werden ignoriert build/core/copy_headers.mk:15: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit_priv.h« werden überschrieben build/core/copy_headers.mk:15: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/obj/include/qcom/display-caf/copybit_priv.h« werden ignoriert PRODUCT_COPY_FILES device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml ignored. build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/etc/permissions/android.software.live_wallpaper.xml« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/etc/permissions/android.software.live_wallpaper.xml« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libMPU3050.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libMPU3050.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libfmradio.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libfmradio.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmllite.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmllite.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmlplatform.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libmlplatform.so« werden ignoriert build/core/Makefile:70: Warnung: Die Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libsensors_akm8972.so« werden überschrieben build/core/base_rules.mk:520: Warnung: Alte Befehle für das Ziel »/home/hubertus/android/omni/out/target/product/mint/system/lib/libsensors_akm8972.so« werden ignoriert PRODUCT_COPY_FILES vendor/sony/mint/proprietary/lib/libsysmon_idd.so:system/lib/libsysmon_idd.so ignored. No private recovery resources for TARGET_DEVICE mint make -C kernel/sony/msm8960 O=/home/hubertus/android/omni/out/target/product/mint/obj/KERNEL_OBJ ARCH=arm CROSS_COMPILE="/home/hubertus/android/omni/prebuilts/misc/linux-x86/ccache/ccache /home/hubertus/android/omni/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/bin/arm-eabi-" headers_install [COLOR="Yellow"]host C[/COLOR]: acp <= build/tools/acp/acp.c make[1]: Betrete Verzeichnis '/home/hubertus/android/omni/kernel/sony/msm8960' [COLOR="Yellow"]host StaticLib:[/COLOR] libhost (/home/hubertus/android/omni/out/host/linux-x86/obj/STATIC_LIBRARIES/libhost_intermediates/libhost.a) [COLOR="Yellow"]host Executable[/COLOR]: mkbootfs (/home/hubertus/android/omni/out/host/linux-x86/obj/EXECUTABLES/mkbootfs_intermediates/mkbootfs) /bin/bash: m4: Kommando nicht gefunden. make: *** [/home/hubertus/android/omni/out/target/product/mint/obj/ETC/sepolicy_intermediates/policy.conf] Fehler 127 make: *** Datei »/home/hubertus/android/omni/out/target/product/mint/obj/ETC/sepolicy_intermediates/policy.conf« wird gelöscht make: *** Warte auf noch nicht beendete Prozesse... GEN /home/hubertus/android/omni/out/target/product/mint/obj/KERNEL_OBJ/Makefile # # configuration written to .config # make[1]: Verlasse Verzeichnis '/home/hubertus/android/omni/kernel/sony/msm8960' it ends with "exit directory '/home/hubertus/android/omni/kernel/sony/msm8960' is there something wrong with my .mk files, or is it a path error? what can be the error 127? i looked around xda, but i not found comprehensive posts. how about my roomservice.xml/local_manifest.xml look? should be allright? thanks for reading Click to expand... Click to collapse sorry for the late response, but it seems you need the 'm4' binary. try; sudo apt-get install m4
d800 crash while making a call (CM13)
I am getting a crash when I try to make any call: 05-11 13:15:04.175 3638 3638 I Telecom : Event: Call 2: CREATED, null 05-11 13:15:04.175 3638 3638 I Telecom : Event: Call 2: SET_CONNECTING, ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [356a192b7913b04c54574d18c28d46e6395428ab], UserHandle{0} 05-11 13:15:04.178 3638 3638 D AndroidRuntime: Shutting down VM 05-11 13:15:04.179 3638 3638 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main 05-11 13:15:04.179 3638 3638 E AndroidRuntime: java.lang.RuntimeException: Unable to start receiver com.android.server.telecom.components.PrimaryCallReceiver: java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.Object.hashCode()' on a null object reference 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.app.ActivityThread.handleReceiver(ActivityThread.java:2776) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.app.ActivityThread.-wrap14(ActivityThread.java) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1440) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:307) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:179) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.Object.hashCode()' on a null object reference 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:772) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at java.util.concurrent.ConcurrentHashMap.containsKey(ConcurrentHashMap.java:800) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.InCallController.bindToInCallService(InCallController.java:427) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.InCallController.bindToServices(InCallController.java:405) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.InCallController.onCallAdded(InCallController.java:177) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.CallsManager.addCall(CallsManager.java:1519) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.CallsManager.startOutgoingCall(CallsManager.java:759) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.CallIntentProcessor.processOutgoingCallIntent(CallIntentProcessor.java:142) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.CallIntentProcessor.processIntent(CallIntentProcessor.java:55) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at com.android.server.telecom.components.PrimaryCallReceiver.onReceive(PrimaryCallReceiver.java:20) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: at android.app.ActivityThread.handleReceiver(ActivityThread.java:2769) 05-11 13:15:04.179 3638 3638 E AndroidRuntime: ... 9 more 05-11 13:15:04.194 3638 3638 I Process : Sending signal. PID: 3638 SIG: 9 Is there any way to solve this issue? Thanks!
Found the solution on open gapps FAQ page: https://github.com/opengapps/opengapps/wiki/FAQ 9. My device reboots when I receive or make a phone call. Why? If your device has Google Dialer installed, it requires to be set as the default Phone application. If not set, it will reboot your device. Go to 'Settings -> Apps -> "Gear Icon" upper right -> Default Apps -> Phone App' to set Google Dialer as your default.
How to root huawei p8 lite without pc (android 6.0)
Iam trying lots of apps but i cant root this phone pls help
if you have TWRP installed, then download SuperSu v2.64 and v2.74 ,flash the v2.64, turn off the phone... then flash the v2.74 done, your phone is rooted
konopla4 said: if you have TWRP installed, then download SuperSu v2.64 and v2.74 ,flash the v2.64, turn off the phone... then flash the v2.74 done, your phone is rooted Click to expand... Click to collapse do you need these specific versions of SuperSu? And Why? Edit: created a bootloop on my phone: 07-26 18:13:39.806 3762 3762 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional 07-26 18:13:39.807 3762 3793 I AudioFlinger: AudioFlinger's thread 0xf2cae008 ready to run 07-26 18:13:39.808 3762 3762 E SoundTriggerHwService: couldn't load sound trigger module sound_trigger.primary (No such file or directory) 07-26 18:13:39.808 3762 3762 I RadioService: RadioService 07-26 18:13:39.808 3762 3762 I RadioService: onFirstRef 07-26 18:13:39.808 3762 3762 E RadioService: couldn't load radio module radio.primary (No such file or directory) 07-26 18:13:39.809 3762 3762 I HWSERVICES: hwservices_get_module:libhuaweiaudioalgoservice.so,HuaweiAudioAlgoServiceInit start 07-26 18:13:39.811 3762 3762 I HuaweiProcessing: initApAudioAlgo: Configuration file name is /etc/audio/algorithm/algorithm_ALICEPA_normal.xml 07-26 18:13:39.816 3762 3762 W HuaweiProcessing: parseConfigurationFile: don't know sector text 07-26 18:13:39.817 3762 3762 W HuaweiProcessing: parseConfigurationFile: don't know sector text 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get HDR Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Algo Version is: iMedia Audio V100R002C11 ARM HDR 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Release Time is: 11:53:50 Aug 26 2015 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Compile Version is: rvds4.0 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get DR Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Algo Version is: iMedia Audio V100R003C01 20150328_3 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Release Time is: 14:00:27 Sep 11 2015 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Compile Version is: rvds4.0 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get RNR Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Algo Version is: iMedia Audio V100R002C11 ARM A8 RNR 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Release Time is: 12:29:29 Aug 26 2015 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Compile Version is: rvds4.0 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get LDR Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Algo Version is: iMedia Audio V100R002C11 ARM LDR 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Release Time is: 11:56:32 Aug 26 2015 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Compile Version is: rvds4.0 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get WNR Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Algo Version is: iMedia Audio V100R001C01 ARM_V9 WNR 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Release Time is: 14:52:06 Sep 15 2015 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Compile Version is: rvds4.0 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Get STEREO_ENHANCEMENT Version: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Adaptor Version is: 1.1 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Dump huawei preprocessing algorithm configuration file: 07-26 18:13:39.820 3762 3762 I HuaweiProcessing: Dump huawei postrocessing algorithm configuration file: 07-26 18:13:39.820 3762 3762 I HWSERVICES: sucess load /system/lib/libhuaweiaudioalgoservice.so:HuaweiAudioAlgoServiceInit 07-26 18:13:42.452 2420 2420 I ServiceManager: service 'media.log' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.resource_manager' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.audio_flinger' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.player' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.camera' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'post.camera' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.audio_policy' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.sound_trigger_hw' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'media.radio' died 07-26 18:13:42.456 2420 2420 I ServiceManager: service 'huawei.audioalgoservice' died
did you flash the v2.64 first? THEN v2.74? if you flashed only one, it's gonna bootloop
Pixel 2 Portrait Mode
So this is just a Concept, People over Here: https://forum.xda-developers.com/mi-5/themes/app-collection-camera-modded-t3591177 Ported Portait Mode on Pixel 2 to other Devices, it requires CAMERA2API so if we use Magistik Module to Enable it and use that would it work? Using this Version: https://forum.xda-developers.com/mi...era-modded-t3591177/post75047174#post75047174 Its made for 7.1.x so It may Work? Opens and Freezes on Z5p and Xzp on Pure Stock Rom, no root.
Hoardseeker said: So this is just a Concept, People over Here: https://forum.xda-developers.com/mi-5/themes/app-collection-camera-modded-t3591177 Ported Portait Mode on Pixel 2 to other Devices, it requires CAMERA2API so if we use Magistik Module to Enable it and use that would it work? Using this Version: https://forum.xda-developers.com/mi...era-modded-t3591177/post75047174#post75047174 Its made for 7.1.x so It may Work? Click to expand... Click to collapse @Arnova8G2 is that the problem for Black screen with camera logo? CAMERA2API is Enabled in Legacy mode... The latest Beta gives Force stop @Emiliano7774 let's discuss here @PDesire @sToRm// Can you help us out to get this working?
Hoardseeker;75067889 [user=4860033 said: @Arnova8G2[/user] is that the problem for Black screen with camera logo? CAMERA2API is Enabled in Legacy mode... The latest Beta gives Force stop @Emiliano7774 let's discuss here Click to expand... Click to collapse Yes. The last beta instantly crashes. Back to the same of before @Arnova8G2
My find is that it makes same problem on Xioami A1 and Mi6 which doesn't have Full Camera2api and has same problem as Ours,So we Can Root our phone and Unlock Camera2api it may work,We need someone to test this
Hoardseeker said: My find is that it makes same problem on Xioami A1 and Mi6 which doesn't have Full Camera2api and has same problem as Ours,So we Can Root our phone and Unlock Camera2api it may work,We need someone to test this Click to expand... Click to collapse I have the xz premium unlocked, rooted and the magisk module installed but still not works. Sh*t
Emiliano7774 said: I have the xz premium unlocked, rooted and the magisk module installed but still not works. Sh*t Click to expand... Click to collapse Open build.prop, add string 'persist.camera.HAL3.enabled=1' , save, reboot.
Hoardseeker said: Open build.prop, add string 'persist.camera.HAL3.enabled=1' , save, reboot. Click to expand... Click to collapse I'm in road to install AOSP because even with this no works.
7 Emiliano7774 said: I'm in road to install AOSP because even with this no works. Click to expand... Click to collapse Have you tried New v1.4 ?? And try to take Logcat.Providing a Logcat helps debugging
OS Version: 3.10.84-perf-g99119bc(3761073091) OS API Level: 7.1.1(25) Device: E6883 Model (and Product): E6883 (E6883) Code: Camera 0 (BACK) android.sync: - maxLatency = SYNC_MAX_LATENCY_PER_FRAME_CONTROL android.lens: - facing = LENS_FACING_BACK android.request: - availableCapabilities = [0,1,2,5,6] - maxNumInputStreams = 0 - maxNumOutputProc = 3 - maxNumOutputProcStalling = 1 - maxNumOutputRaw = 0 - partialResultCount = 1 - pipelineMaxDepth = 8 android.statistics.info: - availableFaceDetectModes = [0,1] - availableHotPixelMapModes = [false] - availableLensShadingMapModes = [0,1] - maxFaceCount = 5 android.shading: - availableModes = [1,2,0] android.control: - aeAvailableAntibandingModes = [0,3,1,2] - aeAvailableModes = [0,1,2,3,4] - aeAvailableTargetFpsRanges = [[1, 15],[15, 15],[1, 30],[30, 30]] - aeCompensationRange = [-6, 6] - aeCompensationStep = 1/3 - aeLockAvailable = true - afAvailableModes = [0,1,2,4,3] - availableEffects = [0,1,2,3,4,5] - availableModes = [1,2,0] - availableSceneModes = [3,4,5,6,8,9,12,13,14,16,1] - availableVideoStabilizationModes = [0] - awbAvailableModes = [0,1,2,3,5,6] - awbLockAvailable = true - maxRegionsAe = 1 - maxRegionsAf = 1 - maxRegionsAwb = 0 android.sensor: - availableTestPatternModes = [0] - blackLevelPattern = BlackLevelPattern([0, 0], [0, 0]) - maxAnalogSensitivity = 320 - orientation = 90 android.info: - supportedHardwareLevel = HARDWARE_LEVEL_FULL android.jpeg: - availableThumbnailSizes = [0x0,160x90,160x120] android.lens.info: - availableApertures = [2.0] - availableFilterDensities = [0.0] - availableFocalLengths = [4.23] - availableOpticalStabilization = [0] - focusDistanceCalibration = 1 - hyperfocalDistance = 0.26881722 - minimumFocusDistance = 8.333333 android.scaler: - availableMaxDigitalZoom = 8.0 - croppingType = SCALER_CROPPING_TYPE_CENTER_ONLY - streamConfigurationMap = OutputFormats: [3840x2160, JPEG(256), min_dur:33333332, stall:200000000] [2048x1536, JPEG(256), min_dur:33333332, stall:200000000] [1920x1080, JPEG(256), min_dur:33333332, stall:200000000] [1280x720, JPEG(256), min_dur:33333332, stall:200000000] [720x480, JPEG(256), min_dur:33333332, stall:200000000] [640x480, JPEG(256), min_dur:33333332, stall:200000000] [352x288, JPEG(256), min_dur:33333332, stall:200000000] [320x240, JPEG(256), min_dur:33333332, stall:200000000] [176x144, JPEG(256), min_dur:33333332, stall:200000000] [3840x2160, PRIVATE(34), min_dur:33333332, stall:0] [2048x1536, PRIVATE(34), min_dur:33333332, stall:0] [1920x1080, PRIVATE(34), min_dur:33333332, stall:0] [1280x720, PRIVATE(34), min_dur:33333332, stall:0] [720x480, PRIVATE(34), min_dur:33333332, stall:0] [640x480, PRIVATE(34), min_dur:33333332, stall:0] [352x288, PRIVATE(34), min_dur:33333332, stall:0] [320x240, PRIVATE(34), min_dur:33333332, stall:0] [176x144, PRIVATE(34), min_dur:33333332, stall:0] [3840x2160, YUV_420_888(35), min_dur:33333332, stall:0] [2048x1536, YUV_420_888(35), min_dur:33333332, stall:0] [1920x1080, YUV_420_888(35), min_dur:33333332, stall:0] [1280x720, YUV_420_888(35), min_dur:33333332, stall:0] [720x480, YUV_420_888(35), min_dur:33333332, stall:0] [640x480, YUV_420_888(35), min_dur:33333332, stall:0] [352x288, YUV_420_888(35), min_dur:33333332, stall:0] [320x240, YUV_420_888(35), min_dur:33333332, stall:0] [176x144, YUV_420_888(35), min_dur:33333332, stall:0] android.colorCorrection: - availableAberrationModes = [0] android.sensor.info: - activeArraySize = Rect(0, 274 - 3840, 2434) - colorFilterArrangement = 0 - exposureTimeRange = [100000, 100000000] - maxFrameDuration = 1000000000 - physicalSize = 6.7737603x4.77568 - pixelArraySize = 3840x2708 - preCorrectionActiveArraySize = Rect(0, 274 - 3840, 2434) - sensitivityRange = [50, 3200] - timestampSource = SOURCE_UNKNOWN - whiteLevel = 1023 android.tonemap: - availableToneMapModes = [0,1,2] - maxCurvePoints = 512 android.flash.info: - available = true android.edge: - availableEdgeModes = [0,1,2] android.noiseReduction: - availableNoiseReductionModes = [0,1,2] android.hotPixel: - availableHotPixelModes = [1] Camera 1 (FRONT) android.sync: - maxLatency = SYNC_MAX_LATENCY_UNKNOWN android.lens: - facing = LENS_FACING_FRONT android.request: - availableCapabilities = [0] - maxNumOutputProc = 3 - maxNumOutputProcStalling = 1 - maxNumOutputRaw = 0 - partialResultCount = 1 - pipelineMaxDepth = 8 android.statistics.info: - availableFaceDetectModes = [0,1] - availableHotPixelMapModes = [false] - availableLensShadingMapModes = [0] - maxFaceCount = 5 android.shading: - availableModes = [1,2] android.control: - aeAvailableAntibandingModes = [0,3,1,2] - aeAvailableModes = [1] - aeAvailableTargetFpsRanges = [[1, 15],[15, 15],[1, 30],[30, 30]] - aeCompensationRange = [-6, 6] - aeCompensationStep = 1/3 - aeLockAvailable = true - afAvailableModes = [0] - availableEffects = [0,1,2,3,4,5] - availableModes = [1,2] - availableSceneModes = [3,5,6,1] - availableVideoStabilizationModes = [0] - awbAvailableModes = [1,2,3,5,6] - awbLockAvailable = true - maxRegionsAe = 1 - maxRegionsAf = 0 - maxRegionsAwb = 0 android.info: - supportedHardwareLevel = HARDWARE_LEVEL_LIMITED android.sensor: - availableTestPatternModes = [0] - orientation = 270 android.jpeg: - availableThumbnailSizes = [0x0,160x90,160x120] android.lens.info: - availableFocalLengths = [2.12] - availableOpticalStabilization = [0] - focusDistanceCalibration = 0 - hyperfocalDistance = 0.0 - minimumFocusDistance = 0.0 android.scaler: - availableMaxDigitalZoom = 8.0 - croppingType = SCALER_CROPPING_TYPE_CENTER_ONLY - streamConfigurationMap = OutputFormats: [2592x1944, JPEG(256), min_dur:33333332, stall:200000000] [2592x1458, JPEG(256), min_dur:33333332, stall:200000000] [1920x1080, JPEG(256), min_dur:33333332, stall:200000000] [1280x720, JPEG(256), min_dur:33333332, stall:200000000] [720x480, JPEG(256), min_dur:33333332, stall:200000000] [640x480, JPEG(256), min_dur:33333332, stall:200000000] [352x288, JPEG(256), min_dur:33333332, stall:200000000] [320x240, JPEG(256), min_dur:33333332, stall:200000000] [176x144, JPEG(256), min_dur:33333332, stall:200000000] [2592x1944, PRIVATE(34), min_dur:33333332, stall:0] [2592x1458, PRIVATE(34), min_dur:33333332, stall:0] [1920x1080, PRIVATE(34), min_dur:33333332, stall:0] [1280x720, PRIVATE(34), min_dur:33333332, stall:0] [720x480, PRIVATE(34), min_dur:33333332, stall:0] [640x480, PRIVATE(34), min_dur:33333332, stall:0] [352x288, PRIVATE(34), min_dur:33333332, stall:0] [320x240, PRIVATE(34), min_dur:33333332, stall:0] [176x144, PRIVATE(34), min_dur:33333332, stall:0] [2592x1944, YUV_420_888(35), min_dur:33333332, stall:0] [2592x1458, YUV_420_888(35), min_dur:33333332, stall:0] [1920x1080, YUV_420_888(35), min_dur:33333332, stall:0] [1280x720, YUV_420_888(35), min_dur:33333332, stall:0] [720x480, YUV_420_888(35), min_dur:33333332, stall:0] [640x480, YUV_420_888(35), min_dur:33333332, stall:0] [352x288, YUV_420_888(35), min_dur:33333332, stall:0] [320x240, YUV_420_888(35), min_dur:33333332, stall:0] [176x144, YUV_420_888(35), min_dur:33333332, stall:0] android.colorCorrection: - availableAberrationModes = [0] android.sensor.info: - activeArraySize = Rect(8, 8 - 2600, 1952) - exposureTimeRange = [100000, 100000000] - maxFrameDuration = 1000000000 - physicalSize = 2.9209602x2.24 - pixelArraySize = 2608x2000 - preCorrectionActiveArraySize = Rect(8, 8 - 2600, 1952) - sensitivityRange = [50, 800] - timestampSource = SOURCE_UNKNOWN android.tonemap: - availableToneMapModes = [0,1,2] - maxCurvePoints = 512 android.flash.info: - available = false android.noiseReduction: - availableNoiseReductionModes = [0,1,2] @Arnova8G2
@Arnova8G2 @PDesire Can you please help? Here is the Full Logcat file: https://drive.google.com/file/d/12cg93XP-LXuiCOOxdInsX8ShVNKLGj9i/view?usp=sharing Part from the logcat: Code: --------- beginning of crash 01-10 17:02:18.067 16715 16715 E AndroidRuntime: FATAL EXCEPTION: main 01-10 17:02:18.067 16715 16715 E AndroidRuntime: Process: com.google.android.GCMods5, PID: 16715 01-10 17:02:18.067 16715 16715 E AndroidRuntime: java.lang.IllegalStateException: No HDR+ compatible raw format supported. 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at cns.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at cok.aa(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at ccv.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at com.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at jxg.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at con.run(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at gvc.run(Unknown Source) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at hzy.run(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:428) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:237) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:272) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.lang.Thread.run(Thread.java:761) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at avv.run(PG) We just need the Portrait Mode to work,seems like HDR+ is causing the crash issue ,Can you disable the HDR+ for Xperia users ? If we take a look at this Apk: https://drive.google.com/file/d/0B-0UOfPty_9XMkJ6ZWZpZmVudlU/view It has HDR+ disabled in the settings and Surprisingly it works in all xperia devices. Proof that it works: https://forum.xda-developers.com/xz-premium/help/gcam-hdr-mod-t3684764 Also tested with my Z5Premium So please disable the HDR+ and let us enjoy the portait mode .Thanks
Hoardseeker said: @Arnova8G2 @PDesire Can you please help? Here is the Full Logcat file: https://drive.google.com/file/d/12cg93XP-LXuiCOOxdInsX8ShVNKLGj9i/view?usp=sharing Part from the logcat: Code: --------- beginning of crash 01-10 17:02:18.067 16715 16715 E AndroidRuntime: FATAL EXCEPTION: main 01-10 17:02:18.067 16715 16715 E AndroidRuntime: Process: com.google.android.GCMods5, PID: 16715 01-10 17:02:18.067 16715 16715 E AndroidRuntime: java.lang.IllegalStateException: No HDR+ compatible raw format supported. 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at cns.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at cok.aa(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at ccv.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at com.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at jxg.a(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at con.run(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at gvc.run(Unknown Source) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at hzy.run(PG) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:428) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:237) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:272) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at java.lang.Thread.run(Thread.java:761) 01-10 17:02:18.067 16715 16715 E AndroidRuntime: at avv.run(PG) We just need the Portrait Mode to work,seems like HDR+ is causing the crash issue ,Can you disable the HDR+ for Xperia users ? If we take a look at this Apk: https://drive.google.com/file/d/0B-0UOfPty_9XMkJ6ZWZpZmVudlU/view It has HDR+ disabled in the settings and Surprisingly it works in all xperia devices. Proof that it works: https://forum.xda-developers.com/xz-premium/help/gcam-hdr-mod-t3684764 Also tested with my Z5Premium So please disable the HDR+ and let us enjoy the portait mode .Thanks Click to expand... Click to collapse Ofc it works fine without HDR+. Sony is still retarded enough to don't implement RAW. And to Remove a whole cam algorithm is also something which is very hard, just let it off I guess Your PDesire Sent by Google Pixel XL
PDesire said: Ofc it works fine without HDR+. Sony is still retarded enough to don't implement RAW. And to Remove a whole cam algorithm is also something which is very hard, just let it off I guess Your PDesire Sent by Google Pixel XL Click to expand... Click to collapse Atleast we could get the Portait Mode Working by disabling HDR+. We need not to remove the whole Algorithm,We can Simply disable HDR+ at startup and it will fix it.
It's working fine, but it doesn't have portrait mode, it's that old lens blur which doesn't work.
Guys, im not programmer, but I am following this thread, waiting for you guys to solve this for SONY users. I (due to being robbed) downgraded to XA1 from Pixel XL... and 4k and Portrait mode are the biggest things I miss.
EroticFishCake said: It's working fine, but it doesn't have portrait mode, it's that old lens blur which doesn't work. Click to expand... Click to collapse Which one works fine? And why portrait mode doesn't work? Give me the link to the apk and I will check it with a logcat
EroticFishCake said: It's working fine, but it doesn't have portrait mode, it's that old lens blur which doesn't work. Click to expand... Click to collapse Yea. I can confirm this. There is no option for portrait mode. Only lens blur.
Any update on pixel 2 camera app for z5 premium??
Samsung Galaxy Grand Prime Ve SM-G531H/DL screen locks in custom roms
Good evening to everyone. I have a Samsung Galaxy Grand Prime 3G Duos SM-G531H/DL - specifications below - and already tested many custom roms 6.0.1 above and none worked, because the screen locks and unlocks for a touch if tightening the power key, off and on to the screen, each procedure. What may be happening? Replaces the display and the touch and the problem continues. Model: Samsung Galaxy Grand Prime Tipo de dispositivo: Telefone Fabricante: samsung Modelo: SM-G531H/DL Marca: samsung Placa: SC7730SE Dispositivo: grandprimeve3g Hardware: sc8830 Platform: sc8830 Produto: grandprimeve3gub Número de série: XXXXXXXXXXXX Número de série (RIL): XXXXXXXXXXX RAM: 1 GB Memória Total: 956 MB Memória disponível: 302 MB Armazenamento Interno - Espaço Total: 5261 MB Armazenamento Interno - Espaço Livre: 1049 MB Armazenamento Externo - Espaço Total: 14,83 GB Armazenamento Externo - Espaço Livre: 3729 MB Características do Dispositivo: android.hardware.audio.output android.hardware.bluetooth android.hardware.bluetooth_le android.hardware.camera android.hardware.camera.any android.hardware.camera.autofocus android.hardware.camera.flash android.hardware.camera.front android.hardware.faketouch android.hardware.location android.hardware.location.gps android.hardware.location.network android.hardware.microphone android.hardware.screen.landscape android.hardware.screen.portrait android.hardware.sensor.accelerometer android.hardware.sensor.compass android.hardware.sensor.proximity android.hardware.telephony android.hardware.telephony.gsm android.hardware.touchscreen android.hardware.touchscreen.multitouch android.hardware.touchscreen.multitouch.distinct android.hardware.touchscreen.multitouch.jazzhand android.hardware.usb.accessory android.hardware.usb.host android.hardware.wifi android.hardware.wifi.direct android.software.app_widgets android.software.backup android.software.connectionservice android.software.device_admin android.software.home_screen android.software.input_methods android.software.live_wallpaper android.software.print android.software.webview com.sec.android.mdm com.sec.feature.call_vt_support <<< Processador >>> Chipset: Spreadtrum SC7730SE Arquitetura do Núcleo: 4x ARM Cortex-A7 @ 1300 MHz Processo de Fabricaçao: 28 nm Conjunto de Instruçoes: 32-bit ARMv7 Revisao: r0p5 Núcleos: 4 Faixa de Velocidade da CPU: 768 - 1300 MHz Velocidade do Núcleo 1: 1300 MHz Velocidade do Núcleo 2: 1300 MHz Velocidade do Núcleo 3: (dormindo) Velocidade do Núcleo 4: (dormindo) Utilizaçao da CPU: 71 % Cache L1I: 4x 32 KB Cache L1D: 4x 32 KB Cache L2: 512 KB ABIs Suportadas: armeabi-v7a, armeabi ABIs de 32-bits Suportadas: armeabi-v7a, armeabi AES: Nao suportado NEON: Suportado SHA1: Nao suportado SHA2: Nao suportado <<< Tela >>> Resoluçao: 540 × 960 Tecnologia: TFT Tamanho: 62 mm × 111 mm Diagonal: 5,0 inches Densidade: 220 dpi (hdpi) xdpi / ydpi: 214 / 222 dpi GPU Fornecedor: ARM GPU Renderizador: Mali-400 MP2 GPU Cores: 2 Taxa de atualizaçao: 60 Hz Orientaçao Padrao: Retrato Versao do OpenGL ES: 2.0 Versao da GPU: OpenGL ES 2.0 Extensoes OpenGL ES: GL_EXT_debug_marker GL_OES_texture_npot GL_OES_vertex_array_object GL_OES_compressed_ETC1_RGB8_texture GL_EXT_compressed_ETC1_RGB8_sub_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_depth24 GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth_texture GL_OES_packed_depth_stencil GL_EXT_texture_format_BGRA8888 GL_OES_vertex_half_float GL_EXT_blend_minmax GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_rgb8_rgba8 GL_EXT_multisampled_render_to_texture GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_ARM_mali_program_binary GL_EXT_shader_texture_lod GL_EXT_robustness GL_OES_depth_texture_cube_map GL_KHR_debug GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil <<< Rede >>> << Telefone - SIM1 >> Tipo de Telefone: GSM Nome da Operadora da Rede: TIM 34 Código da Operadora da Rede: 72402 País da Operadora da Rede: Brasil Nome do Provedor SIM: TIM Código do Provedor SIM: 72402 País do Provedor SIM: Brasil Estado do SIM: Pronto Tipo de Rede: HSPA+ Estado da Conexao de Dados: Desconectado Atividade de Dados: Upload Dispositivo em Roaming: Nao Cartao ICC: Presente << Telefone - SIM2 >> Tipo de Telefone: GSM Nome da Operadora da Rede: TIM Código da Operadora da Rede: 72402 País da Operadora da Rede: Brasil Nome do Provedor SIM: TIM Código do Provedor SIM: 72402 País do Provedor SIM: Brasil Estado do SIM: Pronto Tipo de Rede: HSPA+ Estado da Conexao de Dados: Desconhecido Atividade de Dados: Desconhecido Dispositivo em Roaming: Nao Cartao ICC: Presente << Wi-Fi >> Estado: Ativado SSID: XXXXXXXXXXX BSSID: a0:ab:1b:de:27:97 SSID Oculta: Nao Endereço IPv4: XXXXXXXX Endereço IPv6: XXXXXXXXXXX Endereço MAC: XXXXXXXXXXXXXX Intensidade do Sinal: -77 dBm (Baixo) Velocidade do Link: 19 Mbps Frequencia: 2472 MHz ID da Rede: 0 Gateway: XXXXXXXXX Máscara da Rede: XXXXXXXXX DNS1: XXXXXXX Banda de 5 GHz: Nao suportado Wi-Fi Aware: Nao suportado Wi-Fi Direct: Suportado <<< Bateria >>> Fonte de potencia: Bateria Nível: 48 % Status: Descarregando Condiçao: Boa Tecnologia: Li-ion Temperatura: 26,1°C Voltagem: 3,727 V Taxa de Descarga: 107 mA Capacidade: 2600 mAh <<< Android >>> Versao do Android: 5.1.1 (Lollipop) Nível da API: 22 Dispositivo ROOTado: Nao Identificaçao do Android: adbe5119dea9ac7 Baseband: G531HUBU0AQI1 Bootloader: G531HVJU0AQI1 Build ID: LMY48B.G531HVJU0AQI1 Codinome: REL Fingerprint: samsung/grandprimeve3gub/grandprimeve3g:5.1.1/LMY48B/G531HVJU0AQI1:user/release-keys ID: LMY48B Incremento: G531HVJU0AQI1 Versao Java Runtime: Android Runtime 0.9 Versao da Java VM: ART 2.1.0 Java VM Heap Size: 96 MB Arquitetura do Kernel: armv7l Versao do Kernel: 3.10.65-1235336 ([email protected]) (gcc version 4.8 (GCC) ) #2 SMP PREEMPT Tue Sep 12 21:51:38 KST 2017 Tags: release-keys Tipo: user Google Play Services Version: 12.5.29 (020304-192802242) Versao OpenSSL: OpenSSL 1.0.1k 8 Jan 2015 Versao ZLib: 1.2.8 Versao do CLDR do ICU: 25.0 Versao da Biblioteca ICU: 53.1.0.1 Versao do Unicode do ICU: 6.3 Idioma Android: português (Brasil) Fuso Horário Configurado: Horário Padrão de Brasília (UTC-03:00) Tempo de Atividade: 3 dias, 04:18:49 <<< Dispositivos >>> << Câmera >> Câmera ID: ISP Resoluçao: 8,0 MP (3264 × 2448) Focal Length: 3,30 mm Focus Modes: auto, macro, continuous-picture, continuous-video, infinity Vídeo Snapshot: Suportado Estabilizaçao do Vídeo: Nao suportado Zoom: Suportado Zoom suave: Nao suportado Bloqueio Automático de Exposiçao: Nao suportado Bloqueio Automático de Luminosidade: Nao suportado Flash: Suportado << Câmera Frontal >> Câmera ID: SOC Resoluçao: 5,0 MP (2576 × 1932) Focal Length: 1,92 mm Focus Modes: auto, macro, infinity Vídeo Snapshot: Nao suportado Estabilizaçao do Vídeo: Nao suportado Zoom: Nao suportado Zoom suave: Nao suportado Bloqueio Automático de Exposiçao: Nao suportado Bloqueio Automático de Luminosidade: Nao suportado Flash: Nao suportado Nenhum dispositivo USB encontrado. Nenhum dispositivo OpenCL encontrado. Nenhum dispositivo CUDA encontrado. Nenhum dispositivo Vulkan encontrado. Nenhum dispositivo PCI encontrado. <<< Temperatura >>> battery: 26,1°C Bateria: 26,1°C <<< Sensores >>> K2HH Acceleration : YAS537 Magnetic Sensor: YAS537 Uncalibrated Magnetic Sensor: GP2A002 Proximity Sensor: 5,0 cm Screen Orientation Sensor: Orientation Sensor: <<< Aplicativos >>> AIDA64: com.finalwire.aida64(v1.51) Dropbox: com.dropbox.android(v2.4.4.8) Editor de Fotografias: com.sec.android.mimage.photoretouching(v5.4.54) Editor De Imagem: com.pcvirt.ImageEditor(v4.0.b116) Google Play services for Instant Apps: com.google.android.instantapps.supervisor(v2.22-release-lmp-193048821) XXXXXXXXXXX <<< Codecs >>> OMX.sprd.mpeg4.decoder: video/mp4v-es OMX.sprd.h263.decoder: video/3gpp OMX.sprd.h264.decoder: video/avc OMX.sprd.vpx.decoder: video/x-vnd.on2.vp8 OMX.vpu.video_decoder.avc: video/avc OMX.SEC.amr.dec: audio/3gpp audio/amr-wb OMX.SEC.mp3.dec: audio/mpeg audio/mpeg-L1 audio/mpeg-L2 OMX.SEC.aac.dec: audio/mp4a-latm OMX.SEC.flac.dec: audio/flac OMX.SEC.adpcm.dec: audio/x-ima OMX.SEC.h263.sw.dec: video/3gpp OMX.SEC.avc.sw.dec: video/avc OMX.SEC.mpeg4.sw.dec: video/mp4v-es OMX.SEC.vp8.dec: video/x-vnd.on2.vp8 OMX.sprd.mpeg4.encoder: video/mp4v-es OMX.sprd.h263.encoder: video/3gpp OMX.sprd.h264.encoder: video/avc OMX.google.mpeg4.decoder: video/mp4v-es OMX.google.h263.decoder: video/3gpp OMX.google.h264.decoder: video/avc OMX.google.hevc.decoder: video/hevc OMX.google.vp8.decoder: video/x-vnd.on2.vp8 OMX.google.vp9.decoder: video/x-vnd.on2.vp9 OMX.google.h263.encoder: video/3gpp OMX.google.h264.encoder: video/avc OMX.google.mpeg4.encoder: video/mp4v-es OMX.google.vp8.encoder: video/x-vnd.on2.vp8 OMX.google.mp3.decoder: audio/mpeg OMX.google.amrnb.decoder: audio/3gpp OMX.google.amrwb.decoder: audio/amr-wb OMX.google.aac.decoder: audio/mp4a-latm OMX.google.g711.alaw.decoder: audio/g711-alaw OMX.google.g711.mlaw.decoder: audio/g711-mlaw OMX.google.vorbis.decoder: audio/vorbis OMX.google.opus.decoder: audio/opus OMX.google.raw.decoder: audio/raw OMX.google.aac.encoder: audio/mp4a-latm OMX.google.amrnb.encoder: audio/3gpp OMX.google.amrwb.encoder: audio/amr-wb OMX.google.flac.encoder: audio/flac OMX.google.gsm.decoder: audio/gsm OMX.SEC.hevc.sw.dec: video/hevc <<< Diretórios >>> Dados: /data Pasta Raiz: /system Java Home: /system Conteúdo Download/Cache: /cache << Armazenamento Externo >> Armazenamento Externo Primário: /storage/emulated/0 Arquivos Externos #1: /storage/emulated/0/Android/data/com.finalwire.aida64/files Arquivos Externos #2: /storage/extSdCard/Android/data/com.finalwire.aida64/files Alarmes: /storage/emulated/0/Alarms DCIM: /storage/emulated/0/DCIM Documentos: /storage/emulated/0/Documents Downloads: /storage/emulated/0/Download Filmes: /storage/emulated/0/Movies Músicas: /storage/emulated/0/Music Notificaçoes: /storage/emulated/0/Notifications Imagens: /storage/emulated/0/Pictures Podcasts: /storage/emulated/0/Podcasts Toques: /storage/emulated/0/Ringtones << Pontos de Montagens >> /: Dispositivo: rootfs Sistema de arquivos: rootfs Somente Leitura /dev: Dispositivo: tmpfs Sistema de arquivos: tmpfs Leitura e Gravaçao /dev/pts: Dispositivo: devpts Sistema de arquivos: devpts Leitura e Gravaçao /dev/memcg: Dispositivo: none Sistema de arquivos: cgroup Leitura e Gravaçao /dev/cpuctl: Dispositivo: none Sistema de arquivos: cgroup Leitura e Gravaçao /dev/usb-ffs/adb: Dispositivo: adb Sistema de arquivos: functionfs Leitura e Gravaçao /proc: Dispositivo: proc Sistema de arquivos: proc Leitura e Gravaçao /sys: Dispositivo: sysfs Sistema de arquivos: sysfs Leitura e Gravaçao /sys/fs/selinux: Dispositivo: selinuxfs Sistema de arquivos: selinuxfs Leitura e Gravaçao /sys/kernel/debug: Dispositivo: debugfs Sistema de arquivos: debugfs Leitura e Gravaçao /sys/fs/cgroup: Dispositivo: none Sistema de arquivos: tmpfs Leitura e Gravaçao /sys/fs/cgroup/memory: Dispositivo: none Sistema de arquivos: cgroup Leitura e Gravaçao /acct: Dispositivo: none Sistema de arquivos: cgroup Leitura e Gravaçao /mnt/secure: Dispositivo: tmpfs Sistema de arquivos: tmpfs Leitura e Gravaçao /mnt/asec: Dispositivo: tmpfs Sistema de arquivos: tmpfs Leitura e Gravaçao /mnt/obb: Dispositivo: tmpfs Sistema de arquivos: tmpfs Leitura e Gravaçao /system: Dispositivo: /dev/block/platform/sdio_emmc/by-name/SYSTEM Sistema de arquivos: ext4 Somente Leitura /data: Dispositivo: /dev/block/platform/sdio_emmc/by-name/userdata Sistema de arquivos: ext4 Leitura e Gravaçao /cache: Dispositivo: /dev/block/platform/sdio_emmc/by-name/CACHE Sistema de arquivos: ext4 Leitura e Gravaçao /efs: Dispositivo: /dev/block/platform/sdio_emmc/by-name/efs Sistema de arquivos: ext4 Leitura e Gravaçao /productinfo: Dispositivo: /dev/block/platform/sdio_emmc/by-name/prodnv Sistema de arquivos: ext4 Leitura e Gravaçao /persdata/absolute: Dispositivo: /dev/block/platform/sdio_emmc/by-name/persdata Sistema de arquivos: ext4 Leitura e Gravaçao /preload: Dispositivo: /dev/block/platform/sdio_emmc/by-name/HIDDEN Sistema de arquivos: ext4 Somente Leitura /mnt/shell/emulated: Dispositivo: /data/media Sistema de arquivos: sdcardfs Leitura e Gravaçao /storage/emulated: Dispositivo: tmpfs Sistema de arquivos: tmpfs Leitura e Gravaçao /mnt/media_rw/extSdCard: Dispositivo: /dev/block/vold/179:129 Sistema de arquivos: vfat Leitura e Gravaçao /storage/extSdCard: Dispositivo: /mnt/media_rw/extSdCard Sistema de arquivos: sdcardfs Leitura e Gravaçao /storage/emulated/0: Dispositivo: /data/media Sistema de arquivos: sdcardfs Leitura e Gravaçao /storage/emulated/legacy: Dispositivo: /data/media Sistema de arquivos: sdcardfs Leitura e Gravaçao <<< Arquivos do Sistema >>> Buddy Info: /proc/buddyinfo Propriedades da Build: /system/build.prop Dispositivos Caracteres & Blocos: /proc/devices Linha de comando: /proc/cmdline Informaçoes da CPU: /proc/cpuinfo Default Properties: /default.prop Domínios da Execuçao: /proc/execdomains Arquivos do Sistema: /proc/filesystems Dispositivos Frame Buffer: /proc/fb Configuraçoes do GPS: /system/etc/gps.conf Hosts: /system/etc/hosts Interrupçoes: /proc/interrupts Dispositivos de entrada: /proc/bus/input/devices Portas de E/S: /proc/ioports Versao do Kernel: /proc/version Média de Carga: /proc/loadavg Arquivos Bloqueados: /proc/locks Informaçoes da Memória: /proc/meminfo Mapa da Memória: /proc/iomem Drivers Diversos: /proc/misc Partiçoes: /proc/partitions Estatísticas: /proc/stat Espaço de Swap: /proc/swaps