Feedback app stopped working? (Outlook Ringtone Crash) - Xiaomi Mi A2 Lite Questions & Answers

Hi,
I found a crash in the system and tried to report it via the Feedback app. The report could not be uploaded. I cleared data on the feedback app and now I can't login.
Does anyone know if this is a temporary thing or if the Feedback app has been disabled for us?
The crash may be relevant to some people here so here it is...
Outlook sets a default sound for notifications. But you can't change this when running Android 10 because of a crash in the RingtonePicker (failing to parse the URI). This worked in Android 9, and a fix is already made, but I guess because Xiaomi only pulls in security fixes, we haven't got this.
09-11 14:28:27.658 17944 17944 E AndroidRuntime: Caused by: java.lang.NumberFormatException: For input string: "calendar_reminder"
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:594)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:636)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.content.ContentUris.parseId(ContentUris.java:89)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.media.RingtoneManager.getRingtonePosition(RingtoneManager.java:516)
Needs this commit from platform/frameworks/base (not in android10-release but in android10-sidebranch)
commit fb3973a917d9e6a1a81928296fa4cce034b76b75
Author: Scott Warner <[email protected]>
Date: Fri Jan 31 10:44:32 2020 -0500
RingtoneManager: Don't crash if the ringtone doesn't have a numerical ID
If you've got root, you can edit /data/system/notification_policy.xml. I changed the sound property to this (which is valid on my phone). The main thing is that this URI ends in a number (compared to the Outlook default).
<channel id="v2.EVENT_REMINDER:account_32768" name="Event reminders" importance="3" sound="content://media/external/audio/media/50008?title=ping&canonical=1" ...
After editing, I had to reboot the phone because something was caching the file and opening the settings would overwrite my change.

a1291762 said:
Hi,
I found a crash in the system and tried to report it via the Feedback app. The report could not be uploaded. I cleared data on the feedback app and now I can't login.
Does anyone know if this is a temporary thing or if the Feedback app has been disabled for us?
The crash may be relevant to some people here so here it is...
Outlook sets a default sound for notifications. But you can't change this when running Android 10 because of a crash in the RingtonePicker (failing to parse the URI). This worked in Android 9, and a fix is already made, but I guess because Xiaomi only pulls in security fixes, we haven't got this.
09-11 14:28:27.658 17944 17944 E AndroidRuntime: Caused by: java.lang.NumberFormatException: For input string: "calendar_reminder"
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:594)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at java.lang.Long.parseLong(Long.java:636)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.content.ContentUris.parseId(ContentUris.java:89)
09-11 14:28:27.658 17944 17944 E AndroidRuntime:******* at android.media.RingtoneManager.getRingtonePosition(RingtoneManager.java:516)
Needs this commit from platform/frameworks/base (not in android10-release but in android10-sidebranch)
commit fb3973a917d9e6a1a81928296fa4cce034b76b75
Author: Scott Warner <[email protected]>
Date: Fri Jan 31 10:44:32 2020 -0500
RingtoneManager: Don't crash if the ringtone doesn't have a numerical ID
If you've got root, you can edit /data/system/notification_policy.xml. I changed the sound property to this (which is valid on my phone). The main thing is that this URI ends in a number (compared to the Outlook default).
<channel id="v2.EVENT_REMINDER:account_32768" name="Event reminders" importance="3" sound="content://media/external/audio/media/50008?title=ping&canonical=1" ...
After editing, I had to reboot the phone because something was caching the file and opening the settings would overwrite my change.
Click to expand...
Click to collapse
Facing same issue ?

Related

ICS reboots due to 4g/WiMax

I've noticed that multiple people, including myself, have had multiple issues with random reboots on various ICS roms. Well it was driving me crazy, so I decided to catch it in the act. Please see this from my logcat:
Code:
04-18 17:04:36.799 E AlarmManagerService: android_server_AlarmManagerService_set to type=2, 115438.634000000
04-18 17:04:36.799 V AlarmManager: trigger WAKEUP Alarm{41c5fcd8 type 2 android}
04-18 17:04:36.809 W dalvikvm: threadid=13: thread exiting with uncaught exception (group=0x40c231f8)
04-18 17:04:36.809 E android.os.Debug: [email protected] > dumpstate -k -t -n -z -d -o /data/log/dumpstate_sys_error
04-18 17:04:36.809 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: android.server.ServerThread
04-18 17:04:36.809 E AndroidRuntime: java.lang.NoSuchMethodError: com.android.server.WimaxService.access$1002
04-18 17:04:36.809 E AndroidRuntime: at com.android.server.WimaxService$4.onReceive(WimaxService.java:1150)
04-18 17:04:36.809 E AndroidRuntime: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:728)
04-18 17:04:36.809 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:605)
04-18 17:04:36.809 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:92)
04-18 17:04:36.809 E AndroidRuntime: at android.os.Looper.loop(Looper.java:137)
04-18 17:04:36.809 E AndroidRuntime: at com.android.server.ServerThread.run(SystemServer.java:986)
04-18 17:04:36.834 I dumpstate: Check if stand-alone
04-18 17:04:36.859 I dumpstate: begin
I went back through several saved logcats after these reboots, and the signature looks the same. It looks to me as if the WiMax service (WimaxService.java) is calling an invalid method (com.android.server.WimaxService.access$1002), and causing android server to crash with a FATAL exception.
Now, I'm not a programmer, but does anyone have any ideas on how we can investigate the code and see if we can make a workaround? Thoughts anyone? I'll keep at this.
I'm not a program either, but I know Team Nocturnal had this same issue on a couple of their ROMs and Mijjah was working on it. Not sure if he has any logs of it happening.
I do know he's working on an AOKP rom as well, which I'm using, and I haven't had the issue yet.
Maybe post this in the dev thread of the rom you are using. I think we can all benefit from this Im sick of my phone rebooting while using 4g!!

Help! App Updates has stopped. LogCat attached.

