App craches on AlertDialog .show() - Android Studio

Hello there!
I'm building an app but whenever it comes to the AlertDialog .show() it chrashes. I've reserached but couldn't find any solution.
Most of them were got their problem fixed by changing Context on
AlertDialog.Builder example = new AlertDialog.Builder(Context)
to
AlertDialog.Builder example = new AlertDialog.Builder(MyActivity.this);
But that's not my case, I've beeing using MyActivity.this all long and still crashes.
Here's my code:
ublic class MainActivity extends AppCompatActivity {
Button btMudaTela;
final Funcoes funcao = new Funcoes();
@override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btMudaTela = (Button) findViewById(R.id.btMudaTela);
//Ao clicar no botão outra activity será aberta (ActivityCadastro)
btMudaTela.setOnClickListener(new View.OnClickListener() {
@override
public void onClick(View v) {
AlertDialog.Builder adb = new AlertDialog.Builder(MainActivity.this);
adb.setTitle("teste");
adb.setMessage("ok");
adb.show();
funcao.mudaActivity(MainActivity.this, ActivityCadastro.class);
finish();
}
});
}
}
And here's my Logcat:
06-23 07:41:42.113 3303 3303 E AndroidRuntime: Process: com.example.teste.projetofinal, PID: 3303
06-23 07:41:42.113 3303 3303 E AndroidRuntime: at com.example.teste.projetofinal.MainActivity$1.onClick(MainActivity.java:46)
06-23 07:41:42.123 954 1367 W ActivityManager: Force finishing activity com.example.teste.projetofinal/.MainActivity
06-23 07:41:43.334 954 1602 I ActivityManager: Process com.example.teste.projetofinal (pid 3303) (adj 9) has died.
06-23 07:41:43.334 954 1454 I WindowState: WIN DEATH: Window{444ca450 u0 com.example.teste.projetofinal/com.example.teste.projetofinal.MainActivity}
06-23 07:50:39.406 6806 6806 W InstallAppProgress: Replacing package:com.example.teste.projetofinal
06-23 07:50:42.219 5389 5389 I Finsky : [1] com.google.android.finsky.verifier.impl.br.c(104): Verification complete: id=0, package_name=com.example.teste.projetofinal
06-23 07:50:42.960 954 1046 I PackageManager: Package com.example.teste.projetofinal codePath changed from /data/app/com.example.teste.projetofinal-19.apk to /data/app/com.example.teste.projetofinal-20.apk; Retaining data and using new
06-23 07:50:43.921 954 1046 W PackageManager: Code path for pkg : com.example.teste.projetofinal changing from /data/app/com.example.teste.projetofinal-19.apk to /data/app/com.example.teste.projetofinal-20.apk
06-23 07:50:43.921 954 1046 W PackageManager: Resource path for pkg : com.example.teste.projetofinal changing from /data/app/com.example.teste.projetofinal-19.apk to /data/app/com.example.teste.projetofinal-20.apk
06-23 07:50:45.592 954 1036 I CrashAnrDetector: onPackageUpdateFinished : com.example.teste.projetofinal
06-23 07:50:46.073 6987 6987 E dalvikvm: >>>>> com.example.teste.projetofinal [ userId:0 | appId:10200 ]
06-23 07:50:47.444 6987 6987 E AndroidRuntime: Process: com.example.teste.projetofinal, PID: 6987
06-23 07:50:47.444 6987 6987 E AndroidRuntime: at com.example.teste.projetofinal.MainActivity$1.onClick(MainActivity.java:40)
06-23 07:50:47.444 954 1602 W ActivityManager: Force finishing activity com.example.teste.projetofinal/.MainActivity
06-23 07:50:48.806 954 1602 I WindowState: WIN DEATH: Window{433e3670 u0 com.example.teste.projetofinal/com.example.teste.projetofinal.MainActivity}
06-23 07:50:48.836 954 1545 I ActivityManager: Process com.example.teste.projetofinal (pid 6987) (adj 9) has died.
06-23 07:50:51.188 3939 3939 E SPPClientService: [PackageInfoChangeReceiver] [handlePkgRemovedEvent] PackageName : com.example.teste.projetofinal, true, false
06-23 07:50:54.531 5389 5389 I Finsky : [1] com.google.android.finsky.externalreferrer.d.run(9): Package state data is missing for com.example.teste.projetofinal
06-23 07:50:55.792 3498 7271 I FontsPackageChangeOp: Package com.example.teste.projetofinal has no metadata

I've found solution
Yeah!!!! After 2 days of digging on the Internet I finally found solution here:
https://stackoverflow.com/questions...der-when-android-suport-library-updated-to-24
You need to import this for your AlertDialog:
Code:
import android.app.AlertDialog;
instead of this:
Code:
import android.support.v7.app.AlertDialog;

Related

[Q] Weird ClassLoader bug

I tried to hook method "java.lang.System.loadLibrary", but it caused the process crashed.
My code is simple:
@Override
public void handleLoadPackage(final XC_LoadPackage.LoadPackageParam loadPackageParam) throws Throwable {
if (!loadPackageParam.packageName.equals("com.shinybox.yongchuandixiachengfortx13"))
return;
XposedHelpers.findAndHookMethod("java.lang.System", loadPackageParam.classLoader, "loadLibrary",
String.class,
new XC_MethodHook() {
@Override
protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
String libName = (String) param.args[0];
XposedBridge.log("XPOSED:" + libName);
XposedBridge.log("XPOSED:" + loadPackageParam.classLoader.toString());
super.beforeHookedMethod(param);
}
});
}
Click to expand...
Click to collapse
And I could got some output:
I/Xposed ( 1709): XPOSED:crypto
I/Xposed ( 1709): XPOSED:dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.shinybox.yongchuandixiachengfortx13-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.shinybox.yongchuandixiachengfortx13-1, /vendor/lib, /system/lib]]]
I/Xposed ( 1709): XPOSED:ssl
I/Xposed ( 1709): XPOSED:dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.shinybox.yongchuandixiachengfortx13-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.shinybox.yongchuandixiachengfortx13-1, /vendor/lib, /system/lib]]]
I/Xposed ( 1709): XPOSEDpenal
I/Xposed ( 1709): XPOSED:dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.shinybox.yongchuandixiachengfortx13-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.shinybox.yongchuandixiachengfortx13-1, /vendor/lib, /system/lib]]]
Click to expand...
Click to collapse
But the app crashed and here is the error info:
E/AndroidRuntime( 1709): java.lang.UnsatisfiedLinkError: Couldn't load openal from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/data/de.robv.android.xposed.installer/bin/XposedBridge.jar"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]]: findLibrary returned null
E/AndroidRuntime( 1709): at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
E/AndroidRuntime( 1709): at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
E/AndroidRuntime( 1709): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
Click to expand...
Click to collapse
The reason is that the app tried to load the library "openal" from xposed installer's class loader rather than its own's. How this happened?

[THEME][CM12][CM12.1] Dark WhoAmI v1.2 (20150827) DISCONTINUED

Today, i will share the dark theme called "dark whoami"...Ofcourse this theme have a lot of bugs. so please report the bugs here and give me some suggestions
NB:
*Please forgive me if my theme has expired
**If you got error like can't install or fc please give me LOGCAT
Requirement :
Stock framework cm12/cm12.1
Latest build cm12/cm12.1
Changelog :
v1.0
initial release
v1.1
Improvement material dark
Fixed some background and text
Change some drawables
New font UI
etc
v1.2
Fixed issue can't install, reported by @Enoalife
Fixed QS tile in settings
Fixed music theme (eleven)
Themed sony apps (music, album, video)
Now you can't see material light
etc
Themed apps:
Almost all system apps
Root explorer
Greenify
Xperia Home
soon
Bug :
Greenify
tell me
Installation :
Just install as normal apk
Reboot after update
Enjoy
Screenshots and Download:
See second post​
Credit:
@mikeioannina and @Mardon for cm12.1 build :good:
@nicholaschum for awesome guide and help :good:
@Ambor for xperia themes port :good:
@gamzekal for guide and help :good:
@gianton for awesome font :good:
all users for test and report the issue :good:
Please pm me if i forgot
Simply press thank's button :good:
Screenshots and Download
Screenshots
v1.0
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
v1.1
v1.2
Download
v1.0 Click Here
v1.1 Click Here
v1.2 Click Here
It's failing to install
Sent from my Nexus 6 using XDA Free mobile app
bigstunta101 said:
It's failing to install
Sent from my Nexus 6 using XDA Free mobile app
Click to expand...
Click to collapse
Give me a logcat...
Nice work:good:
Can't install...temasek build , LG G2.
Envoyé de mon LG-D802 en utilisant Tapatalk
Updated
V1.1 Updated
Changelog :
Improvement material dark
Fixed some background and text
Change some drawables
New font UI
etc
Important note !!!
You must read the first post before download
Failed to install cm-12.1-20150825-NIGHTLY (Nexus 5)
Code:
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
D/Finsky ( 4043): [1] DailyHygiene.goMakeHygieneIfDirty: No need to run daily h
ygiene.
I/ActivityManager( 687): Start proc 4079:com.google.android.gms:car/u0a22 for s
ervice com.google.android.gms/.car.CarService
W/Settings( 4043): Setting download_manager_max_bytes_over_mobile has moved from
android.provider.Settings.Secure to android.provider.Settings.Global.
W/Settings( 4043): Setting download_manager_recommended_max_bytes_over_mobile ha
s moved from android.provider.Settings.Secure to android.provider.Settings.Globa
l.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getCurrentAccount: No account configured on thi
s device.
W/Finsky ( 4043): [1] FinskyApp.getDfeApi: No account configured on this device
.
D/Finsky ( 4043): [1] PackageVerificationReceiver.onReceive: Verification reque
sted, id = 1
D/Finsky ( 4043): [1] WorkerTask.onPreExecute: Verification Requested for id =
1, data=file:///storage/emulated/0/DarkWhoamI_v1.1.apk flags=16 fromVerification
Activity=false
W/ResourcesManager( 4079): Asset path '/system/framework/com.android.media.remot
edisplay.jar' does not exist or contains no resources.
W/ResourcesManager( 4079): Asset path '/system/framework/com.android.location.pr
ovider.jar' does not exist or contains no resources.
I/MultiDex( 4079): VM with version 2.1.0 has multidex support
I/MultiDex( 4079): install
I/MultiDex( 4079): VM has multidex support, MultiDex support library is disabled
.
V/JNIHelp ( 4079): Registering com/google/android/gms/org/conscrypt/NativeCrypto
's 227 native methods...
D/Finsky ( 4043): [1] GmsCoreHelper.cleanupNlp: result=false type=4
D/Finsky ( 4043): [1] RestoreTracker.stopServiceIfDone: Restore complete with 0
success and 0 failed.
I/ProviderInstaller( 4079): Installed default security provider GmsCore_OpenSSL
D/GCM ( 1477): GcmService start Intent { act=com.google.android.gms.INITIALI
ZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.gcm.GcmServic
e } com.google.android.gms.INITIALIZE
D/AuthorizationBluetoothService( 1477): Received GmsCore event: Intent { act=com
.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.googl
e.android.gms/.auth.be.proximity.authorization.bt.AuthorizationBluetoothService$
AutoStarter }.
V/GmsCoreStatsServiceLauncher( 1835): Received broadcast intent Intent { act=com
.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.googl
e.android.gms/.common.stats.GmsCoreStatsServiceLauncher }
D/WearableService( 1933): callingUid 10022, callindPid: 1933
E/MDM ( 1413): [144] b.run: Couldn't connect to Google API client: Connectio
nResult{statusCode=API_UNAVAILABLE, resolution=null}
D/LocationInitializer( 1835): Restart initialization of location
I/Timeline( 687): Timeline: Activity_windows_visible id: ActivityRecord{160be2c
1 u0 com.android.packageinstaller/.InstallAppProgress t17} time:386239
V/Finsky ( 4043): [1] GearheadStateMonitor.onReady: sIsProjecting:false
I/qtaguid ( 4043): Failed write_ctrl(u 36) res=-1 errno=22
I/qtaguid ( 4043): Untagging socket 36 failed errno=-22
W/NetworkManagementSocketTagger( 4043): untagSocket(36) failed with errno -22
D/Finsky ( 4043): [1] 1.onResponse: Verification id=1 response=0
D/Finsky ( 4043): [1] PackageVerificationReceiver.onReceive: Verification reque
sted, id = 1
D/DefContainer( 3537): Copying /storage/emulated/0/DarkWhoamI_v1.1.apk to base.a
pk
I/auditd ( 4122): Starting up
E/auditd ( 4122): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 4122): Exiting
D/audio_hw_primary( 197): disable_audio_route: reset and update mixer path: low
-latency-playback
D/audio_hw_primary( 197): disable_snd_device: snd_device(2: speaker)
D/PackageManager( 687): Renaming /data/app/vmdl500165273.tmp to /data/app/com.a
fah_me.dark.whoami-1
V/BackupManagerService( 687): restoreAtInstall pkg=com.afah_me.dark.whoami toke
n=2 restoreSet=0
V/BackupManagerService( 687): Finishing install immediately
W/Settings( 687): Setting install_non_market_apps has moved from android.provid
er.Settings.Global to android.provider.Settings.Secure, returning read-only valu
e.
I/InputReader( 687): Reconfiguring input devices. changes=0x00000020
D/BackupManagerService( 687): Received broadcast Intent { act=android.intent.ac
tion.PACKAGE_ADDED dat=package:com.afah_me.dark.whoami flg=0x4000010 (has extras
) }
W/BackupManagerService( 687): Removing schedule queue dupe of com.afah_me.dark.
whoami
D/installd( 198): aapt source_apk=/data/app/com.afah_me.dark.whoami-1/base.apk
internal_path=assets/icons/ out_restable=/data/resource-cache/com.afah_me.dark.w
hoami/icons uid=50070, pkgId=98, min_sdk_version=21, common_res_path=
D/Documents( 3712): Update found 6 roots in 63ms
E/cutils-trace( 4128): Error opening trace file: No such file or directory (2)
W/ResourcesManager( 1112): Asset path '/system/framework/com.google.android.medi
a.effects.jar' does not exist or contains no resources.
I/Launcher( 1112): Deferring update until onResume
I/art ( 687): Explicit concurrent mark sweep GC freed 122434(6MB) AllocSpac
e objects, 22(7MB) LOS objects, 32% free, 32MB/48MB, paused 79.554ms total 538.9
48ms
I/ActivityManager( 687): Start proc 4135:com.google.android.partnersetup/u0a25
for broadcast com.google.android.partnersetup/.RlzPingBroadcastReceiver
D/ChimeraCfgMgr( 1835): Loading module com.google.android.gms.games from APK com
.google.android.gms
D/ChimeraCfgMgr( 1835): Loading module com.google.android.gms.vision from APK co
m.google.android.gms
D/Vision ( 1835): Received broadcast Intent { act=android.intent.action.PACKAGE
_ADDED dat=package:com.afah_me.dark.whoami flg=0x4000010 cmp=com.google.android.
gms/.vision.DependencyBroadcastReceiverProxy (has extras) }
D/PackageBroadcastService( 1835): Received broadcast action=android.intent.actio
n.PACKAGE_ADDED and uri=com.afah_me.dark.whoami
D/Vision ( 1835): Failed to find package metadata for com.afah_me.dark.whoami
D/Vision ( 1835): No vision deps
I/ConfigService( 1477): onCreate
I/ConfigFetchService( 1835): onStartCommand Intent { act=android.intent.action.P
ACKAGE_ADDED dat=package:com.afah_me.dark.whoami cmp=com.google.android.gms/.con
fig.ConfigFetchService (has extras) }
I/ConfigFetchService( 1835): launchTask
I/ConfigFetchService( 1835): service connected
I/PeopleContactsSync( 1835): CP2 sync disabled
D/ConfigFetchService( 1835): ConfigApi connection successful.
V/ConfigFetchTask( 1835): ConfigFetchTask getDeviceDataVersionInfo(): ABFEt1XZ_s
LyAHRryZH2gS3VcNRc16ABP_sUsHwq2H_XUgOgq3hjuIiFHo9qgYEXHtGccGbpQLSdl4_OLMiSNUnylj
RlzvkqbxN7gpdRqCbNZzpw5jD-Ft8m-R4Pkc4B18LppXEEn7ByASg0oJbY6C6WVdCOCkmy8M79QL3_B9
GOso_g7TJvMZX-7ldsYEdcidxU0V1yjPXk6MdHduN8voL4D5p9qWQ4Y6fNNoPjgHwT1jynGWYzRRQ2B6
U8zb_b8sh_yS23ZLluCg8oRDywR8RXAoFt8f4ugnDwyveIkoH-d5Ixh9W6dUtltQqd0aZVX0ZxSSK4sx
wE8P_1YDAPINSnWKu1WK-sPKsVTGyMTMZ8G6KzHgUkK84
I/UpdateIcingCorporaServi( 2643): Updating corpora: APPS=com.afah_me.dark.whoami
, CONTACTS=MAYBE
I/GoogleURLConnFactory( 1835): Using platform SSLCertificateSocketFactory
I/UpdateIcingCorporaServi( 2643): UpdateCorporaTask done [took 26 ms] updated ap
ps [took 26 ms]
D/installd( 198): aapt source_apk=/data/app/com.afah_me.dark.whoami-1/base.apk
internal_path=assets/overlays/common/ out_restable=/data/resource-cache/com.afah
_me.dark.whoami/common uid=50070, pkgId=95, min_sdk_version=21, common_res_path=
E/cutils-trace( 4167): Error opening trace file: No such file or directory (2)
D/installd( 198): aapt source_apk=/data/app/com.afah_me.dark.whoami-1/base.apk
internal_path=assets/overlays/com.android.cellbroadcastreceiver/ out_restable=/d
ata/resource-cache/com.afah_me.dark.whoami/com.android.cellbroadcastreceiver uid
=50070, pkgId=97, min_sdk_version=21, common_res_path=/data/resource-cache/com.a
fah_me.dark.whoami/common/resources.apk
E/cutils-trace( 4168): Error opening trace file: No such file or directory (2)
D/installd( 198): idmap target_apk=/system/priv-app/CellBroadcastReceiver/CellB
roadcastReceiver.apk overlay_apk=/data/app/com.afah_me.dark.whoami-1/base.apk ca
che_path=/data/resource-cache/com.afah_me.dark.whoami/com.android.cellbroadcastr
eceiver uid=50005
I/ConfigFetchService( 1835): fetch service done; releasing wakelock
I/ConfigFetchService( 1835): stopping self
D/installd( 198): aapt source_apk=/data/app/com.afah_me.dark.whoami-1/base.apk
internal_path=assets/overlays/com.android.gallery3d/ out_restable=/data/resource
-cache/com.afah_me.dark.whoami/com.android.gallery3d uid=50070, pkgId=97, min_sd
k_version=21, common_res_path=/data/resource-cache/com.afah_me.dark.whoami/commo
n/resources.apk
E/cutils-trace( 4170): Error opening trace file: No such file or directory (2)
D/installd( 198): idmap target_apk=/system/app/Gallery2/Gallery2.apk overlay_ap
k=/data/app/com.afah_me.dark.whoami-1/base.apk cache_path=/data/resource-cache/c
om.afah_me.dark.whoami/com.android.gallery3d uid=50044
D/installd( 198): aapt source_apk=/data/app/com.afah_me.dark.whoami-1/base.apk
internal_path=assets/overlays/com.android.calendar/ out_restable=/data/resource-
cache/com.afah_me.dark.whoami/com.android.calendar uid=50070, pkgId=97, min_sdk_
version=21, common_res_path=/data/resource-cache/com.afah_me.dark.whoami/common/
resources.apk
E/cutils-trace( 4172): Error opening trace file: No such file or directory (2)
E/InstallTheme( 198): Failed to generate resource table for split ''
E/InstallTheme( 198): assets/overlays/com.android.calendar/res/values/drawables
.xml:4: error: Error: Resource is not public. (at 'list_primary_holo' with value
'@android:color/background_material_dark').
E/InstallTheme( 198):
E/installd( 198): aapt failed, status=0x0100
E/PackageManager( 687): Unable to process theme, uninstalling com.afah_me.dark.
whoami
E/PackageManager( 687): com.android.server.pm.PackageManagerService$AaptExcepti
on: Failed to run aapt
E/PackageManager( 687): at com.android.server.pm.PackageManagerService.c
ompileResourcesWithAapt(PackageManagerService.java:7071)
E/PackageManager( 687): at com.android.server.pm.PackageManagerService.c
ompileResources(PackageManagerService.java:6987)
E/PackageManager( 687): at com.android.server.pm.PackageManagerService.c
ompileResourcesIfNeeded(PackageManagerService.java:6976)
E/PackageManager( 687): at com.android.server.pm.PackageManagerService.c
ompileResourcesAndIdmapIfNeeded(PackageManagerService.java:6959)
E/PackageManager( 687): at com.android.server.pm.PackageManagerService.p
rocessThemeResources(PackageManagerService.java:14691)
E/PackageManager( 687): at android.app.ApplicationPackageManager.process
ThemeResources(ApplicationPackageManager.java:1859)
E/PackageManager( 687): at com.android.server.ThemeService$ResourceProce
ssingHandler.handleMessage(ThemeService.java:197)
E/PackageManager( 687): at android.os.Handler.dispatchMessage(Handler.ja
va:102)
E/PackageManager( 687): at android.os.Looper.loop(Looper.java:135)
E/PackageManager( 687): at android.os.HandlerThread.run(HandlerThread.ja
va:61)
I/ActivityManager( 687): Force stopping com.afah_me.dark.whoami appid=10070 use
r=-1: uninstall pkg
I/ActivityManager( 687): Force stopping com.afah_me.dark.whoami appid=10070 use
r=0: pkg removed
W/GeofencerStateMachine( 1413): Ignoring removeGeofence because network location
is disabled.
D/BackupManagerService( 687): Received broadcast Intent { act=android.intent.ac
tion.PACKAGE_REMOVED dat=package:com.afah_me.dark.whoami flg=0x4000010 (has extr
as) }
D/JobSchedulerService( 687): Receieved: android.intent.action.PACKAGE_REMOVED
I/InputReader( 687): Reconfiguring input devices. changes=0x00000020
I/art ( 3586): Explicit concurrent mark sweep GC freed 1563(112KB) AllocSpac
e objects, 0(0B) LOS objects, 24% free, 16MB/21MB, paused 212us total 18.477ms
I/Launcher( 1112): Deferring update until onResume
I/LatinIME:LogUtils( 965): Dictionary info: dictionary = ? ; version = 26 ; dat
e = 1351062238
D/Documents( 3712): Update found 6 roots in 48ms
D/VoicemailCleanupService( 2555): Cleaning up data for package: com.afah_me.dark
.whoami
I/Launcher( 1112): Deferring update until onResume
W/Launcher( 1112): setApplicationContext called twice! old=com.android.launcher3
[email protected] [email protected]
0c07
E/NetworkScheduler.SchedulerReceiver( 1477): Invalid parameter app
E/NetworkScheduler.SchedulerReceiver( 1477): Invalid package name : Perhaps you
didn't include a PendingIntent in the extras?
D/PackageBroadcastService( 1835): Received broadcast action=android.intent.actio
n.PACKAGE_REMOVED and uri=com.afah_me.dark.whoami
D/ChimeraCfgMgr( 1835): Loading module com.google.android.gms.games from APK com
.google.android.gms
D/AccountUtils( 1835): Clearing selected account for com.afah_me.dark.whoami
I/LocationSettingsChecker( 1835): Removing dialog suppression flag for package c
om.afah_me.dark.whoami
I/ConfigFetchService( 1835): onStartCommand Intent { act=android.intent.action.P
ACKAGE_REMOVED dat=package:com.afah_me.dark.whoami cmp=com.google.android.gms/.c
onfig.ConfigFetchService (has extras) }
D/GOOGLEHELP_CompatibleDatabase( 1835): Open SQLiteDatabase: /data/data/com.goog
le.android.gms/databases/metrics.db, release reference: 1
D/GOOGLEHELP_CompatibleDatabase( 1835): Acquire reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/metrics.db: 2
D/gH_MetricsDatabase( 1835): 0 metrics were deleted when clearing package com.af
ah_me.dark.whoami.
D/GOOGLEHELP_CompatibleDatabase( 1835): Release reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/metrics.db: 1
I/ConfigFetchService( 1835): service connected
I/PeopleContactsSync( 1835): CP2 sync disabled
D/GOOGLEHELP_CompatibleDatabase( 1835): Open SQLiteDatabase: /data/data/com.goog
le.android.gms/databases/help_responses.db, release reference: 1
D/GOOGLEHELP_CompatibleDatabase( 1835): Acquire reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/help_responses.db: 2
D/GOOGLEHELP_CompatibleDatabase( 1835): Release reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/help_responses.db: 1
D/GOOGLEHELP_CompatibleDatabase( 1835): Open SQLiteDatabase: /data/data/com.goog
le.android.gms/databases/auto_complete_suggestions.db, release reference: 1
D/GOOGLEHELP_CompatibleDatabase( 1835): Acquire reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/auto_complete_suggestions.db: 2
D/GOOGLEHELP_CompatibleDatabase( 1835): Release reference of SQLiteDatabase: /da
ta/data/com.google.android.gms/databases/auto_complete_suggestions.db: 1
D/GOOGLEHELP_CompatibleDatabase( 1835): Close SQLiteDatabase: /data/data/com.goo
gle.android.gms/databases/metrics.db, release reference: 0
D/GOOGLEHELP_CompatibleDatabase( 1835): Close SQLiteDatabase: /data/data/com.goo
gle.android.gms/databases/help_responses.db, release reference: 0
D/GOOGLEHELP_CompatibleDatabase( 1835): Close SQLiteDatabase: /data/data/com.goo
gle.android.gms/databases/auto_complete_suggestions.db, release reference: 0
I/Icing ( 1835): doRemovePackageData com.afah_me.dark.whoami
W/ContextImpl( 3686): Calling a method in the system process without a qualified
user: android.app.ContextImpl.startService:1721 android.content.ContextWrapper.
startService:522 android.content.ContextWrapper.startService:522 com.android.key
chain.KeyChainBroadcastReceiver.onReceive:12 android.app.ActivityThread.handleRe
ceiver:2641
I/UpdateIcingCorporaServi( 2643): Updating corpora: APPS=com.afah_me.dark.whoami
, CONTACTS=MAYBE
I/UpdateIcingCorporaServi( 2643): UpdateCorporaTask done [took 21 ms] updated ap
ps [took 21 ms]
I/art ( 687): Explicit concurrent mark sweep GC freed 17743(1297KB) AllocSp
ace objects, 14(5MB) LOS objects, 33% free, 27MB/41MB, paused 1.428ms total 173.
967ms
W/PackageManager( 687): Couldn't remove dex file for package: at location /dat
a/app/com.afah_me.dark.whoami-1/base.apk, retcode=-1
E/org.cyanogenmod.themes.provider.AppReceiver( 3586): Unable to update theme com
.afah_me.dark.whoami, result=-400
I/ActivityManager( 687): Killing 3733:com.android.externalstorage/u0a10 (adj 15
): empty #17
V/ActivityManager( 687): killProcessGroupAsync took 41 ms for PID 3733 on threa
d 17
I/auditd ( 4200): Starting up
E/auditd ( 4200): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 4200): Exiting
I/ConfigService( 1477): onDestroy
I/auditd ( 4202): Starting up
E/auditd ( 4202): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 4202): Exiting
^C
E:\Nexus5\Stock>
Fast Update
Changelog:
v1.2
Fixed issue can't install by @Enoalife
Fixed QS tile in settings
Fixed music theme (eleven)
Themed sony apps (music, album, video)
Now you can't see material light
etc
NB:
If not themed all please reboot or soft reboot
If still failed to install please give me logcat