Hi,
When I am in update center and click "app updates" it force closes. Clicking software update works though.
Just wondering why this is happening and if I can fix it. I have removed some of the bloatware from the stock rom, but the update center apk is still where it should be. Thought it might have been xposed causing it but turned it off and still no go.
Here is my logcat. Running stock, rooted. Thanks a lot!!!
09-11 20:59:00.002 D/PowerManagerServiceEx(991): acquireWakeLockInternal: lock=480311568, flags=0x40000001, tag="*alarm*", ws=WorkSource{1000}, historyTag=*alarm*:android.intent.action.TIME_TICK, uid=1000, pid=991
09-11 20:59:00.031 D/PowerManagerServiceEx(991): releaseWakeLockInternal: lock=480311568 [*alarm*], flags=0x0
09-11 20:59:00.035 I/[SystemUI]TimeTickManager(2025): setTimeTickHandler, called onTimeChanged()
09-11 20:59:00.035 I/KeyguardUpdateMonitor(2025): called onTimeUpdated()
09-11 20:59:00.035 I/[SystemUI]KeyguardIndicationController(2025): called onTimeUpdated()
09-11 20:59:00.035 I/[SystemUI]Clock(2025): called onTimeUpdated()
09-11 20:59:00.039 I/LgeClockWidgetControlView(2025): called onTimeUpdated()
09-11 20:59:00.039 I/[SystemUI]DateView(2025): called onTimeUpdated()
09-11 20:59:00.040 I/[SystemUI]DateView(2025): called onTimeUpdated()
09-11 20:59:00.040 D/KeyguardUpdateMonitor(2025): handleTimeUpdate
09-11 20:59:01.232 D/InputDispatcher(991): notifyMotion - action=ACTION_DOWN, eventTime=586158702000, downTime=586158702000
09-11 20:59:01.235 D/InputTransport(991): channel '1064ef63 com.lge.updatecenter/com.lge.updatecenter.UpdateCenterPrfActivity (server)' : action=ACTION_DOWN, downTime=586158702000, eventTime=586158702000, pointerCount=1
09-11 20:59:01.235 I/ViewRootImpl(8765): ViewRoot's Touch Event : ACTION_DOWN
09-11 20:59:01.236 D/InputTransport(991): channel 'WindowManager (server)' : action=ACTION_DOWN, downTime=586158702000, eventTime=586158702000, pointerCount=1
09-11 20:59:01.237 E/GBMv2 (357): Set value is all cleared set the max
09-11 20:59:01.237 I/GBMv2 (357): VFP is [12]
09-11 20:59:01.237 D/PowerManagerServiceEx(991): updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=613911 (in 27747 ms)
09-11 20:59:01.310 D/InputDispatcher(991): notifyMotion - action=ACTION_UP, eventTime=586237001000, downTime=586158702000
09-11 20:59:01.310 D/InputTransport(991): channel '1064ef63 com.lge.updatecenter/com.lge.updatecenter.UpdateCenterPrfActivity (server)' : action=ACTION_UP, downTime=586158702000, eventTime=586237001000, pointerCount=1
09-11 20:59:01.310 D/InputTransport(991): channel 'WindowManager (server)' : action=ACTION_UP, downTime=586158702000, eventTime=586237001000, pointerCount=1
09-11 20:59:01.311 I/ViewRootImpl(8765): ViewRoot's Touch Event : ACTION_UP
09-11 20:59:01.376 D/UpdateCenter:UpdateCenterListFragment(8765): ****onListItemClick****
09-11 20:59:01.377 D/UpdateCenter:UpdateCenterListFragment(8765): ****isSystemPackageInfo****
09-11 20:59:01.378 I/Timeline(8765): Timeline: Activity_launch_request id:com.lge.appbox.client time:586304
09-11 20:59:01.378 I/ActivityManager(991): START u0 {act=android.intent.action.MAIN cmp=com.lge.appbox.client/.AppBoxClient} from uid 10040 on display 0
09-11 20:59:01.383 V/SplitWindowPolicy(2528): checkScreen => return. sourceIntent is null or not support SplitWindow component: ComponentInfo{co.....client/co.....client.AppBoxClient}
09-11 20:59:01.383 D/SplitInfo(991): new ActivitySplitInfo : ActivitySplitInfo [screenZone=0/ flag=0x0/ state=NATIVE]
09-11 20:59:01.384 D/ActivityManager(991): setTaskToReturnTo : TaskRecord{13ba98d5 #4527 A=com.lge.appbox.client U=0 sz=0} / mTaskToReturnTo = 0
09-11 20:59:01.385 D/WindowStateEx(991): AppWindowTokenEx init..
09-11 20:59:01.386 D/ContextHelper(991): convertTheme. context->name=com.lge.appbox.client themeResourceId=34210242
09-11 20:59:01.388 I/PhoneWindow(991): [generateLayout] setColorNavigationBar => color=0x ff000001
09-11 20:59:01.397 D/PhoneWindowEx(991): [PWEx][generateLayout] setNavigationBarColor2 : colors=0xff000000
09-11 20:59:01.397 I/PhoneWindow(991): [setNavigationBarColor2] color=0x ff000000
09-11 20:59:01.406 D/SplitWindow(991): check instance of lgWin Window{2111e9b6 u0 Starting com.lge.appbox.client}
09-11 20:59:01.425 D/SplitWindowPolicy(2528): updateActivityStateChanged: resumed=false, screenId=1, isScreenFull=true
09-11 20:59:01.425 D/SplitWindowPolicy(2528): topRunningActivity=ActivityInfo{37a1d43e co.....UpdateCenterPrfActivity}, taskId=4520, activityType=0, bIsSplit=false
09-11 20:59:01.472 D/InputDispatcher(991): Focus left window: Window{1064ef63 u0 com.lge.updatecenter/com.lge.updatecenter.UpdateCenterPrfActivity}
09-11 20:59:01.476 D/UpdateCenter:UpdateCenterListFragment(8765): ****prfListAdapter : getView****
09-11 20:59:01.476 D/UpdateCenter:UpdateCenterListFragment(8765): 0:App Updates
09-11 20:59:01.477 D/UpdateCenter:UpdateCenterListFragment(8765): ****prfListAdapter : getView****
09-11 20:59:01.477 D/UpdateCenter:UpdateCenterListFragment(8765): 1:Software Update
09-11 20:59:01.534 I/ActivityManager(991): Start proc com.lge.appbox.client for activity com.lge.appbox.client/.AppBoxClient: pid=8868 uid=10011 gids={50011, 9997, 3003, 1028, 1015, 2001} abi=armeabi
09-11 20:59:01.604 I/WindowStateAnimator(991): Starting window displayed
09-11 20:59:01.624 I/SystemUI[Framework](991): PhoneWindowManager.updateSystemUiVisibilityLw() :visibility=0x8600, pkg=com.lge.appbox.client
09-11 20:59:01.625 W/PhoneWindowManagerEx(991): Call!!!getLGSystemUiVisibility. =0x0
09-11 20:59:01.625 D/StatusBarManagerServiceEx(991): setLGSystemUiVisibility(0x0)
09-11 20:59:01.625 D/StatusBarManagerServiceEx(991): manageNaviBtnDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams
09-11 20:59:01.625 I/SystemUI[Framework](991): ==>disabledNaviBtn() what=0x0, [email protected], pkg=WindowManager.LayoutParams
09-11 20:59:01.625 I/SystemUI[Framework](991): disableNaviBtn: mDisabledNaviBtn=0x0, mDisableRecords.size=0
09-11 20:59:01.634 D/OpenGLRenderer(8765): endAllStagingAnimators on 0x9c8f9b00 (ListView) with handle 0xa9bf7ab0
09-11 20:59:01.651 D/SplitWindowPolicy(2528): updateActivityStateChanged: resumed=true, screenId=1, isScreenFull=true
09-11 20:59:01.651 D/SplitWindowPolicy(2528): topRunningActivity=ActivityInfo{2486729f co.....client.AppBoxClient}, taskId=4527, activityType=0, bIsSplit=false
09-11 20:59:01.718 I/AppUp4:AppBoxCP(8868): onCreate
09-11 20:59:01.719 W/AppUp4B(8868): [AppBoxDatabaseHelper] construct
09-11 20:59:01.732 I/AppUp4B(8868): setFingerPrint start
09-11 20:59:01.733 I/AppUp4B(8868): newfinger = lge/g3_bell_ca/g3:5.0.1/LRX21Y/150351852d88d:user/release-keys SDK version = 21
09-11 20:59:01.741 I/AppUp4B(8868): beforefinger = lge/g3_bell_ca/g3:5.0.1/LRX21Y/150351852d88d:user/release-keys
09-11 20:59:01.741 I/AppUp4B(8868): SDK version = 21
09-11 20:59:01.741 I/AppUp4B(8868): beforefinger == newfinger no write in DB
09-11 20:59:01.743 D/AppUp4:AppBoxApplication(8868): AppBoxApplication onCreate()
09-11 20:59:01.751 D/ContextHelper(8868): convertTheme. context->name=com.lge.appbox.client themeResourceId=34210242
09-11 20:59:01.753 V/AppUp4:AppBoxClient (8868): onCreate
09-11 20:59:01.757 I/AppUp4 (8868): +isLinkedUser : false
09-11 20:59:01.761 I/PhoneWindow(8868): [generateLayout] setColorNavigationBar => color=0x ff000001
09-11 20:59:01.771 D/PhoneWindowEx(8868): [PWEx][generateLayout] setNavigationBarColor2 : colors=0xff000000
09-11 20:59:01.771 I/PhoneWindow(8868): [setNavigationBarColor2] color=0x ff000000
09-11 20:59:01.771 I/ToolbarWidgetWrapper(8868): Progress display unsupported
09-11 20:59:01.788 E/PhoneWindow(8868): Circular progress bar not located in current window decor
09-11 20:59:01.789 I/AppUp4:MemoryCache(8868): MemoryCache will use up to 89.59999942779541MB
09-11 20:59:01.789 D/AppUp4:ImageLoader(8868): [ImageLoader] init with scale : 192 / context : [email protected]
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): NameNotFoundException in isEulaForKitkat...
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): android.content.pm.PackageManager$NameNotFoundException: com.lge.eula
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ApplicationPackageManager.getPackageInfo(ApplicationPackageManager.java:114)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.compareEulaVersion(EulaManager.java:86)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.isEulaUI4_2Version(EulaManager.java:50)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.getEulaAgreement(EulaManager.java:66)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.initWithDeviceEulaInfo(EulaManager.java:54)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.lge.appbox.client.AppBoxClient.onCreate(AppBoxClient.java:302)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.Activity.performCreate(Activity.java:6020)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2259)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2368)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.access$800(ActivityThread.java:149)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1284)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.os.Handler.dispatchMessage(Handler.java:102)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.os.Looper.loop(Looper.java:135)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.main(ActivityThread.java:5299)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at java.lang.reflect.Method.invoke(Native Method)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at java.lang.reflect.Method.invoke(Method.java:372)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:908)
09-11 20:59:01.795 E/AppUp4:EulaManager(8868): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)
09-11 20:59:01.796 E/ActivityThread(8868): Failed to find provider info for com.lge.eula.contentprovider
09-11 20:59:01.796 I/AppUp4:EulaManager(8868): getAgreementForKK : Eula agreement is false
09-11 20:59:01.799 V/AppUp4:AppBoxClient (8868): [clearFrgmentBackStack]***** onCreate back stack entryCount before : 0
09-11 20:59:01.800 V/AppUp4:AppBoxClient (8868): onStart with entryCount : 0
09-11 20:59:01.800 V/AppUp4:AppBoxClient (8868): onStart with mCurrentFragment : null
09-11 20:59:01.800 V/AppUp4:AppBoxClient (8868): onStart without mSelectedPackageName
09-11 20:59:01.803 V/AppUp4:AppBoxClient (8868): [onCreate] EULA not accepted and request EULA page
09-11 20:59:01.803 I/AppUp4:EulaManager(8868): [Activity] requestEulaPage.
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): NameNotFoundException in isEulaForKitkat...
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): android.content.pm.PackageManager$NameNotFoundException: com.lge.eula
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ApplicationPackageManager.getPackageInfo(ApplicationPackageManager.java:114)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.compareEulaVersion(EulaManager.java:86)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.isEulaUI4_2Version(EulaManager.java:50)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.lge.appbox.manager.EulaManager.showEULA(EulaManager.java:189)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.lge.appbox.client.AppBoxClient.onCreate(AppBoxClient.java:317)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.Activity.performCreate(Activity.java:6020)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2259)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2368)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.access$800(ActivityThread.java:149)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1284)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.os.Handler.dispatchMessage(Handler.java:102)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.os.Looper.loop(Looper.java:135)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at android.app.ActivityThread.main(ActivityThread.java:5299)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at java.lang.reflect.Method.invoke(Native Method)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at java.lang.reflect.Method.invoke(Method.java:372)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:908)
09-11 20:59:01.804 E/AppUp4:EulaManager(8868): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)
09-11 20:59:01.805 I/Timeline(8868): Timeline: Activity_launch_request id:com.lge.eula time:586731
09-11 20:59:01.805 I/ActivityManager(991): START u0 {cmp=com.lge.eula/.UnifiedEula (has extras)} from uid 10011 on display 0
09-11 20:59:01.806 D/AndroidRuntime(8868): Shutting down VM
09-11 20:59:01.806 E/AndroidRuntime(8868): FATAL EXCEPTION: main
09-11 20:59:01.806 E/AndroidRuntime(8868): Process: com.lge.appbox.client, PID: 8868
09-11 20:59:01.806 E/AndroidRuntime(8868): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.lge.appbox.client/com.lge.appbox.client.AppBoxClient}: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.lge.eula/com.lge.eula.UnifiedEula}; have you declared this activity in your AndroidManifest.xml?
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2306)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2368)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread.access$800(ActivityThread.java:149)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1284)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.os.Handler.dispatchMessage(Handler.java:102)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.os.Looper.loop(Looper.java:135)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread.main(ActivityThread.java:5299)
09-11 20:59:01.806 E/AndroidRuntime(8868): at java.lang.reflect.Method.invoke(Native Method)
09-11 20:59:01.806 E/AndroidRuntime(8868): at java.lang.reflect.Method.invoke(Method.java:372)
09-11 20:59:01.806 E/AndroidRuntime(8868): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:908)
09-11 20:59:01.806 E/AndroidRuntime(8868): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)
09-11 20:59:01.806 E/AndroidRuntime(8868): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.lge.eula/com.lge.eula.UnifiedEula}; have you declared this activity in your AndroidManifest.xml?
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1761)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1485)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Activity.startActivityForResult(Activity.java:3823)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Activity.startActivityForResult(Activity.java:3784)
09-11 20:59:01.806 E/AndroidRuntime(8868): at com.lge.appbox.manager.EulaManager.showEULA(EulaManager.java:196)
09-11 20:59:01.806 E/AndroidRuntime(8868): at com.lge.appbox.client.AppBoxClient.onCreate(AppBoxClient.java:317)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Activity.performCreate(Activity.java:6020)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
09-11 20:59:01.806 E/AndroidRuntime(8868): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2259)
09-11 20:59:01.806 E/AndroidRuntime(8868): ... 10 more
09-11 20:59:01.808 W/ActivityManager(991): Force finishing activity com.lge.appbox.client/.AppBoxClient
09-11 20:59:02.113 I/WindowManager(991): Screenshot max retries 4 of Token{c1ee7db ActivityRecord{ac228ea u0 com.lge.appbox.client/.AppBoxClient t4527 f}} appWin=Window{2111e9b6 u0 Starting com.lge.appbox.client} drawState=4
09-11 20:59:02.114 E/ActivityManager(991): Invalid thumbnail dimensions: 768x768
09-11 20:59:02.116 W/ActivityManager(991): Force finishing activity com.lge.updatecenter/.UpdateCenterPrfActivity
09-11 20:59:02.123 D/SplitWindowPolicy(2528): updateActivityStateChanged: resumed=false, screenId=1, isScreenFull=true
09-11 20:59:02.124 D/SplitWindowPolicy(2528): topRunningActivity=ActivityInfo{a256fec co.....client.AppBoxClient}, taskId=4527, activityType=0, bIsSplit=false
09-11 20:59:02.140 I/PhoneWindow(991): [generateLayout] setColorNavigationBar => color=0x ff000001
09-11 20:59:02.142 D/PhoneWindowEx(991): [PWEx][generateLayout] setNavigationBarColor2 : colors=0xff000000
09-11 20:59:02.142 I/PhoneWindow(991): [setNavigationBarColor2] color=0x ff000000
09-11 20:59:02.154 I/Adreno-EGL(991): <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: ()
09-11 20:59:02.154 I/Adreno-EGL(991): OpenGL ES Shader Compiler Version: E031.25.03.00
09-11 20:59:02.154 I/Adreno-EGL(991): Build Date: 12/24/14 Wed
09-11 20:59:02.154 I/Adreno-EGL(991): Local Branch: LA.BF.1.1.1_RB1_AU001_20141224_1077123
09-11 20:59:02.154 I/Adreno-EGL(991): Remote Branch:
09-11 20:59:02.154 I/Adreno-EGL(991): Local Patches:
09-11 20:59:02.154 I/Adreno-EGL(991): Reconstruct Branch:
09-11 20:59:02.154 I/OpenGLRenderer(991): Initialized EGL, version 1.4
09-11 20:59:02.161 D/SplitWindow(991): check instance of lgWin Window{188a73fd u0 Application Error: com.lge.appbox.client}
09-11 20:59:02.162 D/WindowManager(991): [PWM]2.notifyNavigationBarColor => Color.TRANSPARENT
09-11 20:59:02.163 I/[SystemUI]NavigationThemeResource(2025): notify navigation bar color(0x0)
09-11 20:59:02.163 I/[SystemUI]NavigationThemeResource(2025): NavigationKey Color is changed(WHITE -> WHITE_WITH_SHADOW)
09-11 20:59:02.163 I/[SystemUI]NavigationThemeResource(2025): BarMode=4, Theme=BLACK, LightBackground=false (Transparent)
09-11 20:59:02.163 I/[SystemUI]NavigationThemeResource(2025): , Keyguard show=false, IME shown=false, Panel expanded=false
09-11 20:59:02.165 I/SystemUI[Framework](991): PhoneWindowManager.updateSystemUiVisibilityLw() :visibility=0x8000, pkg=android
09-11 20:59:02.166 D/PhoneStatusBar(2025): setSystemUiVisibility vis=8000 mask=ffffffff oldVal=8600 newVal=8000 diff=600
09-11 20:59:02.166 W/PhoneWindowManagerEx(991): Call!!!getLGSystemUiVisibility. =0x0
09-11 20:59:02.166 D/StatusBarManagerServiceEx(991): setLGSystemUiVisibility(0x0)
09-11 20:59:02.168 D/StatusBarManagerServiceEx(991): manageNaviBtnDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams
09-11 20:59:02.168 I/SystemUI[Framework](991): ==>disabledNaviBtn() what=0x0, [email protected], pkg=WindowManager.LayoutParams
09-11 20:59:02.168 I/SystemUI[Framework](991): disableNaviBtn: mDisabledNaviBtn=0x0, mDisableRecords.size=0
09-11 20:59:02.173 D/InputDispatcher(991): Focus entered window: Window{188a73fd u0 Application Error: com.lge.appbox.client}
09-11 20:59:02.617 W/ActivityManager(991): Activity pause timeout for ActivityRecord{ac228ea u0 com.lge.appbox.client/.AppBoxClient t4527 f}
09-11 20:59:02.665 I/NotificationManager(991): android: cancel(1000) by android
09-11 20:59:02.685 D/SplitWindowPolicy(2528): updateActivityStateChanged: resumed=true, screenId=1, isScreenFull=true
09-11 20:59:02.686 D/SplitWindowPolicy(2528): topRunningActivity=ActivityInfo{3692bfb5 co.....SubSettings}, taskId=4520, activityType=0, bIsSplit=false
09-11 20:59:02.709 D/kjo (5897): registerReceiver
09-11 20:59:02.709 D/aboutphone # DeviceInfoLge(5897): onResume()
09-11 20:59:02.710 D/Utils (5897): value : 1435420529135, N
09-11 20:59:02.710 D/aboutphone # DeviceInfoLge(5897): isLogInfomationOn -> unchecked
09-11 20:59:02.765 W/Utils (5897): checkPackage() : package is not found(com.kddi.android.au_setting_menu)
09-11 20:59:02.765 I/Settings(5897): Remove au settings category
09-11 20:59:02.766 W/Utils (5897): checkPackage() : package is not found(com.kddi.android.au_setting_menu)
09-11 20:59:02.766 I/Settings(5897): Remove au settings menj
09-11 20:59:02.774 I/Settings : (5897): Settings.java[1464] : not supported the use 4g network
09-11 20:59:02.776 D/hkk (5897): [checkRcsDB] operator : BELL
09-11 20:59:02.776 D/hkk (5897): [checkRcsDB] country : CA
09-11 20:59:02.776 D/hkk (5897): [checkRcsDB] rcs_working : null
09-11 20:59:02.777 E/ActivityThread(5897): Failed to find provider info for com.lge.ims.provisioning
09-11 20:59:02.777 D/kimyow (5897): CONTENT_URIcontent://com.lge.ims.provisioning/workings
09-11 20:59:02.778 E/ActivityThread(5897): Failed to find provider info for com.lge.ims.rcs
09-11 20:59:02.778 D/kimyow (5897): CONTENT_URI_BBcontent://com.lge.ims.rcs/device
09-11 20:59:02.778 D/kimyow (5897): R.id.rcs_setting : objCursor==null
09-11 20:59:02.781 W/System.err(5897): Removed 2131691063
09-11 20:59:02.789 W/Utils (5897): checkPackage() : package is not found(com.skt.taction)
09-11 20:59:02.795 I/displaysizeinfo(5897): width :2.677167
09-11 20:59:02.795 I/displaysizeinfo(5897): height :4.724415
09-11 20:59:02.796 I/displaysizeinfo(5897): displaysize :29.487318
09-11 20:59:02.796 I/displaysizeinfo(5897): lcdsize :5.430222650954603
09-11 20:59:02.797 W/Utils (5897): checkPackage() : package is not found(com.skt.t_smart_charge)
09-11 20:59:02.798 W/Utils (5897): checkPackage() : package is not found(com.lge.springcleaning)
09-11 20:59:02.805 D/Settings(5897): mPhone.getPhoneType() = 1
09-11 20:59:02.805 D/Settings(5897): mPhone.isSmsCapable() = true
09-11 20:59:02.805 D/Settings(5897): isSMSsupported = true
09-11 20:59:02.810 D/Utils (5897): FEATURE_NFC_HOST_CARD_EMULATION = true
09-11 20:59:02.811 D/Utils (5897): else remove tap&pay
09-11 20:59:02.811 I/Settings(5897): Remove tap&pay
09-11 20:59:02.812 W/System.err(5897): Removed 2131691088
09-11 20:59:02.813 W/Utils (5897): checkPackage() : package is not found(jp.co.yahoo.android.ybox)
09-11 20:59:02.815 W/System.err(5897): java.lang.NoSuchFieldException: CAPP_MYFOLDER
09-11 20:59:02.816 W/System.err(5897): at java.lang.Class.getField(Class.java:1048)
09-11 20:59:02.816 W/System.err(5897): at com.android.settings.Utils.isSupportMyRoom(Utils.java:2966)
09-11 20:59:02.816 W/System.err(5897): at com.android.settings.Settings.updateHeaderList(Settings.java:1683)
09-11 20:59:02.816 W/System.err(5897): at com.android.settings.Settings.onBuildHeaders(Settings.java:1364)
09-11 20:59:02.816 W/System.err(5897): at android.preference.PreferenceActivity$1.handleMessage(PreferenceActivity.java:235)
09-11 20:59:02.816 W/System.err(5897): at android.os.Handler.dispatchMessage(Handler.java:102)
09-11 20:59:02.816 W/System.err(5897): at android.os.Looper.loop(Looper.java:135)
09-11 20:59:02.816 W/System.err(5897): at android.app.ActivityThread.main(ActivityThread.java:5299)
09-11 20:59:02.816 W/System.err(5897): at java.lang.reflect.Method.invoke(Native Method)
09-11 20:59:02.816 W/System.err(5897): at java.lang.reflect.Method.invoke(Method.java:372)
09-11 20:59:02.816 W/System.err(5897): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:908)
09-11 20:59:02.816 W/System.err(5897): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)
09-11 20:59:02.827 D/Utils (5897): guestModeEnable: true
09-11 20:59:02.831 I/Settings(5897): Remove native accessibility
09-11 20:59:02.835 W/Utils (5897): checkPackage() : package is not found(com.lge.carhome)
09-11 20:59:02.835 W/Utils (5897): checkPackage() : package is not found(com.lge.tangible)
09-11 20:59:02.838 W/Utils (5897): checkPackage() : package is not found(com.lge.tangible)
09-11 20:59:02.840 W/Utils (5897): checkPackage() : package is not found(com.lge.carhome)
09-11 20:59:02.841 D/YSY (5897): QuickCircle case
09-11 20:59:02.841 D/development(5897): mHideDev = false
09-11 20:59:02.841 D/development(5897): showDev = true
09-11 20:59:02.844 D/aboutphone(5897): about_settings, removed !
09-11 20:59:02.845 D/aboutphone(5897): system_update_settings, removed !
09-11 20:59:02.845 W/Utils (5897): checkPackage() : package is not found(com.innopath.activecare)
09-11 20:59:02.845 D/aboutphone(5897): com.innopath.activecare checkPackage = false, removed !
09-11 20:59:02.846 D/aboutphone(5897): isUI_4_1_model = true, removed !
09-11 20:59:02.846 D/aboutphone(5897): system_update_settings, removed !
09-11 20:59:02.868 I/Timeline(5897): Timeline: Activity_idle id: [email protected] time:587795
09-11 20:59:02.941 D/InputDispatcher(991): Window went away: Window{1064ef63 u0 com.lge.updatecenter/com.lge.updatecenter.UpdateCenterPrfActivity}
09-11 20:59:02.996 I/Timeline(991): Timeline: Activity_windows_visible id: ActivityRecord{2ed7eeb1 u0 com.android.settings/.SubSettings t4520} time:587923
09-11 20:59:04.102 E/GBMv2 (357): DFP En is all cleared set to be enabled
09-11 20:59:04.102 E/GBMv2 (357): Set value is all cleared set the max
09-11 20:59:04.102 I/GBMv2 (357): DFP Enabled. Ignore VFP set
09-11 20:59:06.396 V/sensors_hal_Light(991): processReportInd: e0000 14.000000
09-11 20:59:12.882 W/ActivityManager(991): Activity destroy timeout for ActivityRecord{ac228ea u0 com.lge.appbox.client/.AppBoxClient t4527 f}
09-11 20:59:16.384 D/TaskPersister(991): removeObsoleteFile: deleting file=4527_task.xml
Click to expand...
Click to collapse