Random reboots.... Logcat and ramoops file attached

I am having random reboots on my Nexus 6 running Pure nexus (android 6.0) with lean kernel (both latest versions). This is very annoying as the phone randomly reboots after playing a certain notification sound ( which i don't know is caused by what).
I am attaching both logcat and ramoops. Anyone please help me know the cause?
new files
Here are new files attached after a fresh random reboot
Here is a snippet from logcat that i think is relavent as there is a FATAL system error at (02-05 22:05:06.881 1348 1348 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main)
Code:
02-05 22:04:45.551 1348 1727 I ActivityManager: Start proc 3084:com.google.process.gapps/u0a29 for content provider com.google.android.gsf/.gservices.GservicesProvider
02-05 22:04:45.567 1348 2251 E ConnectivityService: Failed to find Messenger in unregisterNetworkFactory
02-05 22:04:45.627 1348 1348 V WiredAccessoryManager: notifyWiredAccessoryChanged: when=0 bits= mask=54
02-05 22:04:45.628 1348 1348 V WiredAccessoryManager: newName=h2w newState=0 headsetState=0 prev headsetState=0
02-05 22:04:45.628 1348 1348 V WiredAccessoryManager: init()
02-05 22:04:45.674 1348 2878 I ActivityManager: Start proc 3128:com.google.android.googlequicksearchbox:search/u0a35 for service com.google.android.googlequicksearchbox/com.google.android.hotword.service.HotwordService
02-05 22:04:45.823 1348 1384 I ActivityManager: Start proc 3159:org.telegram.messenger/u0a116 for broadcast org.telegram.messenger/.MusicPlayerReceiver
02-05 22:04:46.006 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:04:46.082 1348 2878 I ActivityManager: Start proc 3184:com.mobisystems.office:browser/u0a100 for broadcast com.mobisystems.office/.io.NetworkChangeReceiver
02-05 22:04:46.083 1348 2248 E WifiP2pService: Unable to change interface settings: java.lang.IllegalStateException: command '86 interface setcfg p2p0 0.0.0.0 0 up' failed with '400 86 Failed to set address (No such device)'
02-05 22:04:46.538 1348 1380 I ActivityManager: Start proc 3270:com.google.android.partnersetup/u0a32 for content provider com.google.android.partnersetup/.RlzAppProvider
02-05 22:04:46.565 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:04:46.621 1348 2328 I Telecom : PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ]
02-05 22:04:46.639 1348 2328 I Telecom : : Sending phone-account intent as user
02-05 22:04:46.675 1348 1348 V BackupManagerService: Connected to transport ComponentInfo{com.google.android.gms/com.google.android.gms.backup.BackupTransportService}
02-05 22:04:46.676 1348 1348 V BackupManagerService: Registering transport com.google.android.gms/.backup.BackupTransportService::com.google.android.gms/.backup.BackupTransportService = [email protected]
02-05 22:04:46.738 1348 1381 W Telecom : : No account found for the calling user
02-05 22:04:46.849 1348 2810 D CryptdConnector: SND -> {2 cryptfs getpw}
02-05 22:04:46.850 239 252 D VoldCryptCmdListener: cryptfs getpw
02-05 22:04:46.850 239 252 I Ext4Crypt: ext4 crypto complete called on /data
02-05 22:04:46.850 239 252 I Ext4Crypt: No master key, so not ext4enc
02-05 22:04:46.850 239 252 I Ext4Crypt: ext4 crypto complete called on /data
02-05 22:04:46.850 239 252 I Ext4Crypt: No master key, so not ext4enc
02-05 22:04:46.850 1348 1717 D CryptdConnector: RCV <- {200 2 -1}
02-05 22:04:46.851 1348 2810 D CryptdConnector: SND -> {3 cryptfs clearpw}
02-05 22:04:46.851 239 252 D VoldCryptCmdListener: cryptfs clearpw
02-05 22:04:46.851 239 252 I Ext4Crypt: ext4 crypto complete called on /data
02-05 22:04:46.851 239 252 I Ext4Crypt: No master key, so not ext4enc
02-05 22:04:46.851 1348 1717 D CryptdConnector: RCV <- {200 3 0}
02-05 22:04:47.001 3159 3322 E ActivityThread: Failed to find provider info for com.teslacoilsw.notifier
02-05 22:04:47.207 1348 1385 W WindowManager: Keyguard drawn timeout. Setting mKeyguardDrawComplete
02-05 22:04:47.287 1348 1727 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:47.303 1348 1727 I Telecom : : Sending phone-account intent as user
02-05 22:04:47.366 1348 2604 W Telecom : : No account found for the calling user
02-05 22:04:47.479 2861 2861 D MccTable: updateMccMncConfiguration mccmnc='41004' fromServiceState=true
02-05 22:04:47.503 2861 2861 D MccTable: updateMccMncConfiguration defaultMccMnc=
02-05 22:04:47.503 2861 2861 D MccTable: updateMccMncConfiguration: mcc=410, mnc=4
02-05 22:04:47.504 2861 2861 D MccTable: WIFI_COUNTRY_CODE set to pk
02-05 22:04:47.504 1348 2810 I WifiService: WifiService trying to set country code to pk with persist set to true
02-05 22:04:47.556 1348 2882 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:47.564 1348 2882 I Telecom : : Sending phone-account intent as user
02-05 22:04:47.573 1348 2883 W Telecom : : No account found for the calling user
02-05 22:04:47.579 2861 2861 D MccTable: updateMccMncConfiguration mccmnc='41004' fromServiceState=false
02-05 22:04:47.580 2861 2861 D MccTable: updateMccMncConfiguration defaultMccMnc=
02-05 22:04:47.580 2861 2861 D MccTable: updateMccMncConfiguration: mcc=410, mnc=4
02-05 22:04:47.580 2861 2861 D MccTable: updateMccMncConfiguration updateConfig config={1.0 410mcc4mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
02-05 22:04:47.581 1348 2884 I ActivityManager: Config changes=3 {1.0 410mcc4mnc en_US ldltr sw411dp w411dp h659dp 560dpi nrml port finger -keyb/v/h -nav/h s.6}
02-05 22:04:48.208 1348 1389 W WindowManager: Timeout waiting for drawn: undrawn=[Window{f7c393 u0 StatusBar}]
02-05 22:04:48.457 1348 1381 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:48.469 1348 1381 I Telecom : : Sending phone-account intent as user
02-05 22:04:48.480 1348 2901 W Telecom : : No account found for the calling user
02-05 22:04:48.514 1348 2810 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:48.526 1348 2810 I Telecom : : Sending phone-account intent as user
02-05 22:04:48.545 1348 1727 W Telecom : : No account found for the calling user
02-05 22:04:48.573 2861 2861 D MccTable: updateMccMncConfiguration mccmnc='41004' fromServiceState=false
02-05 22:04:48.574 2861 2861 D MccTable: updateMccMncConfiguration defaultMccMnc=41004
02-05 22:04:48.574 2861 2861 D MccTable: updateMccMncConfiguration: mcc=410, mnc=4
02-05 22:04:48.574 2861 2861 D MccTable: updateMccMncConfiguration updateConfig config={1.0 410mcc4mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
02-05 22:04:49.862 1348 1389 W WindowManager: App freeze timeout expired.
02-05 22:04:49.991 2861 2861 D MccTable: updateMccMncConfiguration mccmnc='41004' fromServiceState=false
02-05 22:04:49.992 2861 2861 D MccTable: updateMccMncConfiguration defaultMccMnc=41004
02-05 22:04:49.992 2861 2861 D MccTable: updateMccMncConfiguration: mcc=410, mnc=4
02-05 22:04:49.992 2861 2861 D MccTable: updateMccMncConfiguration updateConfig config={1.0 410mcc4mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
02-05 22:04:50.347 1348 1727 I Telecom : PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ]
02-05 22:04:50.367 1348 1727 I Telecom : : Sending phone-account intent as user
02-05 22:04:50.392 1348 2859 W Telecom : : No account found for the calling user
02-05 22:04:50.574 1348 2605 W ActivityManager: Unable to start service Intent { cmp=com.mobisystems.office/com.mobisystems.connect.client.b.a } U=0: not found
02-05 22:04:50.591 1348 2900 I ActivityManager: Start proc 3423:com.google.android.keep/u0a88 for broadcast com.google.android.keep/.notification.AlertReceiver
02-05 22:04:50.625 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:04:50.912 1348 2270 D RttService: New client listening to asynchronous messages: [email protected]
02-05 22:04:51.033 1348 1727 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.044 1348 1727 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.050 1348 2883 W Telecom : : No account found for the calling user
02-05 22:04:51.089 1348 1381 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.097 1348 1381 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.104 1348 2884 W Telecom : : No account found for the calling user
02-05 22:04:51.131 1348 2882 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.140 1348 2882 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.220 1348 2881 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.228 1348 2881 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.238 1348 2901 W Telecom : : No account found for the calling user
02-05 22:04:51.287 1348 1380 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.295 1348 1380 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.312 1348 2883 W Telecom : : No account found for the calling user
02-05 22:04:51.324 1348 2884 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.332 1348 2884 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.356 1348 2859 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.364 1348 2859 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.378 1348 1348 I Telecom : PhoneAccountRegistrar: SimCallManager queried, returning: null
02-05 22:04:51.380 1348 2883 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.389 1348 2883 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.393 1348 2859 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [54a3abf5a6e293abeebcb7c66a94d927fd7d248b], UserHandle{0}(icon: Icon(typ=BITMAP size=67x84) -> Icon(typ=BITMAP size=67x84))]
02-05 22:04:51.402 1348 2859 I Telecom : : Sending phone-account intent as user
02-05 22:04:51.614 1348 1727 D WifiService: acquireWifiLockLocked: WifiLock{NlpWifiLock type=2 bind[email protected]}
02-05 22:04:51.722 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:04:51.773 1348 2884 I ActivityManager: Start proc 3497:com.eclipsim.gpsstatus2/u0a84 for broadcast com.eclipsim.gpsstatus2/com.eclipsim.gpstoolbox.monitor.GpsBroadcastReceiver
02-05 22:04:52.571 1348 2604 I ActivityManager: Start proc 3557:com.google.android.apps.maps/u0a64 for broadcast com.google.android.apps.maps/com.google.android.apps.gmm.iamhere.ble.StartBleServiceReceiver
02-05 22:04:52.653 1348 2604 I ActivityManager: Killing 2320:com.android.externalstorage/u0a11 (adj 15): empty #17
02-05 22:04:52.927 1348 2328 I ActivityManager: Start proc 3583:com.life360.android.safetymapd/u0a85 for broadcast com.life360.android.safetymapd/com.life360.android.receivers.LocationProvidersChangedReceiver
02-05 22:04:53.127 1348 2883 I ActivityManager: Killing 2584:com.cyanogenmod.lockclock/u0a49 (adj 15): empty #17
02-05 22:04:53.381 1348 2882 D WifiService: releaseWifiLockLocked: WifiLock{NlpWifiLock type=2 [email protected]}
02-05 22:04:53.497 1348 2859 I ActivityManager: Start proc 3631:com.life360.android.safetymapd:service/u0a85 for broadcast com.life360.android.safetymapd/com.life360.android.managers.UpdateDispatch
02-05 22:04:53.958 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:04:54.529 1348 2251 D CSLegacyTypeTracker: Sending CONNECTED broadcast for type 0 NetworkAgentInfo [MOBILE (HSPA) - 100] isDefaultNetwork=true
02-05 22:04:54.594 1348 1380 I ActivityManager: Killing 2686:com.skype.raider/u0a91 (adj 15): empty #17
02-05 22:04:54.683 1348 2250 D WifiService: Client connection lost with reason: 4
02-05 22:04:54.724 1348 2810 I ActivityManager: Start proc 3702:com.whatsapp/u0a75 for broadcast com.whatsapp/.ExternalMediaManager$ExternalMediaStateReceiver
02-05 22:04:56.166 1348 2901 I ActivityManager: Start proc 3753:com.android.vending/u0a33 for service com.android.vending/com.google.android.finsky.billing.iab.InAppBillingService
02-05 22:04:56.314 1348 2882 I ActivityManager: Start proc 3771:com.buak.Link2SD/u0a115 for broadcast com.buak.Link2SD/.MediaMountedReceiver
02-05 22:04:56.736 1348 2884 I ActivityManager: Start proc 3806:com.android.sdm.plugins.sprintdm/1001 for broadcast com.android.sdm.plugins.sprintdm/.SprintDMReceiver
02-05 22:04:57.000 1348 1727 I ActivityManager: Start proc 3837:com.verizon.omadm/u0a42 for broadcast com.verizon.omadm/.DmConfigReceiver
02-05 22:04:57.323 1348 2883 I ActivityManager: Killing 3040:com.android.providers.calendar/u0a3 (adj 15): empty #17
02-05 22:04:57.557 1348 2604 I ActivityManager: Start proc 3876:com.android.cellbroadcastreceiver/u0a6 for broadcast com.android.cellbroadcastreceiver/.CellBroadcastReceiver
02-05 22:04:57.559 1348 2604 I ActivityManager: Killing 3270:com.google.android.partnersetup/u0a32 (adj 15): empty #17
02-05 22:04:57.772 1348 2884 I PowerManagerService: Going to sleep by application request (uid 10022)...
02-05 22:04:57.885 1348 1380 I ActivityManager: Killing 2984:com.android.printspooler/u0a51 (adj 15): empty #17
02-05 22:04:58.102 1348 1380 E libprocessgroup: failed to kill 1 processes for processgroup 2984
02-05 22:04:58.104 1348 1380 I ActivityManager: Killing 2728:com.google.android.apps.gcs/u0a12 (adj 15): empty #17
02-05 22:04:58.313 1348 1389 I DisplayManagerService: Display device changed state: "Built-in Screen", OFF
02-05 22:04:58.560 1348 1392 I PowerManagerService: Sleeping (uid 1000)...
02-05 22:04:58.655 1348 2859 I ActivityManager: Start proc 3935:com.microsoft.office.onenote.connectionReceiverProcess/u0a89 for broadcast com.microsoft.office.onenote/com.microsoft.bing.datamining.quasar.api.ConnectionChangeReceiver
02-05 22:04:58.795 1348 2883 I ActivityManager: Process com.microsoft.office.onenote.connectionReceiverProcess (pid 3935) has died
02-05 22:04:58.807 1348 1384 I ActivityManager: Start proc 3956:com.mobisystems.office/u0a100 for broadcast com.mobisystems.office/com.mobisystems.wifi_direct.StartWifiDirectReceiver
02-05 22:04:59.406 1348 1380 W ActivityManager: Unable to start service Intent { cmp=com.mobisystems.office/com.mobisystems.connect.client.b.a } U=0: not found
02-05 22:04:59.434 1348 1727 I ActivityManager: Start proc 3990:stericson.busybox.donate/u0a83 for broadcast stericson.busybox.donate/.receivers.OnBootReciever
02-05 22:04:59.481 1348 2604 I ActivityManager: Killing 3068:com.usbmis.troposphere.fpnb/u0a92 (adj 15): empty #17
02-05 22:04:59.661 1348 4006 I BootReceiver: Copying audit failures to DropBox
02-05 22:04:59.661 1348 4006 I BootReceiver: Checking for fsck errors
02-05 22:04:59.682 1348 4004 I ActivityManager: Start proc 4007:com.android.keychain/1000 for service com.android.keychain/.KeyChainService
02-05 22:04:59.703 1348 2883 I ActivityManager: Start proc 4020:eu.chainfire.supersu/u0a56 for broadcast eu.chainfire.supersu/.BootCompleteReceiver
02-05 22:04:59.734 1348 2881 I ActivityManager: Killing 3184:com.mobisystems.office:browser/u0a100 (adj 15): empty #17
02-05 22:04:59.404 1348 2881 E libprocessgroup: failed to kill 1 processes for processgroup 3184
02-05 22:04:59.413 1348 1384 W ActivityManager: Failed to update preferences for: com.mobisystems.office
02-05 22:04:59.438 1348 1384 I ActivityManager: Start proc 4051:com.android.dialer/u0a9 for broadcast com.android.dialer/.calllog.CallLogReceiver
02-05 22:04:59.459 1348 1348 I ActivityManager: Start proc 4066:com.android.providers.calendar/u0a3 for content provider com.android.providers.calendar/.CalendarProvider2
02-05 22:04:59.577 1348 2604 I ActivityManager: Start proc 4084:com.google.android.marvin.talkback/u0a74 for broadcast com.google.android.marvin.talkback/com.android.talkback.BootReceiver
02-05 22:04:59.583 1348 2810 I ActivityManager: Killing 3423:com.google.android.keep/u0a88 (adj 15): empty #17
02-05 22:04:59.743 1348 1380 I ActivityManager: Start proc 4100:com.motorola.motocit/u0a2 for broadcast com.motorola.motocit/.CQATestBootReceiver
02-05 22:04:59.744 1348 1380 I ActivityManager: Killing 3497:com.eclipsim.gpsstatus2/u0a84 (adj 15): empty #17
02-05 22:04:59.950 1348 1380 I ActivityManager: Killing 3631:com.life360.android.safetymapd:service/u0a85 (adj 15): empty #17
02-05 22:05:00.161 1348 2882 I ActivityManager: Start proc 4134:com.android.managedprovisioning/u0a14 for broadcast com.android.managedprovisioning/.BootReminder
02-05 22:05:00.238 1348 2884 I ActivityManager: Killing 3557:com.google.android.apps.maps/u0a64 (adj 15): empty #17
02-05 22:05:00.425 1348 2878 I ActivityManager: Start proc 4161:com.google.android.configupdater/u0a17 for broadcast com.google.android.configupdater/.CertPin.CertPinUpdateRequestReceiver
02-05 22:05:00.576 1348 2901 I ActivityManager: Killing 2784:android.process.acore/u0a4 (adj 15): empty #17
02-05 22:05:00.789 1348 2883 I ActivityManager: Start proc 4205:com.google.android.onetimeinitializer/u0a31 for broadcast com.google.android.onetimeinitializer/.OneTimeInitializerReceiver
02-05 22:05:00.790 1348 2883 I ActivityManager: Killing 3771:com.buak.Link2SD/u0a115 (adj 15): empty #17
02-05 22:05:00.791 1348 2883 I libprocessgroup: Killing pid 3858 in uid 10115 as part of process group 3771
02-05 22:05:00.938 1348 2901 I ActivityManager: Start proc 4223:com.google.android.partnersetup/u0a32 for broadcast com.google.android.partnersetup/.GooglePartnerSetup
02-05 22:05:00.969 1348 2900 I ActivityManager: Killing 2572:com.android.settings/1000 (adj 15): empty #17
02-05 22:05:01.123 1348 2250 D WifiService: Client connection lost with reason: 4
02-05 22:05:01.229 1348 2882 I BroadcastQueue: Delay finish: com.google.android.partnersetup/.RlzPingBroadcastReceiver
02-05 22:05:01.297 1348 2605 I BroadcastQueue: Resuming delayed broadcast
02-05 22:05:01.369 1348 2328 I ActivityManager: Start proc 4258:com.android.inputmethod.latin/u0a47 for broadcast com.android.inputmethod.latin/.SystemBroadcastReceiver
02-05 22:05:01.464 1348 2882 I ActivityManager: Killing 3806:com.android.sdm.plugins.sprintdm/1001 (adj 15): empty #17
02-05 22:05:01.603 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:05:01.710 1348 2328 I ActivityManager: Process com.android.inputmethod.latin (pid 4258) has died
02-05 22:05:01.724 1348 1384 I ActivityManager: Start proc 4281:com.cyanogenmod.lockclock/u0a49 for broadcast com.cyanogenmod.lockclock/.ClockWidgetProvider
02-05 22:05:01.843 1348 2900 I ActivityManager: Killing 3837:com.verizon.omadm/u0a42 (adj 15): empty #17
02-05 22:05:02.016 1348 2328 I ActivityManager: Start proc 4295:com.qualcomm.telephony/1000 for broadcast com.qualcomm.atfwd/.AtFwdAutoboot
02-05 22:05:02.096 4295 4295 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1221 android.content.ContextWrapper.startService:581 android.content.ContextWrapper.startService:581 com.qualcomm.atfwd.AtFwdAutoboot.onReceive:24 android.app.ActivityThread.handleReceiver:2725
02-05 22:05:02.116 1348 2328 I ActivityManager: Start proc 4309:com.qualcomm.telephony/1001 for broadcast org.codeaurora.ims/.ImsServiceAutoboot
02-05 22:05:02.218 1348 2901 I ActivityManager: Start proc 4325:com.google.process.gapps/u0a61 for broadcast com.google.android.syncadapters.contacts/.ContactsSyncAdapterBroadcastReceiver
02-05 22:05:02.219 1348 2901 I ActivityManager: Killing 3128:com.google.android.googlequicksearchbox:search/u0a35 (adj 15): empty #17
02-05 22:05:02.660 1348 1380 I ActivityManager: Start proc 4370:android.process.acore/u0a4 for content provider com.android.providers.contacts/.ContactsProvider2
02-05 22:05:03.337 1348 2604 D PackageManager: Ignoring attempt to set enabled state of disabled component com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver
02-05 22:05:03.690 2922 4443 E ActivityThread: Failed to find provider info for com.android.contacts.metadata
02-05 22:05:04.843 1348 2884 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.BOOT_COMPLETED flg=0x8000010 (has extras) } to com.google.android.apps.photos/.camerashortcut.CameraShortcutBroadcastReceiver requires android.permission.RECEIVE_BOOT_COMPLETED due to sender null (uid 1000)
02-05 22:05:04.843 1348 1384 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.BOOT_COMPLETED flg=0x8000010 (has extras) } to com.google.android.apps.photos/com.google.android.libraries.social.notifications.impl.BootCompletedReceiver requires android.permission.RECEIVE_BOOT_COMPLETED due to sender null (uid 1000)
02-05 22:05:04.857 1348 1384 I ActivityManager: Start proc 4459:com.google.android.deskclock/u0a70 for broadcast com.google.android.deskclock/com.android.deskclock.AlarmInitReceiver
02-05 22:05:05.210 1348 2883 I ActivityManager: Start proc 4481:com.google.android.apps.maps/u0a64 for broadcast com.google.android.apps.maps/com.google.android.apps.gmm.navigation.service.detection.StartDetectionReceiver
02-05 22:05:05.212 1348 2883 I ActivityManager: Killing 3876:com.android.cellbroadcastreceiver/u0a6 (adj 15): empty #17
02-05 22:05:05.484 1348 1380 I ActivityManager: Killing 2910:com.huawei.mw/u0a122 (adj 15): empty #17
02-05 22:05:05.542 1348 2250 D WifiService: Client connection lost with reason: 4
02-05 22:05:05.558 1348 2250 D WifiService: New client listening to asynchronous messages
02-05 22:05:05.623 2922 4409 E ActivityThread: Failed to find provider info for com.google.android.wearable.settings
02-05 22:05:05.626 1348 2882 I ActivityManager: Killing 3956:com.mobisystems.office/u0a100 (adj 15): empty #17
02-05 22:05:06.343 1348 2884 I ActivityManager: Start proc 4513:com.google.android.gm/u0a72 for broadcast com.google.android.gm/.GoogleMailDeviceStartupReceiver
02-05 22:05:06.471 1348 2901 I ActivityManager: Killing 3990:stericson.busybox.donate/u0a83 (adj 15): empty #17
02-05 22:05:06.662 4513 4531 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
#NAME?
02-05 22:05:06.881 1348 1348 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
02-05 22:05:06.881 1348 1348 E AndroidRuntime: java.lang.NoSuchMethodError: No interface method broadcastIntent(Landroid/app/IApplicationThread;Landroid/content/Intent;Ljava/lang/String;Landroid/content/IIntentReceiver;ILjava/lang/String;Landroid/os/Bundle;Ljava/lang/String;IZZI)I in class Landroid/app/IActivityManager; or its super classes (declaration of 'android.app.IActivityManager' appears in /system/framework/framework.jar)
the fatal system error is caused by the app Landroid.
There was a modification to the sound drivers recently that apparently causes RR's when playing sounds. BuckMarble had pointed it out, if Imsoyeon merged it and hasn't reverted it yet... that might be your issue.
I think I have found the cause. It was due to life360 app which I have uninstalled and now I haven't had a reboot in 10hrs. Let's see if it is actually the cause

Strange problem with supersu

The problem
situation1:
- SuperSU app is active on the foreground
- When I su from adb shell i get the confirmation prompt and get root without any problems
situation2:
- SuperSU app is not running
- When I su from adb shell
sometimes it keeps waiting indefinite but SuperSU. app never starts and therefore never asks confirmation.
other times it works like expected
situation3
- SuperSU app is not running
- Start rootexplorer it waits indefinite (super supersu app never starts)
- If i manually start SuperSU then it sometimes ask for permission for rootexplorer
Device & Rooting info
DEVICE: wiko sunny2 [v2510]
OS: Android 6.0 [MRA58K]
SuperSU version: 2.79
Rooting: Installed official SUinstaller zip version 2.79 from twrp recovery
- installation proceeded without any errors
Parts of logcat
logcat extract of situation 1
Code:
03-13 13:32:00.094 1461 10939 V BroadcastQueue: Finished with ordered broadcast BroadcastRecord{c86c211 u-1 android.intent.action.TIME_TICK}, [foreground], remain = 0
03-13 13:32:00.096 1461 1461 D AlarmManager: onSendFinished begin
03-13 13:32:00.886 540 626 D phoneserver: rsrp[0]=6,rscp[0]=0,rxlev[0]=0 ind_str= M
03-13 13:32:00.886 540 626 D phoneserver: +CSQ: 6,0M
03-13 13:32:01.743 535 784 D WCND : is_cp2_alive_ok: open polling interface: /dev/spipe_wcn0, fd = 13
03-13 13:32:01.744 535 784 D WCND : is_cp2_alive_ok: loop: /dev/spipe_wcn0 is OK
03-13 13:32:03.551 16049 16049 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
03-13 13:32:03.562 16049 16049 D AndroidRuntime: CheckJNI is OFF
03-13 13:32:03.559 16049 16049 W app_process: type=1400 audit(0.0:496): avc: denied { write } for name="[email protected]@boot.art" dev="mmcblk0p23" ino=14597 scontext=u:r:shell:s0 tcontext=u:object_r:dal
03-13 13:32:03.570 16049 16049 W art : 707e5000-71201000 rw-p 00000000 b3:17 14597 /data/dalvik-cache/arm/[email protected]@boot.art
03-13 13:32:03.570 16049 16049 W art : b11f3000-b31cb000 r--p 00000000 b3:11 1176 /system/framework/arm/boot.oat
03-13 13:32:03.570 16049 16049 W art : b31cb000-b49dd000 r-xp 01fd8000 b3:11 1176 /system/framework/arm/boot.oat
03-13 13:32:03.570 16049 16049 W art : b49dd000-b49de000 rw-p 037ea000 b3:11 1176 /system/framework/arm/boot.oat
03-13 13:32:03.570 16049 16049 W art : b49de000-b49fc000 r--p 00a1c000 b3:17 14597 /data/dalvik-cache/arm/[email protected]@boot.art
03-13 13:32:03.570 16049 16049 W art : b49fc000-b49fd000 rw-p 00000000 00:00 0 [anon:linker_alloc_vector]
{....full callstack removed...}
03-13 13:32:03.581 16049 16049 W art : b6f9b000-b6f9c000 rw-p 00000000 00:00 0
03-13 13:32:03.581 16049 16049 W art : b8e2b000-b8e5d000 rw-p 00000000 00:00 0 [heap]
03-13 13:32:03.581 16049 16049 W art : be7e4000-be805000 rw-p 00000000 00:00 0 [stack]
03-13 13:32:03.581 16049 16049 W art : ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors]
03-13 13:32:03.581 16049 16049 W art :
03-13 13:32:03.646 16049 16049 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
03-13 13:32:03.659 16049 16049 W main : type=1400 audit(0.0:497): avc: denied { write } for name="arm" dev="mmcblk0p23" ino=14595 scontext=u:r:shell:s0 tcontext=u:object_r:dalvikcache_data_file:s0 tcl
03-13 13:32:03.707 16049 16049 E memtrack: Couldn't load memtrack module (No such file or directory)
03-13 13:32:03.707 16049 16049 E android.os.Debug: failed to load memtrack module: -2
03-13 13:32:03.712 16049 16049 I Radio-JNI: register_android_hardware_Radio DONE
03-13 13:32:03.753 16049 16049 D AndroidRuntime: Calling main entry com.android.commands.am.Am
03-13 13:32:03.749 16059 16059 W Binder_1: type=1400 audit(0.0:498): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:32:03.749 16059 16059 W Binder_1: type=1400 audit(0.0:499): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:32:03.749 16060 16060 W Binder_2: type=1400 audit(0.0:500): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:32:03.749 16060 16060 W Binder_2: type=1400 audit(0.0:501): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:32:03.761 1461 1471 D BroadcastQueue: Add broadcastBroadcastRecord{ea7ff76 u0 eu.chainfire.supersu.NativeAccess} into (background/order), now header = BroadcastRecord{ea7ff76 u0 eu.chainfire.s
03-13 13:32:03.773 1461 1474 I ActivityManager: Start proc 16061:eu.chainfire.supersu/u0a104 for broadcast eu.chainfire.supersu/.NativeAccessReceiver
03-13 13:32:03.813 16061 16061 E linker : readlink('') failed: No such file or directory [fd=17]
03-13 13:32:03.813 16061 16061 E linker : warning: unable to get realpath for the library "/data/app/eu.chainfire.supersu-1/oat/arm/base.odex". Will use given name.
03-13 13:32:03.815 16061 16061 W System : ClassLoader referenced unknown path: /data/app/eu.chainfire.supersu-1/lib/arm
03-13 13:32:04.152 1461 10941 I ActivityManager: START u0 {act=android.intent.action.MAIN flg=0x50840000 cmp=eu.chainfire.supersu/.PromptActivity (has extras)} from uid 10104 on display 0
03-13 13:32:04.152 1461 10941 D ActivityManager: DEBUG_POWER_HINT start activityh
03-13 13:32:04.169 1461 10941 V WindowManager: Pausing WindowToken AppWindowToken{551b974 token=Token{7c74d47 ActivityRecord{c585086 u0 com.wiko.launcher/com.wiko.WikoLauncher t6}}}
03-13 13:32:04.181 501 501 D gralloc.sc8830: fb_post fps = 0.728464
03-13 13:32:04.181 1461 10941 D WindowManager: Input focus has changed to null
03-13 13:32:04.182 1461 10941 D ActivityManager: startActivityUncheckedLocked return : 0
03-13 13:32:04.183 1461 1781 V BroadcastQueue: Finished with ordered broadcast BroadcastRecord{ea7ff76 u0 eu.chainfire.supersu.NativeAccess}, [background], remain = 0
03-13 13:32:04.185 16049 16049 D AndroidRuntime: Shutting down VM
03-13 13:32:04.196 1461 10940 V WindowManager: Resuming WindowToken AppWindowToken{551b974 token=Token{7c74d47 ActivityRecord{c585086 u0 com.wiko.launcher/com.wiko.WikoLauncher t6}}}
03-13 13:32:04.209 16061 16061 D AccessibilityManager: getInstance() new sInstance = [email protected], context = [email protected], userId
03-13 13:32:04.299 16061 16117 D OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
03-13 13:32:04.302 16061 16061 E linker : readlink('') failed: No such file or directory [fd=25]
03-13 13:32:04.302 16061 16061 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.sc8830.so". Will use given name.
03-13 13:32:04.308 1461 1616 V WindowManager: addWindow: New client [email protected]: window=Window{53e1a05 u0 eu.chainfire.supersu/eu.chainfire.supersu.PromptActivity} Callers=com.androi
03-13 13:32:04.329 1461 2231 D WindowManager: Input focus has changed to Window{53e1a05 u0 eu.chainfire.supersu/eu.chainfire.supersu.PromptActivity}
03-13 13:32:04.350 16061 16117 I OpenGLRenderer: Initialized EGL, version 1.4
03-13 13:32:04.421 1461 1491 I ActivityManager: Displayed eu.chainfire.supersu/.PromptActivity: +233ms
logcat extract of situation 2
Code:
03-13 13:19:41.861 13245 13245 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
03-13 13:19:41.872 13245 13245 D AndroidRuntime: CheckJNI is OFF
03-13 13:19:41.865 13245 13245 W app_process: type=1400 audit(0.0:412): avc: denied { write } for name="[email protected]@boot.art" dev="mmcblk0p23" ino=14597 scontext=u:r:shell:s0 tcontext=u:object_r:dalvikcache_data_file:s0 tclass=file permissive=0
03-13 13:19:41.879 13245 13245 W art : 707e5000-71201000 rw-p 00000000 b3:17 14597 /data/dalvik-cache/arm/[email protected]@boot.art
03-13 13:19:41.880 13245 13245 W art : b123b000-b3213000 r--p 00000000 b3:11 1176 /system/framework/arm/boot.oat
{....full callstack removed...}
03-13 13:19:41.891 13245 13245 W art : b6fd9000-b6fdb000 rw-p 0001f000 b3:11 522 /system/bin/linker
03-13 13:19:41.891 13245 13245 W art : b6fdb000-b6fdd000 rw-p 00000000 00:00 0
03-13 13:19:41.891 13245 13245 W art : b6fdd000-b6fe2000 r-xp 00000000 b3:11 398 /system/bin/app_process32
03-13 13:19:41.891 13245 13245 W art : b6fe2000-b6fe3000 r--p 00004000 b3:11 398 /system/bin/app_process32
03-13 13:19:41.891 13245 13245 W art : b6fe3000-b6fe4000 rw-p 00000000 00:00 0
03-13 13:19:41.891 13245 13245 W art : b8337000-b8369000 rw-p 00000000 00:00 0 [heap]
03-13 13:19:41.891 13245 13245 W art : beadd000-beafe000 rw-p 00000000 00:00 0 [stack]
03-13 13:19:41.891 13245 13245 W art : ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors]
03-13 13:19:41.891 13245 13245 W art :
03-13 13:19:41.952 13245 13245 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
03-13 13:19:41.955 13245 13245 W main : type=1400 audit(0.0:413): avc: denied { write } for name="arm" dev="mmcblk0p23" ino=14595 scontext=u:r:shell:s0 tcontext=u:object_r:dalvikcache_data_file:s0 tclass=dir permissive=0
03-13 13:19:42.017 13245 13245 E memtrack: Couldn't load memtrack module (No such file or directory)
03-13 13:19:42.017 13245 13245 E android.os.Debug: failed to load memtrack module: -2
03-13 13:19:42.023 13245 13245 I Radio-JNI: register_android_hardware_Radio DONE
03-13 13:19:42.067 13245 13245 D AndroidRuntime: Calling main entry com.android.commands.am.Am
03-13 13:19:42.055 13255 13255 W Binder_1: type=1400 audit(0.0:414): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:19:42.055 13255 13255 W Binder_1: type=1400 audit(0.0:415): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:19:42.055 13256 13256 W Binder_2: type=1400 audit(0.0:416): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:19:42.055 13256 13256 W Binder_2: type=1400 audit(0.0:417): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
--------- beginning of system
03-13 13:19:42.077 1461 3330 D BroadcastQueue: Add broadcastBroadcastRecord{1901c00 u0 eu.chainfire.supersu.NativeAccess} into (background/order), now header = BroadcastRecord{1901c00 u0 eu.chainfire.supersu.NativeAccess}, size = 1
03-13 13:19:42.093 1461 1474 I ActivityManager: Start proc 13257:eu.chainfire.supersu/u0a104 for broadcast eu.chainfire.supersu/.NativeAccessReceiver
03-13 13:19:42.145 13257 13257 E linker : readlink('') failed: No such file or directory [fd=17]
03-13 13:19:42.145 13257 13257 E linker : warning: unable to get realpath for the library "/data/app/eu.chainfire.supersu-1/oat/arm/base.odex". Will use given name.
03-13 13:19:42.149 13257 13257 W System : ClassLoader referenced unknown path: /data/app/eu.chainfire.supersu-1/lib/arm
03-13 13:19:42.497 1461 3692 I ActivityManager: START u0 {act=android.intent.action.MAIN flg=0x50840000 cmp=eu.chainfire.supersu/.PromptActivity (has extras)} from uid 10104 on display 0
03-13 13:19:42.497 1461 3692 D ActivityManager: DEBUG_POWER_HINT start activityh
03-13 13:19:42.504 1461 3692 V WindowManager: Pausing WindowToken AppWindowToken{551b974 token=Token{7c74d47 ActivityRecord{c585086 u0 com.wiko.launcher/com.wiko.WikoLauncher t6}}}
03-13 13:19:42.508 1461 3692 D WindowManager: Input focus has changed to null
03-13 13:19:42.509 1461 3692 D ActivityManager: startActivityUncheckedLocked return : 0
03-13 13:19:42.513 1461 2242 V BroadcastQueue: Finished with ordered broadcast BroadcastRecord{1901c00 u0 eu.chainfire.supersu.NativeAccess}, [background], remain = 0
03-13 13:19:42.506 13255 13255 W Binder_1: type=1400 audit(0.0:418): avc: denied { sys_nice } for capability=23 scontext=u:r:shell:s0 tcontext=u:r:shell:s0 tclass=capability permissive=0
03-13 13:19:42.515 13245 13245 D AndroidRuntime: Shutting down VM
Questions/Remarks
It looks like app_process (app_process32) is started in the wrong context
Any hints or tips on how to proceed ?
Reflashed stock and twrp and installed SuperSU the classic way (on /system)
Now everything works as expected