com.android.phone crashes - anyone have source code for mediatek telephony apk?

I have a Q7 (LM-Q610YM) which crashes whenever I put a SIM in it. Boots fine without a SIM, but as soon as it connects to the network the com.android.phone process crashes. I have never rooted the phone, and have tried a full factory reset.
The top of the stack trace in the logcat is:
Code:
--------- beginning of crash
E AndroidRuntime: FATAL EXCEPTION: DcHandlerThread
E AndroidRuntime: Process: com.android.phone, PID: 1955
E AndroidRuntime: java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.Enum.ordinal()' on a null object reference
E AndroidRuntime: at com.mediatek.internal.telephony.dataconnection.DcFailCauseManager.getSuggestedRetryDelayByOp(DcFailCauseManager.java:218)
E AndroidRuntime: at com.mediatek.internal.telephony.dataconnection.MtkDataConnection.getSuggestedRetryDelay(MtkDataConnection.java:1541)
E AndroidRuntime: at com.mediatek.internal.telephony.dataconnection.MtkDataConnection$MtkDcActivatingState.processMessage(MtkDataConnection.java:937)
E AndroidRuntime: at com.android.internal.util.StateMachine$SmHandler.processMsg(StateMachine.java:992)
E AndroidRuntime: at com.android.internal.util.StateMachine$SmHandler.handleMessage(StateMachine.java:809)
E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:106)
E AndroidRuntime: at android.os.Looper.loop(Looper.java:164)
And I'm trying to find out exactly what it is trying to do here in case there is something I can do to fix it.
Does anyone have any idea where I can find the source to the com.mediatek.internal.telephony.dataconnection.DcFailCauseManager?
Alternatively, I have the KDZ file for a similar build (Q610YM10e_00_0117.kdz). I have extracted the dz file and the contained bin files, but not having any luck trying to combine the multiple "system_a_999999.bin" files into a useable file system. The first file has what looks like a valid ext4 header, but if I just concatenate them all together the resulting file appears to be too small and fails to mount with the following error:
Code:
EXT4-fs (loop1): bad geometry: block count 932166 exceeds size of device (620672 blocks)
LM-Q610YM
Android Version: 8.1.0
Kernel Version 3.18.79
Build Number: Q11019
Software Version: V10e-AUS-XX
Thanks

Question Pixel 6 Pro Reboots after enabling SIM or eSim

Hi all,
I have a very strange issue with my Pixel 6 Pro. Not rooted and original Android 13 firmware. The phone reboots whenever I enable the physical SIM or eSim. Then it shows me a screen to reboot or do a factory reset.
If I select the reboot option and keep the SIM enabled, it reboots, loads the UI and whenever the Sim is connected, it reboots again. This keeps going on forever.
After a reboot, when I quickly go to the menu and disable the sim, it will restart one more time and stop restarting after that since the sim is disabled.
Recently, I received the latest Android 13 Security Patch and issue started then (I was already on 13). I had the same issue also when I installed the Android 13 Beta firmware and I even created a bug on Android Beta issue tracker.
See: https://issuetracker.google.com/issues/236862868
Since it took some time before they responded, I went back to the stable 12 and updated to the stable 13 when it came out. I experienced no issues until the latest security patch.
Long story, but I'm just wondering, do you have any ideas what I can try more? Right now, I can't use any mobile services on this phone. Everything, including wifi works fine when the sim is disabled btw.
mrhnn said:
Hi all,
I have a very strange issue with my Pixel 6 Pro. Not rooted and original Android 13 firmware. The phone reboots whenever I enable the physical SIM or eSim. Then it shows me a screen to reboot or do a factory reset.
If I select the reboot option and keep the SIM enabled, it reboots, loads the UI and whenever the Sim is connected, it reboots again. This keeps going on forever.
After a reboot, when I quickly go to the menu and disable the sim, it will restart one more time and stop restarting after that since the sim is disabled.
Recently, I received the latest Android 13 Security Patch and issue started then (I was already on 13). I had the same issue also when I installed the Android 13 Beta firmware and I even created a bug on Android Beta issue tracker.
See: https://issuetracker.google.com/issues/236862868
Since it took some time before they responded, I went back to the stable 12 and updated to the stable 13 when it came out. I experienced no issues until the latest security patch.
Long story, but I'm just wondering, do you have any ideas what I can try more? Right now, I can't use any mobile services on this phone. Everything, including wifi works fine when the sim is disabled btw.
Click to expand...
Click to collapse
Did you buy it on eBay?
FoneWatcher said:
Did you buy it on eBay?
Click to expand...
Click to collapse
No, no. I bought it in the electronics store in Jan-22.
mrhnn said:
No, no. I bought it in the electronics store in Jan-22.
Click to expand...
Click to collapse
I've never used eSIM, but, I looked around & found this:
How to use dual SIMs on your Google Pixel phone - Pixel Phone Help
New to Pixel? Use our setup guide If you have a Pixel 3a or later Pixel phone, you can use two
support.google.com
Namely, have you checked/verified that your carrier(s) allow for Dual-Sim?
Other than that, my only guess is that the phone is SIM locked, but, if you bought it new & the phone is paid off, that can be ruled out.
Thank you. The phone was completely working fine with both eSim as well as with physical SIM.
Right now, it doesn't even matter which sim i choose / enable. Both ways it reboots.
For example: I disable and delete eSim completely and just put in the sim card, phone reboots after connecting to the carrier.
Seems to be an issue with some services on the phone.
I have a logcat from previous error (back in June when i had Android 13 Beta). I will try to get a new logcat with current stable version
Here you can see some fatal errors regarding com.shannon.qualifiednetworksservice
06-23 09:50:38.876 2877 3331 D CellBroadcastConfigService: mAlwaysOn is set to true, enable the range: 4370:4370
06-23 09:50:38.876 2358 2358 I VvmSimStateTracker: android.intent.action.SIM_STATE_CHANGED
06-23 09:50:38.878 3308 3326 E AndroidRuntime: FATAL EXCEPTION: QualifiedNetworksService
06-23 09:50:38.878 3308 3326 E AndroidRuntime: Process: com.shannon.qualifiednetworksservice, PID: 3308
06-23 09:50:38.878 3308 3326 E AndroidRuntime: java.lang.IllegalArgumentException: Source access networks contains unknown. "source=geran|utran|eutran|ngran|iwlan, target=geran|utran|eutran|ngran|iwlan, type=disallowed, capabilities=eims|mms|xcap|cbs"
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.android.internal.telephony.data.DataNetworkController$HandoverRule.<init>(DataNetworkController.java:717)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ConfigurationManager.updateCarrierConfigInfo(ConfigurationManager.java:229)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ConfigurationManager.<init>(ConfigurationManager.java:78)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ShannonQualifiedNetworksService$ShannonNetworkAvailabilityProvider.<init>(ShannonQualifiedNetworksService.java:133)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ShannonQualifiedNetworksService.onCreateNetworkAvailabilityProvider(ShannonQualifiedNetworksService.java:207)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.telephony.data.QualifiedNetworksService$QualifiedNetworksServiceHandler.handleMessage(QualifiedNetworksService.java:222)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:106)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:201)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Looper.loop(Looper.java:288)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.HandlerThread.run(HandlerThread.java:67)
06-23 09:50:38.880 1744 2497 D CompatibilityChangeReporter: Compat change id reported: 184323934; UID 1000; state: ENABLED
06-23 09:50:38.882 1744 3335 I DropBoxManagerService: add tag=system_app_crash isTagEnabled=true flags=0x2
06-23 09:50:38.882 1744 3306 W ActivityManager: Process com.shannon.qualifiednetworksservice has crashed too many times, killing! Reason: crashed quickly
06-23 09:50:38.883 3308 3326 I Process : Sending signal. PID: 3308 SIG: 9
mrhnn said:
Thank you. The phone was completely working fine with both eSim as well as with physical SIM.
Right now, it doesn't even matter which sim i choose / enable. Both ways it reboots.
For example: I disable and delete eSim completely and just put in the sim card, phone reboots after connecting to the carrier.
Seems to be an issue with some services on the phone.
I have a logcat from previous error (back in June when i had Android 13 Beta). I will try to get a new logcat with current stable version
Here you can see some fatal errors regarding com.shannon.qualifiednetworksservice
06-23 09:50:38.876 2877 3331 D CellBroadcastConfigService: mAlwaysOn is set to true, enable the range: 4370:4370
06-23 09:50:38.876 2358 2358 I VvmSimStateTracker: android.intent.action.SIM_STATE_CHANGED
06-23 09:50:38.878 3308 3326 E AndroidRuntime: FATAL EXCEPTION: QualifiedNetworksService
06-23 09:50:38.878 3308 3326 E AndroidRuntime: Process: com.shannon.qualifiednetworksservice, PID: 3308
06-23 09:50:38.878 3308 3326 E AndroidRuntime: java.lang.IllegalArgumentException: Source access networks contains unknown. "source=geran|utran|eutran|ngran|iwlan, target=geran|utran|eutran|ngran|iwlan, type=disallowed, capabilities=eims|mms|xcap|cbs"
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.android.internal.telephony.data.DataNetworkController$HandoverRule.<init>(DataNetworkController.java:717)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ConfigurationManager.updateCarrierConfigInfo(ConfigurationManager.java:229)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ConfigurationManager.<init>(ConfigurationManager.java:78)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ShannonQualifiedNetworksService$ShannonNetworkAvailabilityProvider.<init>(ShannonQualifiedNetworksService.java:133)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at com.shannon.qualifiednetworksservice.ShannonQualifiedNetworksService.onCreateNetworkAvailabilityProvider(ShannonQualifiedNetworksService.java:207)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.telephony.data.QualifiedNetworksService$QualifiedNetworksServiceHandler.handleMessage(QualifiedNetworksService.java:222)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:106)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:201)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.Looper.loop(Looper.java:288)
06-23 09:50:38.878 3308 3326 E AndroidRuntime: at android.os.HandlerThread.run(HandlerThread.java:67)
06-23 09:50:38.880 1744 2497 D CompatibilityChangeReporter: Compat change id reported: 184323934; UID 1000; state: ENABLED
06-23 09:50:38.882 1744 3335 I DropBoxManagerService: add tag=system_app_crash isTagEnabled=true flags=0x2
06-23 09:50:38.882 1744 3306 W ActivityManager: Process com.shannon.qualifiednetworksservice has crashed too many times, killing! Reason: crashed quickly
06-23 09:50:38.883 3308 3326 I Process : Sending signal. PID: 3308 SIG: 9
Click to expand...
Click to collapse
Hi,
I just curious to you solved or not this issue, beauce i have the same problem et its really interesting. I tried lots of things but not working
akbulut00 said:
Hi,
I just curious to you solved or not this issue, beauce i have the same problem et its really interesting. I tried lots of things but not working
Click to expand...
Click to collapse
Hi, yes I solved it by changing the phone language from Turkish to English.
Steps:
Turn on the phone and as soon as you see the menu, turn on airplane mode (disable all networking options)
Phone will reboot again but since airplane mode is active, phone services will not be activated
Once the phone stops rebooting, change the language to English.
Just to make sure, reboot the phone with the new language.
Turn off airplane mode
Let me know if this works for you as well!
mrhnn said:
Hi, yes I solved it by changing the phone language from Turkish to English.
Steps:
Turn on the phone and as soon as you see the menu, turn on airplane mode (disable all networking options)
Phone will reboot again but since airplane mode is active, phone services will not be activated
Once the phone stops rebooting, change the language to English.
Just to make sure, reboot the phone with the new language.
Turn off airplane mode
Let me know if this works for you as well!
Click to expand...
Click to collapse
i realized to not completed security update, now im installing it. I will try again after completed.
i ll tell you the resault.
akbulut00 said:
i realized to not completed security update, now im installing it. I will try again after completed.
i ll tell you the resault.
Click to expand...
Click to collapse
Dissolved. The problem was the incomplete update.
sagolasin yine de