Lock screen (and other) freezes due to timeout

My Lg-g6 h872 has a problem where trying to lock the screen occasionally screws up. It will shut off the screen, but for up to 15 seconds right afterwards, it will not respond to the fingerprint scanner. I can turn the screen back on with the power button. However, half the time typing in my pin to unlock freezes the phone for a few seconds. The rest of the time I'm able to unlock without being prompted to enter my pin, but a few seconds later, the phone jumps back to the pin entry screen. (It occurs a few times a day, however I often don't unlock my phone within 15 seconds of locking it during normal usage)
Other things that freeze: Music doesn't play for up to 15 seconds after hitting the play button sometimes. The status bar and home row do not update the color of their icons/buttons for up to 15 seconds when moving to another screen with a different background color. (I've been trying to get a screenshot of the status bar error, but I'm unable to take screenshots until after the phone updates it... another symptom I guess.)
I've run adb logcat right before locking my phone, and then repeatedly pressed my finger to the scanner to try to unlock (about 2 times a second) until it finally responded. Here's the debug info I have for that:
Code:
$ adb logcat *:W
--------- beginning of main
03-03 09:03:27.870 605 678 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
03-03 09:03:29.901 16394 16394 W sh : type=1400 audit(0.0:116879): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:29.901 16394 16394 W sh : type=1400 audit(0.0:116880): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:29.945 16394 16394 W logcat : type=1400 audit(0.0:116881): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:29.945 16394 16394 W logcat : type=1400 audit(0.0:116882): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:30.417 921 1107 E LightsService: Light requested not available on this device. 2
03-03 09:03:30.917 16396 16396 W sh : type=1400 audit(0.0:116883): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:30.921 16396 16396 W sh : type=1400 audit(0.0:116884): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:30.969 16396 16396 W logcat : type=1400 audit(0.0:116885): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:03:30.973 16396 16396 W logcat : type=1400 audit(0.0:116886): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
--------- beginning of system
03-03 09:03:31.945 23726 23818 W SearchServiceCore: Abort, client detached.
03-03 09:03:32.208 606 773 E ThermalEngine: TM Id 'LCD_ON_MONITOR' Sensor 'lcd-brightness' - alarm cleared 1 at 0.0 degC
03-03 09:03:35.330 23726 23818 W ThreadPoolDumper: Queue length for executor EventBus is now 11. Perhaps some tasks are too long, or the pool is too small.
03-03 09:03:35.880 575 575 E WifiHAL : Failed to register debug response; result = -95
03-03 09:03:35.882 921 1463 E WifiVendorHal: getSupportedFeatureSet(l.891) failed {.code = ERROR_UNKNOWN, .description = errno: -95 (Unknown error -95)}
03-03 09:03:35.883 575 575 E WifiHAL : Failed to register debug response; result = -95
03-03 09:03:35.902 921 1068 E BatteryExternalStatsWorker: no controller energy info supplied for wifi
03-03 09:03:37.090 921 1097 W DreamController: Bound dream did not connect in the time allotted
03-03 09:03:43.474 622 1217 E QC-time-services: Receive Passed == base = 13, unit = 1, operation = 0, result = 0
03-03 09:03:43.479 630 646 E QC-time-services: Daemon: Time-services: Waiting to acceptconnection
03-03 09:03:43.034 921 2917 W AlarmManagerService: Unable to set rtc to 1551621823: Invalid argument
03-03 09:03:44.894 550 4014 E sound_trigger_hw: cpe_reg_sm: ERROR. pcm_is_ready failed err=cannot open device '/dev/snd/pcmC0D45c': Connection timed out
03-03 09:03:44.899 921 945 W SoundTriggerHelper: loadSoundModel call failed with -19
03-03 09:03:44.900 921 921 W zygote64: Long monitor contention with owner Binder:921_1 (945) at int com.android.server.soundtrigger.SoundTriggerHelper.startKeyphraseRecognition(int, android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel, android.hardware.soundtrigger.IRecognitionStatusCallback, android.hardware.soundtrigger.SoundTrigger$RecognitionConfig)(SoundTriggerHelper.java:171) waiters=0 in void com.android.server.soundtrigger.SoundTriggerHelper$MyCallStateListener.onCallStateChanged(int, java.lang.String) for 20.072s
03-03 09:03:44.900 23757 23757 W AlwaysOnHotwordDetector: startRecognition() failed with error code -19
03-03 09:03:44.939 921 921 W FingerprintService: client com.android.systemui is no longer authenticating
03-03 09:03:44.953 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.auth.setup.devicesignals.LockScreenReceiver
03-03 09:03:44.954 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.trustagent.UserPresentBroadcastReceiver
03-03 09:03:44.955 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
03-03 09:03:44.967 605 678 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
03-03 09:03:45.014 568 3119 E NxpTml : _i2c_write() errno : 5
03-03 09:03:45.014 568 3119 E NxpTml : PN54X - Error in I2C Write.....
03-03 09:03:45.014 568 3121 E NxpHal : write error status = 0x1ff
03-03 09:03:45.014 568 568 E NxpHal : write_unlocked failed - PN54X Maybe in Standby Mode - Retry
03-03 09:03:45.393 14759 14759 W pool-1-thread-6: type=1400 audit(0.0:116887): avc: denied { read } for name="version" dev="proc" ino=4026532359 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=0
03-03 09:03:45.518 921 921 W FingerprintService: client com.android.systemui is authenticating...
03-03 09:03:46.290 634 1121 E fpc_tac : fpc_tee_capture_image fpc_tee_wait_finger_lost status = 0
I lock my phone sometime around 03-03 09:03:29.***
It responds to my fingerprint basically right when the log file ends at 03-03 09:03:46.***
With regards to the error with the icons in the status bar not updating, here's the info I have. I start adb logcat and open an app with a different colored background right at the same time
Code:
$ adb logcat *:W
--------- beginning of main
03-03 09:17:21.861 606 773 E ThermalEngine: TM Id 'LCD_ON_MONITOR' Sensor 'lcd-brightness' - alarm raised 1 at 164.0 degC
03-03 09:17:22.189 605 678 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
03-03 09:17:23.904 921 1107 E LightsService: Light requested not available on this device. 2
03-03 09:17:24.333 16621 16621 W sh : type=1400 audit(0.0:116898): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:24.349 16621 16621 W sh : type=1400 audit(0.0:116899): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:24.401 16621 16621 W logcat : type=1400 audit(0.0:116900): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:24.405 16621 16621 W logcat : type=1400 audit(0.0:116901): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:26.153 16623 16623 W sh : type=1400 audit(0.0:116902): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:26.165 16623 16623 W sh : type=1400 audit(0.0:116903): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:26.241 16623 16623 W logcat : type=1400 audit(0.0:116904): avc: denied { getattr } for path="/system/vendor/lib/hw/camera.msm8996.so" dev="sda16" ino=74203 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:26.241 16623 16623 W logcat : type=1400 audit(0.0:116905): avc: denied { getattr } for path="/system/vendor/lib/libmmcamera_ppeiscore.so" dev="sda16" ino=74800 scontext=u:r:shell:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0
03-03 09:17:26.314 605 678 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
03-03 09:17:26.319 921 1402 E LightsService: Light requested not available on this device. 2
--------- beginning of system
03-03 09:17:26.409 550 2724 E msm8974_platform: platform_check_backends_match: Invalid snd_device =
03-03 09:17:26.436 550 2724 E voice : voice_is_in_call_rec_stream: input stream is NULL
03-03 09:17:26.436 550 2724 E audio_hw_utils: send_app_type_cfg_for_device: Could not get ctl for mixer cmd - Audio Stream Capture 42 App Type Cfg
03-03 09:17:26.436 550 2724 E voice : voice_is_in_call_rec_stream: input stream is NULL
03-03 09:17:26.436 550 2724 E ACDB-LOADER: Error: ACDB AudProc vol returned = -19
03-03 09:17:26.455 550 2724 E voice : voice_is_in_call_rec_stream: input stream is NULL
03-03 09:17:26.455 550 2724 E ACDB-LOADER: Error: ACDB_CMD_GET_AUDPROC_COMMON_TABLE_SIZE Returned = -19
03-03 09:17:26.455 550 2724 E ACDB-LOADER: Error: ACDB audproc returned = -19
03-03 09:17:26.455 550 2724 E ACDB-LOADER: Error: ACDB AudProc vol returned = -19
03-03 09:17:26.456 550 2724 E ACDB-LOADER: Error: ACDB_CMD_GET_AFE_COMMON_TABLE_SIZE Returned = -19
03-03 09:17:26.456 550 2724 E ACDB-LOADER: Error: ACDB AFE returned = -19
03-03 09:17:26.456 550 2724 E msm8974_platform: platform_get_snd_device_backend_index: BE DAI Name Table is not present
03-03 09:17:26.456 550 2724 E audio_hw_utils: send_app_type_cfg_for_device: Couldn't get the backend index for snd device speaker-protected ret=-14
03-03 09:17:26.456 550 2724 E ACDB-LOADER: Error: ACDB AudProc vol returned = -19
03-03 09:17:26.575 23726 23818 W SearchServiceCore: Abort, client detached.
03-03 09:17:26.592 14074 14074 W StaticLayout: maxLineHeight should not be -1. maxLines:1 lineCount:1
03-03 09:17:26.622 14074 14074 W StaticLayout: maxLineHeight should not be -1. maxLines:1 lineCount:1
03-03 09:17:26.628 575 575 E WifiHAL : Failed to register debug response; result = -95
03-03 09:17:26.629 921 1463 E WifiVendorHal: getSupportedFeatureSet(l.891) failed {.code = ERROR_UNKNOWN, .description = errno: -95 (Unknown error -95)}
03-03 09:17:26.629 575 575 E WifiHAL : Failed to register debug response; result = -95
03-03 09:17:26.651 1760 1821 W ResourceType: ResTable_typeSpec entry count inconsistent: given 20, previously 27
03-03 09:17:26.652 921 1068 E BatteryExternalStatsWorker: no controller energy info supplied for wifi
03-03 09:17:27.059 14074 14082 W oad : Uh oh! An open ClosingFuture has leaked and will close: {0}
03-03 09:17:27.062 14074 14082 W oad : Uh oh! An open ClosingFuture has leaked and will close: {0}
03-03 09:17:27.341 23726 23818 W ThreadPoolDumper: Queue length for executor EventBus is now 11. Perhaps some tasks are too long, or the pool is too small.
03-03 09:17:28.600 921 1053 W BroadcastQueue: Timeout of broadcast BroadcastRecord{58ce2b7 u-1 android.intent.action.TIME_TICK} - [email protected]b13e2bf, started 10002ms ago
03-03 09:17:28.601 921 1053 W BroadcastQueue: Receiver during timeout of BroadcastRecord{58ce2b7 u-1 android.intent.action.TIME_TICK} : BroadcastFilter{48fcd5 u0 ReceiverList{547ed8c 921 system/1000/u0 local:b13e2bf}}
03-03 09:17:34.843 921 1107 E LightsService: Light requested not available on this device. 2
# Icons still haven't updated at this point
03-03 09:17:37.060 14074 14108 E TraceManagerImpl: Trace Intenting into HomeActivity timed out after 3167036 ms. Complete trace: # [email protected]
03-03 09:17:37.060 14074 14111 E TraceManagerImpl: Trace SyncFirebaseRootTrace timed out after 3164221 ms. Complete trace: # [email protected]
03-03 09:17:37.389 550 4011 E sound_trigger_hw: cpe_reg_sm: ERROR. pcm_is_ready failed err=cannot open device '/dev/snd/pcmC0D45c': Connection timed out
03-03 09:17:37.393 921 946 W SoundTriggerHelper: loadSoundModel call failed with -19
03-03 09:17:37.395 23757 23757 W AlwaysOnHotwordDetector: startRecognition() failed with error code -19
03-03 09:17:37.396 921 921 W zygote64: Long monitor contention with owner Binder:921_2 (946) at int com.android.server.soundtrigger.SoundTriggerHelper.startKeyphraseRecognition(int, android.hardware.soundtrigger.SoundTrigger$KeyphraseSoundModel, android.hardware.soundtrigger.IRecognitionStatusCallback, android.hardware.soundtrigger.SoundTrigger$RecognitionConfig)(SoundTriggerHelper.java:171) waiters=0 in void com.android.server.soundtrigger.SoundTriggerHelper$MyCallStateListener.onCallStateChanged(int, java.lang.String) for 20.062s
03-03 09:17:37.483 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.auth.setup.devicesignals.LockScreenReceiver
03-03 09:17:37.502 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.trustagent.UserPresentBroadcastReceiver
03-03 09:17:37.503 921 1053 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
# Icons have updated to be the proper color.
Please note, I put comments in there starting with '#' to show when things update properly.
It seems to me that the line
Code:
03-03 09:17:37.389 550 4011 E sound_trigger_hw: cpe_reg_sm: ERROR. pcm_is_ready failed err=cannot open device '/dev/snd/pcmC0D45c': Connection timed out
is common between both errors.
A few notes about my phone:
Lg-g6 h872
LineageOS 15.1 (android version 8.1.0)
Rooted via this guide (Meaning it has the laf partition from the H918 10p KDZ)
I still have all these problems when I switch to the stock rom from here so lineageOS doesn't seem to be the problem
My original motherboard was bricked in a failed rooting attempt. I bought a smashed up phone off ebay to pull the MoBo from, and that's what I'm using. I've inspected the PCB for physical damage, but I found nothing.
Let me know if there's any additional information I can provide. Thanks in advance for any help you can give.
It's weird, but disabling the google app seems to have fixed this for me. Loooool

Categories

Resources