[Help Request] Huawei Watch 3-F60 [Model GLL-AL00] install GMS / Play Store

Trying to follow this thread, says the HW3 is eligible, but unsuccessful in logging into MicroG. Has anyone else been able to install Play Store?
Steps so far:
Code:
adb shell pm disable-user com.android.packageinstaller
adb install huagu3.apk
adb shell appops set com.bishua666.luxxx1 GET_USAGE_STATS allow
Disable route to internet.
Set date on phone to July 20, 2020 and sync watch.
Open huagu3 on watch and allow full access
Step 1 successful.
Step 2 immediately closes app
adb install 01_MicroG.apk -> success
Open MicroG and try to add account, app immediately closes.
logcat:
Code:
--------- beginning of crash huagu3
07-20 15:56:27.370 12290 12290 E AndroidRuntime: FATAL EXCEPTION: main
07-20 15:56:27.370 12290 12290 E AndroidRuntime: Process: com.bishua666.luxxx1, PID: 12290
07-20 15:56:27.370 12290 12290 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.DATE_SETTINGS }
MicroG:
07-20 15:56:37.557 12395 12395 E AndroidRuntime: FATAL EXCEPTION: main
07-20 15:56:37.557 12395 12395 E AndroidRuntime: Process: com.google.android.gms:ui, PID: 12395
07-20 15:56:37.557 12395 12395 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.google.android.gms/org.microg.gms.auth.login.LoginActivity}: java.lang.UnsupportedOperationException
Appreciate any assistance in advance, thanks.
Ref:
Install native GMS, Google Play Store directly on Harmony OS 3.0 (Tested Feb 2023)
How to install GMS Harmony OS 3.1 has newer processes https://forum.xda-developers.com/t/install-native-gms-on-harmony-os-3-1-tested-may-2023-on-huawei-mate-x3.4583737/ *** IMPORTANT NOTE *** I am working on the step by step instructions, stay...
forum.xda-developers.com
Current Eligible Devices:
Huawei Wear Series
HUAWEI WATCH 3
Hi,
Exactly the same for me ...

Categories

Resources