transistorsoft / cordova-background-geolocation-lt

The most sophisticated background location-tracking & geofencing module with battery-conscious motion-detection intelligence for iOS and Android.
http://www.transistorsoft.com/shop/products/cordova-background-geolocation
Other
659 stars 276 forks source link

Config provided to BackgroundGeolocation.ready() re-applies on every start #1177

Closed tobiaswaltl closed 4 years ago

tobiaswaltl commented 4 years ago

Your Environment

Expected Behavior

The docs say: "The supplied Config will be applied only at first install of your app — for every launch thereafter, the plugin will automatically load its last-known configuration from persistent storage. The plugin always remembers the configuration you apply to it." This is what I expected.

Actual Behavior

The config is re-applied for every launch. Configs from previous launches as well as config provided later via BackgroundGeolocation.setConfig() are overridden.

Steps to Reproduce

  1. Apply the config to ready() like above and log the resulting state
  2. Start the app
  3. Close the app
  4. Start the app again

Context

I was relying on the plugin to restore the previously applied configs. Maybe I am just misinterpreting the docs?

christocracy commented 4 years ago
BackgroundGeolocation.ready({
  reset: false,
  .
  .
  .
});
tobiaswaltl commented 4 years ago

Thank you for the quick response. However, reset: false doesn't seem to have any effect: Values set via setConfig are still lost and random values (like url in the example above) are still different for every app launch.

When I log the state (window.BackgroundGeolocation.getState().then(state => console.log(state))) there is no property reset included. When I access it directly (window.BackgroundGeolocation.getState().then(state => console.log(state.reset))) it is undefined.

christocracy commented 4 years ago

reset is not a State parameter.

It is an option provided to the ready method.

tobiaswaltl commented 4 years ago

Ok, I've provided it to the ready method but it's the same behavior. I just thought I'd see reset in state like the other config keys.

christocracy commented 4 years ago

The SampleApp is configured to operate as you desire with reset: false in order for the Settings screen to control the configuration (which uses setConfig at runtime).

christocracy commented 4 years ago

You’re doing something wrong. Post more of your code used with the plugin.

tobiaswaltl commented 4 years ago

I've just tried out the sample app and yes, there it works so probably I've just overlooked a little detail.

On app start I call ready() with this config:

const state = await BackgroundGeolocation.ready({
    reset: false, // Do not reset the config but re-apply the persisted one
    // Geolocation Config
    desiredAccuracy: BackgroundGeolocation.DESIRED_ACCURACY_HIGH,
    distanceFilter: 10, // in meters
    showsBackgroundLocationIndicator: true, // iOS only
    // Application config
    debug: true, // <-- enable this hear debug sounds.
    logLevel: BackgroundGeolocation.LOG_LEVEL_VERBOSE,
    stopOnTerminate: false, // Allow the background-service to continue tracking when app terminated.
    startOnBoot: true, // Auto start tracking when device is powered-up.
    // HTTP / SQLite config
    url: `${Math.random()}`, // should now be the same for every app start
    httpRootProperty: '.',
    locationTemplate: '{"latitude":<%= latitude %>,"longitude":<%= longitude %>,"timeOfRecord":"<%= timestamp %>"}',
    extras: {
      deviceId: `"${device.uuid}"`,
      random: Math.random(), // should also be the same for every app start
    },
  });

Later, I can update the config:

await BackgroundGeolocation.setConfig({ url: 'myServer.com' });

When logging the state afterwards I can see the config was updated successfully.

Then I terminate the app, start it again and log the state after the BackgroundGeolocation.ready call from above. Now the url is a random number again (instead of 'myServer.com').

christocracy commented 4 years ago

Show me native logs of your app booting. You are likely calling #ready twice.

tobiaswaltl commented 4 years ago

I've played around with it for a while now. It seems that everything works fine as long as the plugin is not currently started (via BackgroundGeolocation.start() when I terminate the app.

These scenarios work as expected:

  1. ready -> setConfig -> terminate app
  2. ready -> start -> stop -> setConfig -> terminate app
  3. ready -> start -> setConfig -> stop -> terminate app

But this scenario doesn't: ready -> start -> setConfig -> terminate app (without stopping the plugin)

While this scenario keeps configs that are not configured in ready (but only in setConfig afterwards), it resets the configs that were already provided to ready (like url in the example above).

christocracy commented 4 years ago

Show me native logs of your app booting

tobiaswaltl commented 4 years ago
native logs during the boot after the app was terminated with the plugin unstopped 09-04 19:45:01.533 2479 3187 V APM_AudioPolicyManager: AudioPolicyManager:setRecordSilenced(uid:10076, silenced:1) 09-04 19:45:01.533 2479 3187 V AudioFlg: AudioFlinger::setRecordSilenced(uid:10076, silenced:1) 09-04 19:45:01.631 2907 3156 D WifiStateMachine: handleMessage: E msg.what=131155 09-04 19:45:01.632 2907 3156 D WifiStateMachine: processMsg: ConnectedState 09-04 19:45:01.632 2907 3156 D WifiStateMachine: processMsg: L2ConnectedState 09-04 19:45:01.673 2907 3156 D WifiStateMachine: CMD_RSSI_POLL: TxBytes = 1031094, RxBytes = 1335498 09-04 19:45:01.673 2907 3156 D WifiStateMachine: handleMessage: X 09-04 19:45:02.379 2479 3187 V APM_AudioPolicyManager: AudioPolicyManager:setRecordSilenced(uid:99624, silenced:1) 09-04 19:45:02.379 2479 3187 V AudioFlg: AudioFlinger::setRecordSilenced(uid:99624, silenced:1) 09-04 19:45:02.516 2907 3125 D InputDispatcher: notifyM-evT=274958755, dev=10, src=0x1002, ac=0x0, acButton=0x0, downT=274958755 09-04 19:45:02.519 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x11f9, type = 2, handle = 51788, pid = 738, recv time = 0 09-04 19:45:02.519 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.519 2907 3124 I PowerManagerService-JNI: [Stability] userActivity 2 09-04 19:45:02.519 755 845 I ANDR-PERF-PNPUTIL: Rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:02.520 2907 3124 D InputDispatcher: FinishedM(0x0, 0x0)-evT=274958755 09-04 19:45:02.520 2907 3124 I chatty : uid=1000(system) InputDispatcher identical 3 lines 09-04 19:45:02.520 2907 3124 D InputDispatcher: FinishedM(0x0, 0x0)-evT=274958755 09-04 19:45:02.521 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.521 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.521 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x11f9, type = 1, handle = 51789, pid = 738, recv time = 0 09-04 19:45:02.521 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.522 755 845 I ANDR-PERF-PNPUTIL: Rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:02.522 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:02.522 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.522 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.606 2907 3125 D InputDispatcher: notifyM-evT=274958845, dev=10, src=0x1002, ac=0x1, acButton=0x0, downT=274958755 09-04 19:45:02.608 2907 3124 D InputDispatcher: FinishedM(0x1, 0x0)-evT=274958845 09-04 19:45:02.609 2907 3124 I chatty : uid=1000(system) InputDispatcher identical 1 line 09-04 19:45:02.609 2907 3124 D InputDispatcher: FinishedM(0x1, 0x0)-evT=274958845 09-04 19:45:02.617 4458 4458 W SystemReader: Cannot find sku_id, use default value instead 09-04 19:45:02.619 2907 4417 D BoostFramework: perfHint : hint: 0x1081 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): 2000 type(userData2): 1 09-04 19:45:02.621 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x1081, type = 1, handle = 51790, pid = 2907, recv time = 2000 09-04 19:45:02.621 755 845 I ANDR-PERF-OPTSHANDLER: PMQos latency = 0x2c 09-04 19:45:02.621 2907 4417 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=de.mobilexag.mip.frame/.MainActivity (has extras)} from uid 2897 pid 4458 09-04 19:45:02.622 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.622 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:02.622 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:02.622 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:02.622 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch early'(1081:1) matches at cond 0 09-04 19:45:02.623 2907 4417 D BoostFramework: perfHint : hint: 0x1081 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): -1 type(userData2): 2 09-04 19:45:02.623 2907 4417 D BoostFramework: perfHint : hint: 0x1081 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): -1 type(userData2): 1 09-04 19:45:02.627 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.629 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.630 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x1081, type = 1, handle = 51791, pid = 2907, recv time = 2000 09-04 19:45:02.630 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.630 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:02.630 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:02.630 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:02.630 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch early'(1081:1) matches at cond 0 09-04 19:45:02.630 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.630 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.638 2907 4417 D ANDR-PERF-ACT-TRIG: start activity de.mobilexag.mip.frame/de.mobilexag.mip.frame.MainActivity/40100 09-04 19:45:02.638 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.638 2907 4417 D ActivityTrigger: activityStartTrigger: Activity is Triggerred in full screen ApplicationInfo{a7f8437 de.mobilexag.mip.frame} 09-04 19:45:02.638 2907 4417 E ActivityTrigger: activityStartTrigger: not whiteListedde.mobilexag.mip.frame/de.mobilexag.mip.frame.MainActivity/40100 09-04 19:45:02.638 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:02.638 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:02.638 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:02.638 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch early'(1081:1) matches at cond 0 09-04 19:45:02.638 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.638 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.638 2907 4417 D ActivityTrigger: activityResumeTrigger: The activity in ApplicationInfo{a7f8437 de.mobilexag.mip.frame} is now in focus and seems to be in full-screen mode 09-04 19:45:02.639 2907 4417 D ActivityTrigger: ActivityTrigger activityPauseTrigger 09-04 19:45:02.641 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8708) 09-04 19:45:02.641 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.644 4458 4458 I ContextualWidget: click item=ApplicationInfo(id=309, title=MIP, componentName=ComponentInfo{de.mobilexag.mip.frame/de.mobilexag.mip.frame.MainActivity} type=0 appsContainer= user=UserHandle{0} restored=0 isDisabled=0) 09-04 19:45:02.644 4458 4668 I ContextualWidget: handleMessage, what=1002 mode=GettingOut maxcount=8 09-04 19:45:02.645 4458 4668 I ContextualWidget: updateMFULaunchCountIfNeeded update=false days=0 09-04 19:45:02.645 4458 4458 I FeedHostManagerProxy: setActivityPostResumed false 09-04 19:45:02.651 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8708) 09-04 19:45:02.651 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.658 4458 4668 I ContextualWidget: MFU.onDataSetChanged 09-04 19:45:02.659 4458 4668 I ContextualWidget: handleMessage, what=1001 mode=GettingOut maxcount=8 09-04 19:45:02.659 4458 4668 I ContextualWidget: updateMFULaunchCountIfNeeded update=false days=0 09-04 19:45:02.660 4458 4458 I ContextualWidget: onPause 09-04 19:45:02.660 4458 4458 I ContextualWidget: notifyWidgetDeactive 09-04 19:45:02.660 4458 4668 I ContextualWidget: Download enabled: false, Recommend enabled: true 09-04 19:45:02.660 4458 4668 I ContextualWidget: sync all data, recommend=4 09-04 19:45:02.660 4458 4668 I ContextualWidget: sync all data, mode=GettingOut count=36 09-04 19:45:02.660 4458 4668 I ContextualWidget: notifyDataChanged, list size 8 09-04 19:45:02.661 2907 4142 D ActivityTrigger: activityResumeTrigger: The activity in ApplicationInfo{a7f8437 de.mobilexag.mip.frame} is now in focus and seems to be in full-screen mode 09-04 19:45:02.661 2907 4142 D BoostFramework: perfHint : hint: 0x1083 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): -1 type(userData2): -1 09-04 19:45:02.663 2907 3502 W HtcSystemUPManager: HtcSystemUPHandler The policy is disabled. AppId: activity_history, category: launch 09-04 19:45:02.668 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:02.668 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:02.668 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:02.675 2907 4142 D InputDispatcher: setFocus: AppWindowToken{21128db token=Token{e00cdea ActivityRecord{9e8b1d5 u0 de.mobilexag.mip.frame/.MainActivity t10970}}} 09-04 19:45:02.682 3282 6715 I TopPkgCallbackInterface: onTopPackageChanged Bundle=Bundle[mParcelledData.dataSize=288] 09-04 19:45:02.683 3282 3282 I NavigationBar: Fix ratio changed, pkg = de.mobilexag.mip.frame 09-04 19:45:02.684 2907 4630 W SystemReader: Cannot find sku_id, use default value instead 09-04 19:45:02.694 4458 4458 I ContextualWidget: m_Listeners.size = 0 09-04 19:45:02.695 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8708) 09-04 19:45:02.695 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.695 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8708) 09-04 19:45:02.696 2907 3152 V NetworkPolicy: updateRuleForRestrictBackgroundUL(10265): isForeground=true, isBlacklisted=false, isWhitelisted=false, isRestrictedByAdmin=false, oldRule=0 (NONE), newRule=0 (NONE), newUidRules=0 (NONE), oldUidRules=0 (NONE) 09-04 19:45:02.696 2907 3152 V NetworkPolicy: updateRulesForPowerRestrictionsUL(10265), isIdle: false, mRestrictPower: false, mDeviceIdleMode: false, isForeground=true, isWhitelisted=false, oldRule=0 (NONE), newRule=0 (NONE), newUidRules=0 (NONE), oldUidRules=0 (NONE) 09-04 19:45:02.698 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.698 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.699 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.700 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.700 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.704 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.704 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.715 733 15523 D SDM : DisplayBase::BuildLayerStackStats: LayerStack layer_count: 6, app_layer_count: 5, gpu_target_index: 5, display type: 0 09-04 19:45:02.717 3282 3282 D StatusBar: setSystemUiVisibility vis=8008 mask=ffffffff oldVal=8708 newVal=8008 diff=700 09-04 19:45:02.721 2112 2112 I CordovaLog: Changing log level to DEBUG(3) 09-04 19:45:02.721 2112 2112 I CordovaActivity: Apache Cordova native platform version 8.1.0 is starting 09-04 19:45:02.721 2112 2112 D CordovaActivity: CordovaActivity.onCreate() 09-04 19:45:02.736 2112 2112 I WebViewFactory: Loading com.android.chrome version 78.0.3904.108 (code 390410837) 09-04 19:45:02.772 2112 2112 I cr_LibraryLoader: Time to load native libraries: 2 ms 09-04 19:45:02.797 733 15523 D SDM : DisplayBase::BuildLayerStackStats: LayerStack layer_count: 4, app_layer_count: 3, gpu_target_index: 3, display type: 0 09-04 19:45:02.798 2112 2112 I cr_LibraryLoader: Expected native library version number "78.0.3904.108", actual native library version number "78.0.3904.108" 09-04 19:45:02.806 2112 2910 W cr_ChildProcLH: Create a new ChildConnectionAllocator with package name = com.android.chrome, sandboxed = true 09-04 19:45:02.810 2112 2112 I cr_BrowserStartup: Initializing chromium process, singleProcess=false 09-04 19:45:02.810 2112 2910 W lexag.mip.fram: Accessing hidden method Landroid/content/Context;->bindServiceAsUser(Landroid/content/Intent;Landroid/content/ServiceConnection;ILandroid/os/Handler;Landroid/os/UserHandle;)Z (light greylist, reflection) 09-04 19:45:02.813 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.813 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.816 3300 3300 D Zygote : fork++ 09-04 19:45:02.845 3300 3300 D Zygote : fork-- pid: 2941 09-04 19:45:02.847 2907 2927 D BoostFramework: perfHint : hint: 0x1081 pkg_name(userDataStr): com.android.chrome:sandboxed_process0 duration(userData1): -1 type(userData2): 100 09-04 19:45:02.851 2907 2927 I ActivityManager: Start proc 2941:com.android.chrome:sandboxed_process0/u0i710 for webview_service de.mobilexag.mip.frame/org.chromium.content.app.SandboxedProcessService0 09-04 19:45:02.862 2941 2941 E dboxed_process: Not starting debugger since process cannot load the jdwp agent. 09-04 19:45:02.875 2479 3187 V APM_AudioPolicyManager: AudioPolicyManager:setRecordSilenced(uid:99710, silenced:0) 09-04 19:45:02.875 2479 3187 V AudioFlg: AudioFlinger::setRecordSilenced(uid:99710, silenced:0) 09-04 19:45:02.881 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.881 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.882 2907 4421 D ConnectivityService: requestNetwork for uid/pid:10265/2112 NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] 09-04 19:45:02.883 2907 3166 D ConnectivityService: NetworkRequest List = {/CONNECTED=[], WIFI/CONNECTED=[1000:1]} 09-04 19:45:02.883 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [VPN () - 325] 09-04 19:45:02.883 2907 3166 D ConnectivityService: network has: [ Transports: VPN Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: Uids: <{0-99999}> EstablishingAppUid: 10185] 09-04 19:45:02.883 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.883 2907 3166 I chatty : uid=1000(system) ConnectivitySer identical 4 lines 09-04 19:45:02.883 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.883 2907 3166 D ConnectivityService: currentScore = 0, newScore = 101 09-04 19:45:02.883 2907 3166 D ConnectivityService: rematch for NetworkAgentInfo [VPN () - 325] 09-04 19:45:02.883 2907 3166 V ConnectivityService: addRequest 2627 on NetworkAgentInfo [VPN () - 325] 09-04 19:45:02.883 2907 3166 D ConnectivityService: sending new Min Network Score(101): NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] 09-04 19:45:02.884 2907 3156 D WIFI : got request NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:02.884 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.884 2907 3194 D usbnet : got request NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:02.884 3555 3555 D PhoneSwitcherNetworkRequstListener: got request NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:02.884 3555 3555 D PhoneSwitcherNetworkRequstListener: needNetworkFor NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ], 101 09-04 19:45:02.884 2907 3166 I chatty : uid=1000(system) ConnectivitySer identical 7 lines 09-04 19:45:02.884 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.884 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 324] 09-04 19:45:02.884 2907 3166 D ConnectivityService: network has: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -58 SSID: "FRITZ!Box 7530 ZT"] 09-04 19:45:02.884 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.885 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.885 2907 3156 D WIFI_UT : got request NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:02.888 4287 4358 I QcrilOemhookMsgTunnel: [0]processOemHookIndication length=28 09-04 19:45:02.888 4287 4287 D QcrilMsgTunnelIfaceManager: handleMessage what = 0 09-04 19:45:02.889 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.889 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.891 2907 3212 D Ethernet: got request NetworkRequest [ TRACK_DEFAULT id=2627, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:02.893 4287 4358 I QcrilOemhookMsgTunnel: [1]processOemHookIndication length=28 09-04 19:45:02.894 4287 4287 D QcrilMsgTunnelIfaceManager: handleMessage what = 0 09-04 19:45:02.896 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51788 09-04 19:45:02.897 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:02.897 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:02.897 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:02.897 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [VPN () - 325] 09-04 19:45:02.897 2907 3166 D ConnectivityService: network has: [ Transports: VPN Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: Uids: <{0-99999}> EstablishingAppUid: 10185] 09-04 19:45:02.897 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.898 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:02.898 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:02.899 2907 3166 V ConnectivityService: addRequest 2628 on NetworkAgentInfo [VPN () - 325] 09-04 19:45:02.898 2907 3166 I chatty : uid=1000(system) ConnectivitySer identical 13 lines 09-04 19:45:02.898 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.899 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 324] 09-04 19:45:02.899 2907 3166 D ConnectivityService: network has: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -58 SSID: "FRITZ!Box 7530 ZT"] 09-04 19:45:02.899 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.900 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.900 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:02.901 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:02.901 2907 3166 V ConnectivityService: addRequest 2628 on NetworkAgentInfo [WIFI () - 324] 09-04 19:45:02.903 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.903 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.914 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.914 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker;->(Landroid/content/Context;I)V (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker;->logEvent(Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;)V (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionStarted(I)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(II)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(IILandroid/view/textclassifier/TextClassification;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(IILandroid/view/textclassifier/TextSelection;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionAction(III)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.914 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionAction(IIILandroid/view/textclassifier/TextClassification;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (light greylist, reflection) 09-04 19:45:02.915 2941 2941 I LoadedApk: No resource references to update in package com.android.chrome.autofill_assistant 09-04 19:45:02.920 2941 2941 I cr_ChildProcessService: Creating new ChildProcessService pid=2941 09-04 19:45:02.925 2112 2112 D IonicWebViewEngine: Ionic Web View Engine Starting Right Up 1... 09-04 19:45:02.944 2112 2112 D SystemWebViewEngine: CordovaWebView is running on device made by: HTC 09-04 19:45:02.952 2112 2112 D PluginManager: init() 09-04 19:45:02.963 2112 2112 D FileUtils: Unrecognized extra filesystem identifier: assets 09-04 19:45:02.978 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:02.978 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:02.984 2112 2112 D CordovaWebViewImpl: >>> loadUrl(file:///android_asset/www/index.html) 09-04 19:45:02.989 2112 2932 W lexag.mip.fram: Accessing hidden method Landroid/media/AudioManager;->getOutputLatency(I)I (light greylist, reflection) 09-04 19:45:02.992 2941 2965 I cr_LibraryLoader: Time to load native libraries: 0 ms 09-04 19:45:02.994 2112 2112 D CordovaActivity: Started the activity. 09-04 19:45:02.995 2112 2112 D CordovaActivity: Resumed the activity. 09-04 19:45:02.997 2941 2965 I cr_LibraryLoader: Expected native library version number "78.0.3904.108", actual native library version number "78.0.3904.108" 09-04 19:45:02.997 2112 2932 W cr_media: Requires BLUETOOTH permission 09-04 19:45:03.007 2907 6729 D ConnectivityService: requestNetwork for uid/pid:10265/2112 NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] 09-04 19:45:03.008 2907 3166 D ConnectivityService: NetworkRequest List = {/CONNECTED=[], WIFI/CONNECTED=[1000:1]} 09-04 19:45:03.008 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [VPN () - 325] 09-04 19:45:03.008 2907 3166 D ConnectivityService: network has: [ Transports: VPN Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: Uids: <{0-99999}> EstablishingAppUid: 10185] 09-04 19:45:03.008 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 I chatty : uid=1000(system) ConnectivitySer identical 12 lines 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 0, newScore = 101 09-04 19:45:03.009 2907 3166 D ConnectivityService: rematch for NetworkAgentInfo [VPN () - 325] 09-04 19:45:03.009 2907 3166 V ConnectivityService: addRequest 2629 on NetworkAgentInfo [VPN () - 325] 09-04 19:45:03.009 2907 3166 D ConnectivityService: sending new Min Network Score(101): NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] 09-04 19:45:03.009 2907 3156 D WIFI : got request NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:03.009 2907 3194 D usbnet : got request NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3156 D WIFI_UT : got request NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 324] 09-04 19:45:03.009 2907 3166 D ConnectivityService: network has: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -58 SSID: "FRITZ!Box 7530 ZT"] 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.009 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.009 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.010 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.010 2907 3212 D Ethernet: got request NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:03.010 3555 3555 D PhoneSwitcherNetworkRequstListener: got request NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ] with score 101 09-04 19:45:03.010 3555 3555 D PhoneSwitcherNetworkRequstListener: needNetworkFor NetworkRequest [ TRACK_DEFAULT id=2629, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Unwanted: Uid: 10265] ], 101 09-04 19:45:03.014 4287 4358 I QcrilOemhookMsgTunnel: [0]processOemHookIndication length=28 09-04 19:45:03.015 4287 4287 D QcrilMsgTunnelIfaceManager: handleMessage what = 0 09-04 19:45:03.016 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [VPN () - 325] 09-04 19:45:03.016 2907 3166 D ConnectivityService: network has: [ Transports: VPN Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: Uids: <{0-99999}> EstablishingAppUid: 10185] 09-04 19:45:03.016 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.016 2907 3166 V ConnectivityService: addRequest 2630 on NetworkAgentInfo [VPN () - 325] 09-04 19:45:03.016 2907 3166 I chatty : uid=1000(system) ConnectivitySer identical 14 lines 09-04 19:45:03.016 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 324] 09-04 19:45:03.017 2907 3166 D ConnectivityService: network has: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED Unwanted: LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -58 SSID: "FRITZ!Box 7530 ZT"] 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 D ConnectivityService: satisfiesMobileMultiNetworkDataCheck: true 09-04 19:45:03.017 2907 3166 D ConnectivityService: currentScore = 101, newScore = 60 09-04 19:45:03.017 2907 3166 V ConnectivityService: addRequest 2630 on NetworkAgentInfo [WIFI () - 324] 09-04 19:45:03.018 4287 4358 I QcrilOemhookMsgTunnel: [1]processOemHookIndication length=28 09-04 19:45:03.018 4287 4287 D QcrilMsgTunnelIfaceManager: handleMessage what = 0 09-04 19:45:03.022 2506 21259 D : onTransact(), code=7 09-04 19:45:03.047 2112 2969 W AudioCapabilities: Unsupported mime audio/ozoaudio 09-04 19:45:03.049 2112 2969 W VideoCapabilities: Unsupported mime image/vnd.android.heic 09-04 19:45:03.060 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.060 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.064 2112 2969 W VideoCapabilities: Unrecognized profile 4 for video/hevc 09-04 19:45:03.085 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.085 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.090 2112 2969 I VideoCapabilities: Unsupported profile 4 for video/mp4v-es 09-04 19:45:03.095 2907 4421 I InputMethodManagerService: Disable input method client, cs=ClientState{566bbb6 uid 2897 pid 4458} 09-04 19:45:03.095 2907 4421 D StatusBarManagerService: swetImeWindowStatus vis=0 backDisposition=0 09-04 19:45:03.096 2907 4421 D InputMethodManagerService: Switching to client de.mobilexag.mip.frame(2112), IME=com.emoji.keyboard.touchpal.oem/com.cootek.smartinput5.TouchPalIME 09-04 19:45:03.096 2907 4421 I InputMethodManagerService: Enable input method client, cs=ClientState{a9d4ad9 uid 10265 pid 2112} 09-04 19:45:03.099 3268 3268 E TouchPalIME: TouchPalIME onFinishInput 09-04 19:45:03.099 3268 3268 D TouchPalIMEImpl: onFinishInput 09-04 19:45:03.100 3268 3268 E TouchPalIME: TouchPalIME onStartInput 09-04 19:45:03.100 3268 3268 D TouchPalIMEImpl: TouchPalIME onStartInput 09-04 19:45:03.101 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:03.105 2907 4421 D ConnectivityService: Returning BLOCKED NetworkInfo to uid=10067 09-04 19:45:03.105 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:03.111 2112 2112 D CordovaWebViewImpl: onPageDidNavigate(file:///android_asset/www/index.html) 09-04 19:45:03.127 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.127 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.131 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.131 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.132 2112 2112 D CordovaWebViewImpl: onPageFinished(file:///android_asset/www/index.html) 09-04 19:45:03.134 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.134 2112 2930 D SERVER : Handling local request: https://localhost/ 09-04 19:45:03.134 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.140 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.140 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.144 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x11f9, type = 2, handle = 51792, pid = 738, recv time = 0 09-04 19:45:03.144 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:03.144 2907 2924 I ActivityManager: Displayed de.mobilexag.mip.frame/.MainActivity: +516ms 09-04 19:45:03.144 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:03.144 755 845 I ANDR-PERF-PNPUTIL: Rule 'input boost'(11F9:2) matches at cond 0 09-04 19:45:03.144 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:03.145 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:03.145 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:03.146 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:03.146 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.157 2907 6729 D ActivityTrigger: ActivityTrigger activityStopTrigger 09-04 19:45:03.177 4458 4458 I TrimMemoryManager: [trimMemory] 20 09-04 19:45:03.177 2112 2112 D CordovaWebViewImpl: onPageDidNavigate(https://localhost/) 09-04 19:45:03.179 733 15523 D SDM : DisplayBase::BuildLayerStackStats: LayerStack layer_count: 6, app_layer_count: 5, gpu_target_index: 5, display type: 0 09-04 19:45:03.186 2112 2934 D SERVER : Handling local request: https://localhost/cordova.js 09-04 19:45:03.187 2112 2930 D SERVER : Handling local request: https://localhost/styles.css 09-04 19:45:03.188 2112 2934 D SERVER : Handling local request: https://localhost/styles.js 09-04 19:45:03.189 2112 2930 D SERVER : Handling local request: https://localhost/vendors__code__diagnostic.js 09-04 19:45:03.191 2112 2934 D SERVER : Handling local request: https://localhost/vendors__code.js 09-04 19:45:03.192 2112 2934 D SERVER : Handling local request: https://localhost/code__diagnostic.js 09-04 19:45:03.198 2112 2934 D SERVER : Handling local request: https://localhost/code.js 09-04 19:45:03.220 2112 2112 D JsMessageQueue: Set native->JS mode to EvalBridgeMode 09-04 19:45:03.238 2112 2930 D SERVER : Handling local request: https://localhost/cordova_plugins.js 09-04 19:45:03.270 2112 2994 D SERVER : Handling local request: https://localhost/629a55a7e793da068dc580d184cc0e31.ttf 09-04 19:45:03.306 3282 3282 D NetworkController: [Strength][0][SubId:1][GSM] SignalStrength: 99 0 -120 -160 -120 -160 -1 19 -107 -9 92 2147483647 0 2147483647 0 0 2147483647 gsm|lte use_rsrp_and_rssnr_for_lte_level [-128, -118, -108, -98] [-115, -105, -95, -85] -1 -1 0 2147483647 2147483647 3 false 0 0 false false 1 0 -1 0 0 0 0 0 0 09-04 19:45:03.308 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:03.308 3282 3282 D NetworkController: DataModel State = 0 hasDataRegService = true DataConnected :false hasVoiceRegService: true PhoneType : 1 DataNetType :13 slot =0 09-04 19:45:03.312 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8) 09-04 19:45:03.312 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.312 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:03.312 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8) 09-04 19:45:03.312 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.314 3282 3282 D NetworkController: roaming : false 09-04 19:45:03.314 3282 3282 D NetworkController: level=3/5 09-04 19:45:03.314 3282 3282 D NetworkController: isDualSimDualStandby : SignaltheOtherDM.mPhoneState : 0 09-04 19:45:03.314 2476 2899 W SurfaceFlinger: Attempting to set client state on removed layer: Window{67c9590 u0 Splash Screen de.mobilexag.mip.frame}#0 09-04 19:45:03.314 2476 2899 W SurfaceFlinger: Attempting to destroy on removed layer: Window{67c9590 u0 Splash Screen de.mobilexag.mip.frame}#0 09-04 19:45:03.315 3282 3282 D NetworkController: DefaultNetwork= false checkInetCondition =false inetCondition=0 09-04 19:45:03.315 3282 3282 D NetworkController: DataModel State = 4 hasDataRegService = false DataConnected :false hasVoiceRegService: false PhoneType : 1 DataNetType :0 slot =1 09-04 19:45:03.317 3282 3282 D StatusBar: setSystemUiVisibility vis=8 mask=ffffffff oldVal=8008 newVal=8 diff=8000 09-04 19:45:03.328 733 15523 D SDM : DisplayBase::BuildLayerStackStats: LayerStack layer_count: 5, app_layer_count: 4, gpu_target_index: 4, display type: 0 09-04 19:45:03.333 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8) 09-04 19:45:03.333 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:03.345 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51792 09-04 19:45:03.345 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:03.345 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:03.346 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:03.346 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:03.346 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:03.358 2112 2934 D SERVER : Handling local request: https://localhost/plugins/phonegap-plugin-barcodescanner/www/barcodescanner.js 09-04 19:45:03.359 2112 2993 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-camera/www/CameraConstants.js 09-04 19:45:03.361 2112 2994 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-camera/www/CameraPopoverOptions.js 09-04 19:45:03.364 2112 2994 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-camera/www/Camera.js 09-04 19:45:03.364 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js 09-04 19:45:03.365 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-geolocation/www/android/geolocation.js 09-04 19:45:03.367 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-geolocation/www/PositionError.js 09-04 19:45:03.369 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/DirectoryEntry.js 09-04 19:45:03.371 2112 2934 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/DirectoryReader.js 09-04 19:45:03.372 2112 2934 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/Entry.js 09-04 19:45:03.373 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/File.js 09-04 19:45:03.375 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileEntry.js 09-04 19:45:03.378 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileError.js 09-04 19:45:03.379 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileReader.js 09-04 19:45:03.380 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileSystem.js 09-04 19:45:03.383 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileUploadOptions.js 09-04 19:45:03.384 2112 2934 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileUploadResult.js 09-04 19:45:03.384 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/FileWriter.js 09-04 19:45:03.386 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/Flags.js 09-04 19:45:03.388 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/LocalFileSystem.js 09-04 19:45:03.389 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/Metadata.js 09-04 19:45:03.390 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/ProgressEvent.js 09-04 19:45:03.392 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/fileSystems.js 09-04 19:45:03.393 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/requestFileSystem.js 09-04 19:45:03.395 2112 2934 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/resolveLocalFileSystemURI.js 09-04 19:45:03.395 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/browser/isChrome.js 09-04 19:45:03.396 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/android/FileSystem.js 09-04 19:45:03.398 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/fileSystems-roots.js 09-04 19:45:03.400 2112 2994 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file/www/fileSystemPaths.js 09-04 19:45:03.402 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file-opener2/www/plugins.FileOpener2.js 09-04 19:45:03.403 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file-transfer/www/FileTransferError.js 09-04 19:45:03.404 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-file-transfer/www/FileTransfer.js 09-04 19:45:03.407 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-device/www/device.js 09-04 19:45:03.407 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-splashscreen/www/splashscreen.js 09-04 19:45:03.408 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-statusbar/www/statusbar.js 09-04 19:45:03.411 2112 2930 D SERVER : Handling local request: https://localhost/plugins/phonegap-plugin-push/www/push.js 09-04 19:45:03.411 2112 2921 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-actionsheet/www/ActionSheet.js 09-04 19:45:03.412 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-dialogs/www/notification.js 09-04 19:45:03.415 2112 2933 D SERVER : Handling local request: https://localhost/plugins/uk.co.workingedge.phonegap.plugin.launchnavigator/www/common.js 09-04 19:45:03.416 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-dialogs/www/android/notification.js 09-04 19:45:03.416 2112 2933 D SERVER : Handling local request: https://localhost/plugins/uk.co.workingedge.phonegap.plugin.launchnavigator/www/localforage.v1.5.0.min.js 09-04 19:45:03.417 2112 2930 D SERVER : Handling local request: https://localhost/plugins/uk.co.workingedge.phonegap.plugin.launchnavigator/www/android/launchnavigator.js 09-04 19:45:03.418 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js 09-04 19:45:03.418 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-ionic-webview/src/www/util.js 09-04 19:45:03.419 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-plugin-background-fetch/www/BackgroundFetch.js 09-04 19:45:03.421 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-background-geolocation-lt/www/BackgroundGeolocation.js 09-04 19:45:03.421 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-background-geolocation-lt/www/API.js 09-04 19:45:03.422 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-background-geolocation-lt/www/DeviceSettings.js 09-04 19:45:03.425 2112 2930 D SERVER : Handling local request: https://localhost/plugins/cordova-background-geolocation-lt/www/TransistorAuthorizationToken.js 09-04 19:45:03.425 2112 2933 D SERVER : Handling local request: https://localhost/plugins/cordova-background-geolocation-lt/www/Logger.js 09-04 19:45:03.460 2941 2977 I chatty : uid=99710(u0_i710) Compositor identical 2 lines 09-04 19:45:03.622 2112 2998 I LaunchNavigator: pluginInitialize() 09-04 19:45:04.004 2112 2112 D SystemWebChromeClient: https://localhost/vendors__code__diagnostic.js: Line 75949 : %cDownload the React DevTools for a better development experience: https://fb.me/react-devtools font-weight:bold 09-04 19:45:04.074 2112 2112 D CordovaWebViewImpl: onPageFinished(https://localhost/) 09-04 19:45:04.076 2112 2934 D SERVER : Handling local request: https://localhost/favicon.ico 09-04 19:45:04.076 2112 2934 E WebViewAssetServer: Unable to open asset URL: https://localhost/favicon.ico 09-04 19:45:04.077 2112 2934 I chatty : uid=10265(de.mobilexag.mip.frame) ThreadPoolForeg identical 1 line 09-04 19:45:04.077 2112 2934 E WebViewAssetServer: Unable to open asset URL: https://localhost/favicon.ico 09-04 19:45:04.081 2112 2112 D SystemWebChromeClient: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js: Line 185 : OPEN database: mip.db 09-04 19:45:04.112 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/storage/storage-container - Initializing storage container state with backend DatabaseStateBackend. 09-04 19:45:04.115 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#1). query: 'create table if not exists AppState (key text primary key, value text)' args: undefined listArgs: undefined convert: undefined 09-04 19:45:04.117 2112 2112 D SystemWebChromeClient: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js: Line 115 : new transaction is queued, waiting for open operation to finish 09-04 19:45:04.118 2112 2999 V info : Open sqlite db: /data/user/0/de.mobilexag.mip.frame/databases/mip.db 09-04 19:45:04.123 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/file-system - MESSAGES WITH ID "GET_CORDOVA_FILESYSTEM" WILL BE OMITTED FOR 10 SECONDS (0 OMITTED SINCE LAST LOGGED): Initializing Cordova file system. 09-04 19:45:04.125 2112 2112 D SystemWebChromeClient: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js: Line 189 : OPEN database: mip.db - OK 09-04 19:45:04.125 2112 2112 D SystemWebChromeClient: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js: Line 191 : Detected Android/iOS/macOS platform version with flat JSON interface 09-04 19:45:04.126 2112 2112 D SystemWebChromeClient: https://localhost/plugins/cordova-sqlite-evplus-ext-free/www/SQLitePlugin.js: Line 85 : DB opened: mip.db 09-04 19:45:04.141 2112 3010 W AssetFilesystem: Asset manifest not found. Recursive copies and directory listing will be slow. 09-04 19:45:04.150 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#1) in 0.033s. Read 0 rows. 09-04 19:45:04.151 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#2). query: 'select key, value from AppState' args: undefined listArgs: undefined convert: undefined 09-04 19:45:04.167 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#2) in 0.014s. Read 25 rows. 09-04 19:45:04.190 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/overlay/overlay-manager - Adding overlay 0 [object Object] 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#3). query: `with recursive 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.279 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.LogLevel.Debug,301 listArgs: undefined convert: undefined 09-04 19:45:04.287 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#3) in 0.006s. Read 1 rows. 09-04 19:45:04.289 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/frame - Starting app. 09-04 19:45:04.290 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - Initializing push 09-04 19:45:04.299 2112 2998 D TSLocationManager: $ ready() 09-04 19:45:04.300 2112 2998 D TSLocationManager: [c.t.locationmanager.util.b a] 09-04 19:45:04.300 2112 2998 D TSLocationManager: ℹ️ LocationAuthorization: Permission granted 09-04 19:45:04.302 2112 2143 I TSLocationManager: - Enable: true → true, trackingMode: 1 09-04 19:45:04.304 2112 2998 D TSLocationManager: [c.t.l.a.BackgroundGeolocation ready] LocationPermission :true 09-04 19:45:04.306 2112 2144 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:45:04.306 2112 2144 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:45:04.306 2112 2144 I TSLocationManager: ║ HTTP Service (count: 1) 09-04 19:45:04.306 2112 2144 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:45:04.312 2907 6729 D BoostFramework: perfHint : hint: 0x1081 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): 1000 type(userData2): 1 09-04 19:45:04.313 755 845 I ANDR-PERF-MPCTL: perfHint: id = 0x1081, type = 1, handle = 51793, pid = 2907, recv time = 1000 09-04 19:45:04.313 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:04.313 2907 6729 I ActivityManager: START u0 {act=locationsettings flg=0x10000000 cmp=de.mobilexag.mip.frame/com.transistorsoft.locationmanager.activity.TSLocationManagerActivity} from uid 10265 pid 2112 09-04 19:45:04.313 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:04.313 755 845 I ANDR-PERF-PNPUTIL: Rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:04.314 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:04.314 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:04.314 2112 2998 V Push_Plugin: execute: action=init 09-04 19:45:04.315 2112 3010 V Push_Plugin: execute: data=[{"android":{},"ios":{"sound":true,"alert":true,"badge":true}}] 09-04 19:45:04.317 2112 3010 V Push_Plugin: execute: jo={} 09-04 19:45:04.317 2112 3010 V Push_Plugin: execute: senderID=638410838104 09-04 19:45:04.318 2112 3010 V Push_Plugin: onRegistered: {"registrationId":"dVq6LjXR6zQ:APA91bEIU9nZTRDkkkxFDGTI7OLznSkjmMWcHPusH9NvJIU9NGOtjJDHDO6QEGTWoV9KbYqXhK5wFn7I8YHwudN1XsfwuoWhHkYeYsd6rkRL7n6R5Zbvjyg-BRrVVGE8tOFn4k8Vi54d","registrationType":"FCM"} 09-04 19:45:04.321 2112 3010 D Push_Plugin: no icon option 09-04 19:45:04.321 2112 3010 D Push_Plugin: no iconColor option 09-04 19:45:04.327 2907 6729 D ANDR-PERF-ACT-TRIG: start activity de.mobilexag.mip.frame/com.transistorsoft.locationmanager.activity.TSLocationManagerActivity/40100 09-04 19:45:04.327 2907 6729 D ActivityTrigger: activityStartTrigger: Activity is Triggerred in full screen ApplicationInfo{a7f8437 de.mobilexag.mip.frame} 09-04 19:45:04.327 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:04.327 2907 6729 E ActivityTrigger: activityStartTrigger: not whiteListedde.mobilexag.mip.frame/com.transistorsoft.locationmanager.activity.TSLocationManagerActivity/40100 09-04 19:45:04.327 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:04.327 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:04.327 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:04.327 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:04.327 2907 6729 D ActivityTrigger: activityResumeTrigger: The activity in ApplicationInfo{a7f8437 de.mobilexag.mip.frame} is now in focus and seems to be in full-screen mode 09-04 19:45:04.327 2907 6729 D ActivityTrigger: ActivityTrigger activityPauseTrigger 09-04 19:45:04.330 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8) 09-04 19:45:04.330 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.332 2112 2143 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:45:04.332 2112 2143 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:45:04.334 2112 2143 D TSLocationManager: [c.t.l.http.HttpService startMonitoringConnectivityChanges] 09-04 19:45:04.334 2112 2143 D TSLocationManager: 🎾 Start monitoring connectivity changes 09-04 19:45:04.336 2112 2143 D TSLocationManager: [c.t.locationmanager.device.a c] 09-04 19:45:04.336 2112 2143 D TSLocationManager: 🎾 Start monitoring powersave changes 09-04 19:45:04.343 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:45:04.343 2112 2112 D TSLocationManager: 🎾 BackgroundTaskService [eventCount: 1] 09-04 19:45:04.344 2112 2112 I TSLocationManager: [c.t.l.u.BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 2 09-04 19:45:04.344 2112 2143 D TSLocationManager: [c.t.locationmanager.util.b b] 09-04 19:45:04.344 2112 2143 D TSLocationManager: ℹ️ LocationAuthorization: Permission granted 09-04 19:45:04.345 2112 2143 I TSLocationManager: [c.t.l.service.HeartbeatService c] 09-04 19:45:04.345 2112 2143 I TSLocationManager: 🔴 Stop heartbeat 09-04 19:45:04.348 2112 2998 V Push_Plugin: execute: action=hasPermission 09-04 19:45:04.348 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - registration event: dVq6LjXR6zQ:APA91bEIU9nZTRDkkkxFDGTI7OLznSkjmMWcHPusH9NvJIU9NGOtjJDHDO6QEGTWoV9KbYqXhK5wFn7I8YHwudN1XsfwuoWhHkYeYsd6rkRL7n6R5Zbvjyg-BRrVVGE8tOFn4k8Vi54d 09-04 19:45:04.349 2112 2112 D CordovaActivity: Paused the activity. 09-04 19:45:04.350 2112 3014 D Push_Plugin: has permission: true 09-04 19:45:04.359 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.359 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.359 3282 3282 D StatusBar: setSystemUiVisibility vis=8008 mask=ffffffff oldVal=8 newVal=8008 diff=8000 09-04 19:45:04.360 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.360 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.363 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.363 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.366 2907 6729 D ActivityTrigger: activityResumeTrigger: The activity in ApplicationInfo{a7f8437 de.mobilexag.mip.frame} is now in focus and seems to be in full-screen mode 09-04 19:45:04.366 2907 3502 W HtcSystemUPManager: HtcSystemUPHandler The policy is disabled. AppId: activity_history, category: launch 09-04 19:45:04.367 2907 6729 D BoostFramework: perfHint : hint: 0x1083 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): -1 type(userData2): -1 09-04 19:45:04.372 733 15523 D SDM : DisplayBase::BuildLayerStackStats: LayerStack layer_count: 4, app_layer_count: 3, gpu_target_index: 3, display type: 0 09-04 19:45:04.377 2907 6729 D InputDispatcher: setFocus: AppWindowToken{53bf94e token=Token{8599c49 ActivityRecord{90a5250 u0 de.mobilexag.mip.frame/com.transistorsoft.locationmanager.activity.TSLocationManagerActivity t10971}}} 09-04 19:45:04.380 3282 6715 I TopPkgCallbackInterface: onTopPackageChanged Bundle=Bundle[mParcelledData.dataSize=356] 09-04 19:45:04.384 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.384 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.384 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.384 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.384 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - Push Permission granted. Checking for subscription 09-04 19:45:04.385 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/auth-token - isTokenValid() - AuthToken expires at 04.10.2020, 19:34 09-04 19:45:04.385 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/frame - device is paused 09-04 19:45:04.387 3282 3282 I NavigationBar: Fix ratio changed, pkg = de.mobilexag.mip.frame 09-04 19:45:04.389 2112 3015 D TSLocationManager: [c.t.l.data.sqlite.b first] 09-04 19:45:04.389 2112 3015 D TSLocationManager: ✅ Locked 1 records 09-04 19:45:04.389 2112 3015 I TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:45:04.389 2112 3015 I TSLocationManager: 🔵 HTTP POST: f62427c8-202d-469f-9f4d-d96b9ed73e36 09-04 19:45:04.428 2112 2112 D TSLocationManager: [c.t.l.adapter.TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1 09-04 19:45:04.435 3282 3560 D LocationControllerImpl: onReceive =android.location.HIGH_POWER_REQUEST_CHANGE 09-04 19:45:04.435 3282 3560 D LocationControllerImpl: KDDI intent do not have mHasExtra =false 09-04 19:45:04.435 3282 3560 D LocationControllerImpl: KDDI emergency agency onReceive(), mIsHideGPS = false 09-04 19:45:04.436 3282 3560 D LocationControllerImpl: updateActiveLocationRequests hadActiveLocationRequests=false mAreActiveLocationRequests =true 09-04 19:45:04.442 2112 2998 I App : WARNING: Back Button Default Behavior will be overridden. The backbutton event will be fired! 09-04 19:45:04.445 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.447 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.447 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.447 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.447 2907 4423 D LocationManagerService: [PowerNavi_2.0] requestLocationUpdates: gps com.google.android.gms 0 09-04 19:45:04.449 2907 4423 I GnssLocationProvider: WakeLock acquired by sendMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@9657d5f) 09-04 19:45:04.450 8063 8105 I SensorManager: registerListenerImpl: listener = bicz@5f1941, sensor = {Sensor name="BMI160 Accelerometer", vendor="Bosch", version=1, type=1, maxRange=78.4532, resolution=0.0023942017, power=0.001, minDelay=2500}, delay = 20000, handler = Handler (aesg) {b75bee6} 09-04 19:45:04.451 2907 3331 D GnssLocationProvider: [GICON] ### GPS_ENABLED_CHANGE_ACTION ### (true) 09-04 19:45:04.451 2907 4421 D LocationManagerService: [PowerNavi_2.0] requestLocationUpdates: passive com.google.android.gms 0 09-04 19:45:04.451 2907 2924 I GnssLocationProvider: WakeLock released by handleMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@9657d5f) 09-04 19:45:04.452 2907 6729 W SensorService: D/enable: connection.get() = 0x7e04cbbb00, [v01-Initial version] 09-04 19:45:04.452 2907 6729 W SensorService: D/enable: get sensor name = BMI160 Accelerometer 09-04 19:45:04.452 2907 6729 D SensorService: enable: debug.sensorservice.log = 0 09-04 19:45:04.452 2907 6729 W SensorService: D/enable: pkg_name = bicz 09-04 19:45:04.453 3282 3282 D PhoneStatusBarPolicy: LocationController LocationActive =true 09-04 19:45:04.456 739 739 I nanohub : queueBatch: sensor=1, handle=1, period=20000000, latency=0 09-04 19:45:04.456 2907 6729 D SensorService: SensorDevice::activate: handle=0x01, enabled = 0x1 09-04 19:45:04.458 739 739 I nanohub : queueActivate: sensor=1, handle=1, enable=1 [V06-For CAMX] 09-04 19:45:04.458 2907 6729 D SensorService: SensorDevice::activate--: handle = 0x1, enabled = 0x1 09-04 19:45:04.458 2907 6729 W SensorService: D/pid=8063, uid=10022 09-04 19:45:04.458 2907 6729 W SensorService: D/Active sensors: size = 3 09-04 19:45:04.458 2907 6729 W SensorService: BMI160 Accelerometer (handle=0x00000001, connections=1) 09-04 19:45:04.458 2907 6729 W SensorService: Significant Motion (handle=0x0000000c, connections=1) 09-04 19:45:04.458 2907 6729 W SensorService: Device Orientation (handle=0x0000001e, connections=1) 09-04 19:45:04.458 2907 6729 W SensorService: D/enable--: 09-04 19:45:04.475 2907 3108 W SensorService: D/Accel[1](x, y, z, t) = ( -0.2, 5.1, 8.5, 734145293ms), sys_time = 734145303ms 09-04 19:45:04.492 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (light greylist, reflection) 09-04 19:45:04.495 2112 2112 W lexag.mip.fram: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (light greylist, reflection) 09-04 19:45:04.511 8063 8105 W Looper : Looper already prepared for this thread with a different value for the LOOPER_PREPARE_ALLOW_NON_CALLBACKS option. 09-04 19:45:04.513 2907 4417 W SensorService: D/enable: connection.get() = 0x7e0694d100, [v01-Initial version] 09-04 19:45:04.513 2907 4417 W SensorService: D/enable: get sensor name = BMI160 Accelerometer 09-04 19:45:04.513 2907 4417 D SensorService: enable: debug.sensorservice.log = 0 09-04 19:45:04.513 2907 4417 W SensorService: D/enable: pkg_name = unknown_package_pid_8063 09-04 19:45:04.515 2112 2112 D SystemWebChromeClient: https://localhost/code.js: Line 10876 : [ready] [object Object] 09-04 19:45:04.516 739 1621 I nanohub : queueFlush: sensor=1, handle=1 09-04 19:45:04.516 2907 4417 D SensorService: SensorDevice::activate: handle=0x01, enabled = 0x1 09-04 19:45:04.516 2907 4417 D SensorService: SensorDevice::activate--: handle = 0x1, enabled = 0x1 09-04 19:45:04.516 2907 4417 W SensorService: D/pid=8063, uid=10022 09-04 19:45:04.516 2907 4417 W SensorService: D/Active sensors: size = 3 09-04 19:45:04.516 2907 4417 W SensorService: BMI160 Accelerometer (handle=0x00000001, connections=2) 09-04 19:45:04.516 2907 4417 W SensorService: Significant Motion (handle=0x0000000c, connections=1) 09-04 19:45:04.516 2907 4417 W SensorService: Device Orientation (handle=0x0000001e, connections=1) 09-04 19:45:04.516 2907 4417 W SensorService: D/enable--: 09-04 19:45:04.516 2907 3108 W SensorService: D/sendEvents: connection = 0x7e0694d100, pkg_name = unknown_package_pid_8063, Ignored 09-04 19:45:04.517 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/routing/router-model - Navigating to startup. Args: [object Object] 09-04 19:45:04.517 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/routing/router-model - Navigated to startup. Args: [object Object] 09-04 19:45:04.518 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/routing/router-model - Updated args of startup: [object Object] 09-04 19:45:04.518 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/auth-token - isTokenValid() - AuthToken expires at 04.10.2020, 19:34 09-04 19:45:04.518 2907 3108 D SensorService: First flush event for sensor==1 09-04 19:45:04.518 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/startup/startup-model - Login validation done. Checking for updates 09-04 19:45:04.520 739 739 I nanohub : queueBatch: sensor=1, handle=1, period=10000000, latency=0 09-04 19:45:04.520 2907 4417 W SensorService: D/enable: connection.get() = 0x7e0694d100, [v01-Initial version] 09-04 19:45:04.521 2907 4417 W SensorService: D/enable: get sensor name = AK09915 Magnetometer (uncalibrated) 09-04 19:45:04.521 2907 4417 D SensorService: enable: debug.sensorservice.log = 0 09-04 19:45:04.521 2907 4417 W SensorService: D/enable: pkg_name = unknown_package_pid_8063 09-04 19:45:04.523 739 739 I nanohub : queueBatch: sensor=8, handle=24, period=200000000, latency=0 09-04 19:45:04.523 2907 4417 D SensorService: SensorDevice::activate: handle=0x18, enabled = 0x1 09-04 19:45:04.525 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.525 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.526 739 739 I nanohub : queueActivate: sensor=8, handle=24, enable=1 [V06-For CAMX] 09-04 19:45:04.526 2907 4417 D SensorService: SensorDevice::activate--: handle = 0x18, enabled = 0x1 09-04 19:45:04.526 2907 4417 W SensorService: D/pid=8063, uid=10022 09-04 19:45:04.526 2907 4417 W SensorService: D/Active sensors: size = 4 09-04 19:45:04.526 2907 4417 W SensorService: BMI160 Accelerometer (handle=0x00000001, connections=2) 09-04 19:45:04.526 2907 4417 W SensorService: Significant Motion (handle=0x0000000c, connections=1) 09-04 19:45:04.526 2907 4417 W SensorService: AK09915 Magnetometer (uncalibrated) (handle=0x00000018, connections=1) 09-04 19:45:04.526 2907 4417 W SensorService: Device Orientation (handle=0x0000001e, connections=1) 09-04 19:45:04.526 2907 4417 W SensorService: D/enable--: 09-04 19:45:04.528 739 794 I nanohub : osLog: [734952.157] [WO] ACC: 0.732, 5.807, 7.867, now = 716846181524us 09-04 19:45:04.528 739 794 I nanohub : osLog: [734954.181] [WO] ACC: 0.799, 5.704, 8.253, now = 716848138203us 09-04 19:45:04.528 739 794 I nanohub : osLog: [734956.147] [WO] ACC: -0.112, 5.724, 8.241, now = 716850094905us 09-04 19:45:04.528 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.529 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.529 739 794 I nanohub : osLog: [734958.172] [WO] ACC: 0.656, 5.714, 7.977, now = 716852051668us 09-04 19:45:04.529 739 794 I nanohub : osLog: [734960.198] [WO] ACC: 0.629, 5.815, 8.128, now = 716854008301us 09-04 19:45:04.529 739 794 I nanohub : osLog: [734960.587] EDGE: Current lock(2): +++ 09-04 19:45:04.531 739 794 I nanohub : osLog: [734960.587] EDGE: cfg: {KeyWake:00,Cam:0,PwrCtrl:1,OffChg:0,Dbg:0,Norm:1,CFR:0,Disp:1,PwrKey:0,USB:1,temp:32450} 09-04 19:45:04.531 739 794 I nanohub : osLog: [734960.587] EDGE: Current lock(2): --- 09-04 19:45:04.531 739 794 I nanohub : osLog: [734962.163] [WO] ACC: 0.558, 5.920, 7.711, now = 716855965111us 09-04 19:45:04.531 739 794 I nanohub : osLog: [734963.180] EDGE: Restore to 100Hz 09-04 19:45:04.531 739 794 I nanohub : osLog: [734963.181] EDGE: B0[DOWN] 09-04 19:45:04.531 739 794 I nanohub : osLog: [734963.181] EDGE: B1[DOWN] 09-04 19:45:04.533 739 794 I nanohub : osLog: [734963.359] [BMI160] accSetRate: rate=51200, latency=19999744, state=3 09-04 19:45:04.533 739 794 I nanohub : osLog: [734963.359] [BMI160] configMotion: any_motion_thd = 0xf, odr = 7 09-04 19:45:04.533 739 794 I nanohub : osLog: [734963.421] [BMI160] accSetRate: rate=102400, latency=9999360, state=3 09-04 19:45:04.533 739 794 I nanohub : osLog: [734963.421] [BMI160] configMotion: any_motion_thd = 0xf, odr = 8 09-04 19:45:04.535 739 794 I nanohub : osLog: [734963.426] [BMI160] magPower: on=1, state=3 09-04 19:45:04.536 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/overlay/overlay-manager - Adding overlay 1 [object Object] 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/logger - Start checking DB schema version. 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#4). query: `with recursive 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.537 2112 2112 D SystemWebChromeClient: parWork… args: FALLBACK_LOCALES,301 listArgs: undefined convert: undefined 09-04 19:45:04.539 739 739 I nanohub : queueBatch: sensor=8, handle=24, period=20000000, latency=0 09-04 19:45:04.539 2907 4423 W SensorService: D/enable: connection.get() = 0x7e0694d100, [v01-Initial version] 09-04 19:45:04.539 2907 4423 W SensorService: D/enable: get sensor name = BMI160 Gyroscope (uncalibrated) 09-04 19:45:04.539 2907 4423 D SensorService: enable: debug.sensorservice.log = 0 09-04 19:45:04.539 2907 4423 W SensorService: D/enable: pkg_name = unknown_package_pid_8063 09-04 19:45:04.541 739 739 I nanohub : queueBatch: sensor=6, handle=25, period=160000000, latency=0 09-04 19:45:04.542 2907 4423 D SensorService: SensorDevice::activate: handle=0x19, enabled = 0x1 09-04 19:45:04.544 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#4) in 0.012s. Read 0 rows. 09-04 19:45:04.544 739 739 I nanohub : queueActivate: sensor=6, handle=25, enable=1 [V06-For CAMX] 09-04 19:45:04.544 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/startup/startup-model - No custom fallback locales configured 09-04 19:45:04.544 2907 4423 D SensorService: SensorDevice::activate--: handle = 0x19, enabled = 0x1 09-04 19:45:04.544 2907 4423 W SensorService: D/pid=8063, uid=10022 09-04 19:45:04.544 2907 4423 W SensorService: D/Active sensors: size = 5 09-04 19:45:04.544 2907 4423 W SensorService: BMI160 Accelerometer (handle=0x00000001, connections=2) 09-04 19:45:04.544 2907 4423 W SensorService: Significant Motion (handle=0x0000000c, connections=1) 09-04 19:45:04.544 2907 4423 W SensorService: AK09915 Magnetometer (uncalibrated) (handle=0x00000018, connections=1) 09-04 19:45:04.544 2907 4423 W SensorService: BMI160 Gyroscope (uncalibrated) (handle=0x00000019, connections=1) 09-04 19:45:04.544 2907 4423 W SensorService: Device Orientation (handle=0x0000001e, connections=1) 09-04 19:45:04.544 2907 4423 W SensorService: D/enable--: 09-04 19:45:04.545 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.545 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.545 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.547 739 739 I nanohub : queueBatch: sensor=6, handle=25, period=10000000, latency=0 09-04 19:45:04.551 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:45:04.551 2112 2112 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:45:04.552 2112 3015 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:45:04.552 2112 3015 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:45:04.553 2112 2158 W TSLocationManager: [c.t.l.http.HttpService$i onResponse] 09-04 19:45:04.553 2112 2158 W TSLocationManager: ⚠️ Response: 450, Unknown 09-04 19:45:04.555 2112 2158 D TSLocationManager: [c.t.l.data.sqlite.b unlock] 09-04 19:45:04.555 2112 2158 D TSLocationManager: ✅ UNLOCKED: f62427c8-202d-469f-9f4d-d96b9ed73e36 09-04 19:45:04.556 2112 2158 I TSLocationManager: [c.t.l.u.BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2 09-04 19:45:04.557 2112 3015 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:45:04.557 2112 2158 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false] 09-04 19:45:04.558 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.558 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.559 2907 4142 D ActivityTrigger: ActivityTrigger activityPauseTrigger 09-04 19:45:04.561 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.561 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.564 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/routing/router-model - Navigating to index. Args: undefined 09-04 19:45:04.564 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/routing/router-model - Navigated to index. Args: undefined 09-04 19:45:04.569 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.569 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.569 2112 3014 D TEST : cdvfile://localhost/persistent/log/mip.log: 351 09-04 19:45:04.572 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.572 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.575 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/auth-token - isTokenValid() - AuthToken expires at 04.10.2020, 19:34 09-04 19:45:04.576 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.577 8063 8063 I GeofencerStateMachine: sendNewLocationAvailability: availability=LocationAvailability[isLocationAvailable: true] 09-04 19:45:04.577 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.579 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/message/fetch-queue - Fetching receive queue 09-04 19:45:04.579 3268 3268 E TouchPalIME: TouchPalIME onFinishInput 09-04 19:45:04.579 3268 3268 D TouchPalIMEImpl: onFinishInput 09-04 19:45:04.580 3268 3268 E TouchPalIME: TouchPalIME onStartInput 09-04 19:45:04.580 3268 3268 D TouchPalIMEImpl: TouchPalIME onStartInput 09-04 19:45:04.581 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:04.581 2907 3502 W HtcSystemUPManager: HtcSystemUPHandler The policy is disabled. AppId: activity_history, category: launch 09-04 19:45:04.582 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:04.583 2907 4421 D ANDR-PERF-ACT-TRIG: resume activity de.mobilexag.mip.frame/de.mobilexag.mip.frame.MainActivity/40100 09-04 19:45:04.583 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:04.583 2907 4421 D ActivityTrigger: activityResumeTrigger: The activity in ApplicationInfo{a7f8437 de.mobilexag.mip.frame} is now in focus and seems to be in full-screen mode 09-04 19:45:04.583 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:04.583 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'launch boost'(1081:1) matches at cond 0 09-04 19:45:04.583 2907 4421 D BoostFramework: perfHint : hint: 0x1083 pkg_name(userDataStr): de.mobilexag.mip.frame duration(userData1): -1 type(userData2): -1 09-04 19:45:04.584 2907 4421 D InputDispatcher: setFocus: AppWindowToken{21128db token=Token{e00cdea ActivityRecord{9e8b1d5 u0 de.mobilexag.mip.frame/.MainActivity t10970}}} 09-04 19:45:04.584 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:04.584 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:04.588 2112 2933 D libc : [NET] android_getaddrinfo_proxy get netid:0 09-04 19:45:04.589 2507 3023 D libc : [NET] _dns_getaddrinfo+, netid:325, mark:917829 09-04 19:45:04.589 2507 3023 D libc : [NET] _dns_getaddrinfo-, (NS_SUCCESS) 09-04 19:45:04.589 2112 2933 D libc : [NET] android_getaddrinfo_proxy-, success 09-04 19:45:04.592 3282 6715 I TopPkgCallbackInterface: onTopPackageChanged Bundle=Bundle[mParcelledData.dataSize=288] 09-04 19:45:04.592 3282 3282 I NavigationBar: Fix ratio changed, pkg = de.mobilexag.mip.frame 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#5). query: `with recursive 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Sync.MessageQueueRefreshInterval,301 listArgs: undefined convert: undefined 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.601 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.601 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/overlay/overlay-manager - Removing overlay 1 09-04 19:45:04.603 2907 3108 W SensorService: D/[16](x, y, z, t) = ( -0.1, 0.2, 0.1, 734145422ms), sys_time = 734145431ms 09-04 19:45:04.607 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.607 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.613 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/routing/router-model - Navigating to task-list. Args: [object Object] 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#6). query: `with recursive 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.614 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Order.EnableCalendar,301 listArgs: undefined convert: undefined 09-04 19:45:04.616 8063 8105 W inertial-anchor: Significant calibration change for SENSOR_TYPE_MAGNETOMETER_UT from CAL_SOURCE_UNCAL_SENSOR, delta=48.4281, threshold=5, at time: 646921864758496 09-04 19:45:04.616 8063 8105 W inertial-anchor: Reinitializing due to significant calibration change 09-04 19:45:04.622 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:45:04.622 2112 2112 D TSLocationManager: 🎾 LocationRequestService [eventCount: 1] 09-04 19:45:04.623 2112 3022 I TSLocationManager: [c.t.l.s.LocationRequestService a] 09-04 19:45:04.623 2112 3022 I TSLocationManager: ℹ️ Location availability: true 09-04 19:45:04.624 2112 3022 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true] 09-04 19:45:04.627 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:45:04.627 2112 2112 D TSLocationManager: 🔴 BackgroundTaskService destroyed 09-04 19:45:04.630 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51790 09-04 19:45:04.630 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:04.630 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:04.634 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:04.636 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:04.637 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51791 09-04 19:45:04.637 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:04.637 755 845 I ANDR-PERF-PNPUTIL: Re-check rule 'long duration input boost'(11F9:1) matches at cond 0 09-04 19:45:04.638 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:04.638 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:04.641 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.641 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.645 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#5) in 0.05s. Read 1 rows. 09-04 19:45:04.646 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.647 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.647 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.648 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.651 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.651 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.651 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.651 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.651 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.654 2112 2112 D CordovaActivity: Resumed the activity. 09-04 19:45:04.656 8063 8105 E inertial-anchor: MagMeasurement timestamp 734145432544948 ignored. Must be strictly later in time than state timestamp 0 and latest mag measurement timestamp 734145432544948. 09-04 19:45:04.658 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.659 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.660 2112 3014 D TEST : cdvfile://localhost/persistent/log/mip.log: 1816 09-04 19:45:04.664 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:45:04.664 2112 2112 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#6) in 0.048s. Read 1 rows. 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#7). query: `with recursive 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Gis.Provider,301 listArgs: undefined convert: undefined 09-04 19:45:04.665 2112 2139 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:45:04.665 2112 2139 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:45:04.665 2112 2139 I TSLocationManager: ║ Motion Transition Result 09-04 19:45:04.665 2112 2139 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:45:04.665 2112 2139 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:45:04.665 2112 2139 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:45:04.665 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/frame - device is resuming 09-04 19:45:04.665 2112 2139 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:45:04.666 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - Initializing push 09-04 19:45:04.672 2907 2926 D StatusBarManagerService: setSystemUiVisibility(0x8008) 09-04 19:45:04.672 2907 2926 D StatusBarManagerService: hiding MENU key 09-04 19:45:04.673 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.673 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.673 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.675 2907 3156 D WifiStateMachine: handleMessage: E msg.what=131155 09-04 19:45:04.675 2907 3156 D WifiStateMachine: processMsg: ConnectedState 09-04 19:45:04.675 2907 3156 D WifiStateMachine: processMsg: L2ConnectedState 09-04 19:45:04.675 2112 2998 V Push_Plugin: execute: action=init 09-04 19:45:04.675 2112 3014 V Push_Plugin: execute: data=[{"android":{},"ios":{"sound":true,"alert":true,"badge":true}}] 09-04 19:45:04.676 2112 3014 V Push_Plugin: execute: jo={} 09-04 19:45:04.677 2112 3014 V Push_Plugin: execute: senderID=638410838104 09-04 19:45:04.677 2112 3014 V Push_Plugin: onRegistered: {"registrationId":"dVq6LjXR6zQ:APA91bEIU9nZTRDkkkxFDGTI7OLznSkjmMWcHPusH9NvJIU9NGOtjJDHDO6QEGTWoV9KbYqXhK5wFn7I8YHwudN1XsfwuoWhHkYeYsd6rkRL7n6R5Zbvjyg-BRrVVGE8tOFn4k8Vi54d","registrationType":"FCM"} 09-04 19:45:04.677 2112 3014 D Push_Plugin: no icon option 09-04 19:45:04.677 2112 3014 D Push_Plugin: no iconColor option 09-04 19:45:04.679 3268 3268 E TouchPalIME: TouchPalIME onFinishInput 09-04 19:45:04.679 3268 3268 D TouchPalIMEImpl: onFinishInput 09-04 19:45:04.680 3268 3268 E TouchPalIME: TouchPalIME onStartInput 09-04 19:45:04.681 3268 3268 D TouchPalIMEImpl: TouchPalIME onStartInput 09-04 19:45:04.681 2112 2998 D GeolocationPlugin: We are entering execute 09-04 19:45:04.682 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:04.683 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#7) in 0.017s. Read 1 rows. 09-04 19:45:04.684 3268 3268 I g : /data/user/0/com.emoji.keyboard.touchpal.oem/files/v5701/assets_dir/assets/TouchPalResources.tprc don't exists 09-04 19:45:04.684 2907 3156 D WifiStateMachine: CMD_RSSI_POLL: TxBytes = 1031105, RxBytes = 1335509 09-04 19:45:04.684 2907 3156 D WifiStateMachine: handleMessage: X 09-04 19:45:04.692 2112 2998 V Push_Plugin: execute: action=hasPermission 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#8). query: `with recursive 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Order.EnableLocalOrder,301 listArgs: undefined convert: undefined 09-04 19:45:04.693 2112 3014 D Push_Plugin: has permission: true 09-04 19:45:04.693 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - registration event: dVq6LjXR6zQ:APA91bEIU9nZTRDkkkxFDGTI7OLznSkjmMWcHPusH9NvJIU9NGOtjJDHDO6QEGTWoV9KbYqXhK5wFn7I8YHwudN1XsfwuoWhHkYeYsd6rkRL7n6R5Zbvjyg-BRrVVGE8tOFn4k8Vi54d 09-04 19:45:04.696 2907 6729 D LocationManagerService: [PowerNavi_2.0] requestLocationUpdates: fused de.mobilexag.mip.frame 0 09-04 19:45:04.700 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/push/push-api - Push Permission granted. Checking for subscription 09-04 19:45:04.704 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/auth-token - isTokenValid() - AuthToken expires at 04.10.2020, 19:34 09-04 19:45:04.705 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#8) in 0.012s. Read 1 rows. 09-04 19:45:04.705 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/overlay/overlay-manager - Adding overlay 2 [object Object] 09-04 19:45:04.709 2112 3014 D TEST : cdvfile://localhost/persistent/log/mip.log: 168 09-04 19:45:04.710 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/routing/router-model - Navigated to task-list. Args: [object Object] 09-04 19:45:04.711 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : INFO packages/routing/router-model - Updated args of task-list: [object Object] 09-04 19:45:04.717 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.717 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.727 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.727 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.733 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.733 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.733 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.742 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.742 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.742 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#9). query: `with recursive 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.761 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Confirmations.MaxTimeTrackingDuration,301 listArgs: undefined convert: undefined 09-04 19:45:04.762 2907 4421 D LocationManagerService: [PowerNavi_2.0] requestLocationUpdates: gps com.google.android.gms 0 09-04 19:45:04.763 2907 4421 I GnssLocationProvider: WakeLock acquired by sendMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@2d8de61) 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - selectSingle (#10). query: `select 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: count(*) as count 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: from 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: Assignment 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: inner join AssignmentWorkflowStatus 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: on AssignmentWorkflowStatus.assignmentId = Assignment.id 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: inner join [Order] on 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: [Order].id = Assignment.orderId 09-04 19:45:04.764 2112 2112 D SystemWebChromeClient: … args: 301,1 listArgs: undefined convert: undefined 09-04 19:45:04.764 2907 2924 I GnssLocationProvider: WakeLock released by handleMessage(SET_REQUEST, 0, com.android.server.location.GnssLocationProvider$GpsRequest@2d8de61) 09-04 19:45:04.768 2112 2933 D SERVER : Handling local request: https://localhost/c28df5d67b8e0fd14ff07235537b1c77.ttf 09-04 19:45:04.768 4392 4392 W NotificationListener: shouldBeFilteredOut !canShowBadge() de.mobilexag.mip.frame 09-04 19:45:04.769 4458 4458 I Launcher: Deferring update until onResume 09-04 19:45:04.788 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#11). query: `-- ?1 filter => TaskListFilter 09-04 19:45:04.788 2112 2112 D SystemWebChromeClient: -- - unread: Only NEW+SYNC assignments 09-04 19:45:04.788 2112 2112 D SystemWebChromeClient: -- - local: Only CLIENT orders 09-04 19:45:04.788 2112 2112 D SystemWebChromeClient: -- - pool: all pool assignments 09-04 19:45:04.788 2112 2112 D SystemWebChromeClient: -- NOTE: task-list-filter.ts is also used for filtering (mo… args: planned,301,,2020-08-30T22:00:00.000Z,2020-09-06T22:00:00.000Z,1 listArgs: undefined convert: [object Object] 09-04 19:45:04.792 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#12). query: `-- ?1 filter => TaskListFilter 09-04 19:45:04.792 2112 2112 D SystemWebChromeClient: -- - unread: Only NEW+SYNC assignments 09-04 19:45:04.792 2112 2112 D SystemWebChromeClient: -- - local: Only CLIENT orders 09-04 19:45:04.792 2112 2112 D SystemWebChromeClient: -- - pool: all pool assignments 09-04 19:45:04.792 2112 2112 D SystemWebChromeClient: -- NOTE: task-list-filter.ts is also used for filtering (mo… args: planned,301,,2020-09-03T22:00:00.000Z,2020-09-04T22:00:00.000Z,1 listArgs: undefined convert: [object Object] 09-04 19:45:04.794 3282 3282 I StackScroller: updateEmptyShade(true,true,false) 09-04 19:45:04.794 3282 3282 I StatusBar: updateEmptyShade(true,true) 09-04 19:45:04.794 3282 3282 I StackScroller: setBlockTouch:false 09-04 19:45:04.806 2112 3014 D TEST : cdvfile://localhost/persistent/log/mip.log: 143 09-04 19:45:04.807 8063 8105 W inertial-anchor: Max norm deviation percent value of 0 is non-positive. Aborting anomalous mag measurement detection. 09-04 19:45:04.813 8063 8063 I GeofencerStateMachine: sendNewLocationAvailability: availability=LocationAvailability[isLocationAvailable: true] 09-04 19:45:04.825 8063 8063 I GeofencerStateMachine: sendNewLocationAvailability: availability=LocationAvailability[isLocationAvailable: true] 09-04 19:45:04.832 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#9) in 0.04s. Read 1 rows. 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#13). query: `select 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: status, 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: confirmationType, 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: start --> ZonedDateTime 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: from ConfirmationReservation 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: where 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: not storno and not deleted 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: and workerWorkunitId = ?1 09-04 19:45:04.833 2112 2112 D SystemWebChromeClient: and (confirmationType = 'ClientTrav… args: 301 listArgs: undefined convert: undefined 09-04 19:45:04.839 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished selectSingle (#10) in 0.073s. Read 1 row. 09-04 19:45:04.848 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#11) in 0.058s. Read 0 rows. 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#14). query: `with recursive 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.849 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Order.ShowFinishedAssignments,301 listArgs: undefined convert: undefined 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#12) in 0.062s. Read 0 rows. 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - select (#15). query: `with recursive 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: wu(id, parId, sortIndex) as ( 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: id, 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: parentWorkunitId, 0 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: from Workunit initialWorkunit 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: where initialWorkunit.id = ?2 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: union 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: select 09-04 19:45:04.856 2112 2112 D SystemWebChromeClient: parWork… args: ClientConfig.Order.ShowFinishedAssignments,301 listArgs: undefined convert: undefined 09-04 19:45:04.864 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#13) in 0.061s. Read 1 rows. 09-04 19:45:04.890 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#14) in 0.035s. Read 1 rows. 09-04 19:45:04.910 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/database/select - Finished select (#15) in 0.052s. Read 1 rows. 09-04 19:45:04.920 2112 2112 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:45:04.920 2112 2112 D TSLocationManager: 🔴 ActivityRecognitionService destroyed 09-04 19:45:05.145 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51789 09-04 19:45:05.146 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:05.147 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:05.147 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:05.268 22953 22953 E wpa_supplicant: No VendorStaIfaceCallback is register 09-04 19:45:05.269 2907 3156 D WifiStateMachine: handleMessage: E msg.what=147462 09-04 19:45:05.269 2907 3156 D WifiStateMachine: processMsg: ConnectedState 09-04 19:45:05.269 2907 3156 D WifiStateMachine: processMsg: L2ConnectedState 09-04 19:45:05.269 2907 3156 D WifiStateMachine: processMsg: ConnectModeState 09-04 19:45:05.269 2907 3156 D WifiStateMachine: mPrevSupplicantState = COMPLETED newSupplicantState = GROUP_HANDSHAKE 09-04 19:45:05.270 2907 3156 D WifiStateMachine: handleMessage: X 09-04 19:45:05.272 3282 3282 D NetworkController: [WifiActivity] Connectd: 3 09-04 19:45:05.272 3282 3282 D NetworkController: mDataModel[SLOT_1].mLwaConnected =false/false 09-04 19:45:05.273 22953 22953 I wpa_supplicant: wlan0: WPA: Group rekeying completed with 3c:a6:2f:08:25:fe [GTK=CCMP] 09-04 19:45:05.273 22953 22953 E wpa_supplicant: No VendorStaIfaceCallback is register 09-04 19:45:05.276 2907 3156 D WifiStateMachine: handleMessage: E msg.what=147459 09-04 19:45:05.276 2907 3156 D WifiStateMachine: processMsg: ConnectedState 09-04 19:45:05.276 2907 3156 D WifiStateMachine: processMsg: L2ConnectedState 09-04 19:45:05.277 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:05.277 3282 3282 D NetworkController: DataModel State = 0 hasDataRegService = true DataConnected :false hasVoiceRegService: true PhoneType : 1 DataNetType :13 slot =0 09-04 19:45:05.277 2907 3156 D WifiStateMachine: handleMessage: X 09-04 19:45:05.278 2907 3156 D WifiStateMachine: handleMessage: E msg.what=147462 09-04 19:45:05.278 2907 3156 D WifiStateMachine: processMsg: ConnectedState 09-04 19:45:05.278 2907 3156 D WifiStateMachine: processMsg: L2ConnectedState 09-04 19:45:05.278 2907 3156 D WifiStateMachine: processMsg: ConnectModeState 09-04 19:45:05.278 2907 3156 D WifiStateMachine: mPrevSupplicantState = GROUP_HANDSHAKE newSupplicantState = COMPLETED 09-04 19:45:05.278 2907 3156 D WifiStateMachine: handleMessage: X 09-04 19:45:05.284 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:05.285 3282 3282 D NetworkController: roaming : false 09-04 19:45:05.285 3282 3282 D NetworkController: level=3/5 09-04 19:45:05.285 3282 3282 D NetworkController: isDualSimDualStandby : SignaltheOtherDM.mPhoneState : 0 09-04 19:45:05.287 3282 3282 D NetworkController: DefaultNetwork= false checkInetCondition =false inetCondition=0 09-04 19:45:05.287 3282 3282 D NetworkController: DataModel State = 4 hasDataRegService = false DataConnected :false hasVoiceRegService: false PhoneType : 1 DataNetType :0 slot =1 09-04 19:45:05.288 3282 3282 D SignalClusterView: vpn: VISIBLE 09-04 19:45:05.288 3282 3282 D SignalClusterView: wifi=V,stat_sys_wifi_signal_inandout_4 air=G,stat_sys_signal_flightmode data[0]=G,(null) sig[0]=V,cdma_stat_sys_s1_5signal_3 data[1]=G,(null) sig[1]=G,(null) 09-04 19:45:05.288 3282 3282 D SignalClusterView: vpn: VISIBLE 09-04 19:45:05.288 3282 3282 D SignalClusterView: wifi=V,stat_sys_wifi_signal_inandout_4 air=G,stat_sys_signal_flightmode data[0]=G,(null) sig[0]=V,cdma_stat_sys_s1_5signal_3 data[1]=G,(null) sig[1]=G,(null) 09-04 19:45:05.288 3282 3282 D SignalClusterView: vpn: VISIBLE 09-04 19:45:05.288 3282 3282 D SignalClusterView: wifi=V,stat_sys_wifi_signal_inandout_4 air=G,stat_sys_signal_flightmode data[0]=G,(null) sig[0]=V,cdma_stat_sys_s1_5signal_3 data[1]=G,(null) sig[1]=G,(null) 09-04 19:45:05.288 3282 3282 D SignalClusterView: vpn: VISIBLE 09-04 19:45:05.288 3282 3282 D SignalClusterView: wifi=V,stat_sys_wifi_signal_inandout_4 air=G,stat_sys_signal_flightmode data[0]=G,(null) sig[0]=V,cdma_stat_sys_s1_5signal_3 data[1]=G,(null) sig[1]=G,(null) 09-04 19:45:05.294 3282 3560 D Tile.WifiTile: isForbidden = false 09-04 19:45:05.311 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/fetch-validator - API request successful. https://feature.prd.mobilexag.de:8443/sync-api/3.0/tenants/1/clients/102/messages 09-04 19:45:05.311 2112 2112 D SystemWebChromeClient: https://localhost/code__diagnostic.js: Line 11993 : DEBUG packages/message/fetch-queue - Successfully received message queue 09-04 19:45:05.314 755 845 I ANDR-PERF-MPCTL: perfRel: handle = 51793 09-04 19:45:05.314 755 845 I ANDR-PERF-PNPUTIL: Rule 'default'(0:0) matches at cond 0 09-04 19:45:05.315 755 845 W ANDR-PERF-PNPUTIL: Write '/sys/class/mmc_host/mmc0/clk_scaling/enable' failed (Invalid argument) 09-04 19:45:05.315 755 845 W ANDR-PERF-PNPUTIL: Unable to open '/dev/cpuset/foreground/boost/cpus' (No such file or directory) 09-04 19:45:05.554 3282 3282 D NetworkController: [Strength][0][SubId:1][GSM] SignalStrength: 99 0 -120 -160 -120 -160 -1 20 -108 -10 78 2147483647 0 2147483647 0 0 2147483647 gsm|lte use_rsrp_and_rssnr_for_lte_level [-128, -118, -108, -98] [-115, -105, -95, -85] -1 -1 0 2147483647 2147483647 3 false 0 0 false false 1 0 -1 0 0 0 0 0 0 09-04 19:45:05.555 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:05.556 3282 3282 D NetworkController: DataModel State = 0 hasDataRegService = true DataConnected :false hasVoiceRegService: true PhoneType : 1 DataNetType :13 slot =0 09-04 19:45:05.557 3282 3282 D NetworkController: DefaultNetwork= true checkInetCondition =true inetCondition=0 09-04 19:45:05.558 3282 3282 D NetworkController: roaming : false 09-04 19:45:05.558 3282 3282 D NetworkController: level=3/5 09-04 19:45:05.558 3282 3282 D NetworkController: isDualSimDualStandby : SignaltheOtherDM.mPhoneState : 0 09-04 19:45:05.559 3282 3282 D NetworkController: DefaultNetwork= false checkInetCondition =false inetCondition=0 09-04 19:45:05.560 3282 3282 D NetworkController: DataModel State = 4 hasDataRegService = false DataConnected :false hasVoiceRegService: false PhoneType : 1 DataNetType :0 slot =1
christocracy commented 4 years ago

And filter your logs.

$ adb logcat *:S TSLocationManager:V
tobiaswaltl commented 4 years ago

Sorry, the newlines must have got lost somehow. Now formatted and filtered:

adb logcat *:S TSLocationManager:V 09-04 19:53:27.343 8748 8893 E TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:53:27.343 8748 8893 E TSLocationManager: ║ LICENSE VALIDATION FAILURE: de.mobilexag.mip.frame 09-04 19:53:27.343 8748 8893 E TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:53:27.343 8748 8893 E TSLocationManager: ╟─ Invalid license key: YOUR_LICENSE_KEY_HERE 09-04 19:53:27.343 8748 8893 E TSLocationManager: ╟─ BackgroundGeolocation is fully functional in DEBUG builds without a license. 09-04 19:53:27.343 8748 8893 E TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:53:27.398 8748 8893 D TSLocationManager: $ ready() 09-04 19:53:27.402 8748 8893 D TSLocationManager: [c.t.l.adapter.TSConfig d] ℹ️ Persist config, dirty: [debug, desiredAccuracy, extras, httpRootProperty, locationTemplate, logLevel, startOnBoot, stopOnTerminate, url] 09-04 19:53:27.414 8748 8893 D TSLocationManager: [c.t.l.a.BackgroundGeolocation ready] LocationPermission :false 09-04 19:53:27.419 8748 8748 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:53:27.419 8748 8748 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:53:27.419 8748 8748 I TSLocationManager: ║ HTTP Service (count: 0) 09-04 19:53:27.419 8748 8748 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:15.137 8748 8893 D TSLocationManager: $ start() 09-04 19:54:15.141 8748 8893 I TSLocationManager: [c.t.locationmanager.util.b a] 09-04 19:54:15.141 8748 8893 I TSLocationManager: 🔵 LocationAuthorization: Requesting Background permission 09-04 19:54:17.293 8748 8748 I TSLocationManager: [c.t.locationmanager.util.b$f onPermissionGranted] 09-04 19:54:17.293 8748 8748 I TSLocationManager: ✅ LocationAuthorization: Permission granted 09-04 19:54:17.296 8748 8925 I TSLocationManager: - Enable: false → true, trackingMode: 1 09-04 19:54:17.328 8748 8925 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:54:17.328 8748 8925 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:54:17.346 8748 8925 D TSLocationManager: [c.t.l.http.HttpService startMonitoringConnectivityChanges] 09-04 19:54:17.346 8748 8925 D TSLocationManager: 🎾 Start monitoring connectivity changes 09-04 19:54:17.350 8748 8748 D TSLocationManager: [c.t.l.adapter.TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1 09-04 19:54:17.359 8748 9509 D TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:17.359 8748 9509 D TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:17.359 8748 9509 D TSLocationManager: ║ 📶 Connectivity change: connected? true 09-04 19:54:17.359 8748 9509 D TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:17.359 8748 8925 D TSLocationManager: [c.t.locationmanager.device.a c] 09-04 19:54:17.359 8748 8925 D TSLocationManager: 🎾 Start monitoring powersave changes 09-04 19:54:17.364 8748 8925 I TSLocationManager: [c.t.l.service.HeartbeatService c] 09-04 19:54:17.364 8748 8925 I TSLocationManager: 🔴 Stop heartbeat 09-04 19:54:17.367 8748 8925 D TSLocationManager: [c.t.locationmanager.util.b b] 09-04 19:54:17.367 8748 8925 D TSLocationManager: ℹ️ LocationAuthorization: Permission granted 09-04 19:54:17.367 8748 8925 I TSLocationManager: [c.t.l.service.TrackingService a] 09-04 19:54:17.367 8748 8925 I TSLocationManager: 🔵 setPace: false → false 09-04 19:54:17.436 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:17.436 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:17.440 8748 9510 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:17.440 8748 9510 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:54:17.451 8748 9510 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:17.497 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:17.497 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:17.498 8748 9510 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:17.498 8748 9510 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:17.498 8748 9510 I TSLocationManager: ║ Motion Transition Result 09-04 19:54:17.498 8748 9510 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:17.498 8748 9510 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:54:17.498 8748 9510 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:17.499 8748 9510 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:17.609 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:17.609 8748 8748 D TSLocationManager: 🎾 LocationRequestService [eventCount: 1] 09-04 19:54:17.610 8748 8925 I TSLocationManager: [c.t.l.s.LocationRequestService a] 09-04 19:54:17.610 8748 8925 I TSLocationManager: ℹ️ Location availability: true 09-04 19:54:17.611 8748 8925 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true] 09-04 19:54:17.759 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:17.759 8748 8748 D TSLocationManager: 🔴 ActivityRecognitionService destroyed 09-04 19:54:18.369 8748 9512 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:54:18.369 8748 9512 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:18.369 8748 9512 I TSLocationManager: ║ HTTP Service (count: 0) 09-04 19:54:18.369 8748 9512 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.209 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.209 8748 8748 D TSLocationManager: 🎾 LocationRequestService [eventCount: 1] 09-04 19:54:19.216 8748 8926 I TSLocationManager: [c.t.l.s.LocationRequestService b] 09-04 19:54:19.216 8748 8926 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:19.216 8748 8926 I TSLocationManager: ║ motionchange LocationResult: 1 09-04 19:54:19.216 8748 8926 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.216 8748 8926 I TSLocationManager: ╟─ 📍 Location[fused 48,172672,11,592332 hAcc=13 et=+8d12h4m58s400ms alt=554.7999877929688 vAcc=8 sAcc=??? bAcc=??? {Bundle[mParcelledData.dataSize=52]}], age: 1640ms, time: 1599242057571 09-04 19:54:19.224 8748 8926 I TSLocationManager: [c.t.l.l.TSLocationManager onSingleLocationResult] 09-04 19:54:19.224 8748 8926 I TSLocationManager: 🔵 Acquired motionchange position, isMoving: false 09-04 19:54:19.225 8748 8926 D TSLocationManager: [c.t.l.l.TSLocationManager calculateMedianAccuracy] Median accuracy: 12.617 09-04 19:54:19.237 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false] 09-04 19:54:19.263 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:19.263 8748 8748 D TSLocationManager: 🔴 LocationRequestService destroyed 09-04 19:54:19.297 8748 8926 D TSLocationManager: [c.t.l.s.LocationRequestService b] SingleLocationRequest 1 isFinished? true 09-04 19:54:19.297 8748 8748 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:54:19.297 8748 8748 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:54:19.298 8748 8926 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false] 09-04 19:54:19.303 8748 8748 D TSLocationManager: [c.t.l.g.TSGeofenceManager startMonitoringStationaryRegion] 09-04 19:54:19.303 8748 8748 D TSLocationManager: 🎾 Start monitoring stationary region (radius: 150.0m 48.1726716,11.5923321 hAcc=12.617) 09-04 19:54:19.307 8748 8925 I TSLocationManager: [c.t.l.data.sqlite.b persist] 09-04 19:54:19.307 8748 8925 I TSLocationManager: ✅ INSERT: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:19.313 8748 8925 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:54:19.313 8748 8925 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:19.313 8748 8925 I TSLocationManager: ║ HTTP Service (count: 1) 09-04 19:54:19.313 8748 8925 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.341 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.341 8748 8748 D TSLocationManager: 🎾 TrackingService [eventCount: 1] 09-04 19:54:19.342 8748 8748 I TSLocationManager: [c.t.l.service.TrackingService h] 09-04 19:54:19.342 8748 8748 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:19.342 8748 8748 I TSLocationManager: ║ TrackingService motionchange: false 09-04 19:54:19.342 8748 8748 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.342 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: false] 09-04 19:54:19.379 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.379 8748 8748 D TSLocationManager: 🎾 BackgroundTaskService [eventCount: 1] 09-04 19:54:19.380 8748 8748 I TSLocationManager: [c.t.l.u.BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 1 09-04 19:54:19.398 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.398 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:19.400 8748 8925 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:19.400 8748 8925 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:54:19.404 8748 8925 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:19.407 8748 8926 D TSLocationManager: [c.t.l.data.sqlite.b first] 09-04 19:54:19.407 8748 8926 D TSLocationManager: ✅ Locked 1 records 09-04 19:54:19.409 8748 8926 I TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:19.409 8748 8926 I TSLocationManager: 🔵 HTTP POST: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:19.419 8748 8926 E TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:19.419 8748 8926 E TSLocationManager: ‼️ Expected URL scheme 'http' or 'https' but no colon was found 09-04 19:54:19.421 8748 8926 D TSLocationManager: [c.t.l.data.sqlite.b unlock] 09-04 19:54:19.421 8748 8926 D TSLocationManager: ✅ UNLOCKED: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:19.422 8748 8926 I TSLocationManager: [c.t.l.u.BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 1 09-04 19:54:19.422 8748 8926 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false] 09-04 19:54:19.424 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:19.424 8748 8748 D TSLocationManager: 🔴 BackgroundTaskService destroyed 09-04 19:54:19.474 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.474 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:19.475 8748 9512 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:19.475 8748 9512 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:54:19.478 8748 9512 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:19.520 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.520 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:19.521 8748 9512 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:19.521 8748 9512 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:19.521 8748 9512 I TSLocationManager: ║ Motion Transition Result 09-04 19:54:19.521 8748 9512 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.521 8748 9512 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:54:19.521 8748 9512 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:19.522 8748 9512 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:19.547 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:19.547 8748 8748 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:19.548 8748 9537 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:19.548 8748 9537 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:19.548 8748 9537 I TSLocationManager: ║ Motion Transition Result 09-04 19:54:19.548 8748 9537 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:19.548 8748 9537 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:54:19.548 8748 9537 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:19.549 8748 9537 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:19.601 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:19.601 8748 8748 D TSLocationManager: 🔴 TrackingService destroyed 09-04 19:54:19.803 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:19.803 8748 8748 D TSLocationManager: 🔴 ActivityRecognitionService destroyed 09-04 19:54:22.591 8748 8893 D TSLocationManager: $ getState() 09-04 19:54:22.598 8748 8893 D TSLocationManager: $ setConfig() 09-04 19:54:22.607 8748 8893 D TSLocationManager: [c.t.l.adapter.TSConfig d] ℹ️ Persist config, dirty: [extras, headers, params] 09-04 19:54:22.616 8748 8748 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:54:22.616 8748 8748 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:22.616 8748 8748 I TSLocationManager: ║ HTTP Service (count: 1) 09-04 19:54:22.616 8748 8748 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:22.616 8748 8893 D TSLocationManager: $ getState() 09-04 19:54:22.624 8748 8893 D TSLocationManager: $ setConfig() 09-04 19:54:22.628 8748 8893 D TSLocationManager: [c.t.l.adapter.TSConfig d] ℹ️ Persist config, dirty: [extras, headers, params, url] 09-04 19:54:22.646 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:22.646 8748 8748 D TSLocationManager: 🎾 BackgroundTaskService [eventCount: 1] 09-04 19:54:22.646 8748 8748 I TSLocationManager: [c.t.l.u.BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 2 09-04 19:54:22.668 8748 8748 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:54:22.668 8748 8748 I TSLocationManager: ℹ️ HttpService is busy 09-04 19:54:22.676 8748 9512 D TSLocationManager: [c.t.l.data.sqlite.b first] 09-04 19:54:22.676 8748 9512 D TSLocationManager: ✅ Locked 1 records 09-04 19:54:22.678 8748 9512 I TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:22.678 8748 9512 I TSLocationManager: 🔵 HTTP POST: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:23.172 8748 9566 W TSLocationManager: [c.t.l.http.HttpService$i onResponse] 09-04 19:54:23.172 8748 9566 W TSLocationManager: ⚠️ Response: 450, Unknown 09-04 19:54:23.173 8748 9566 D TSLocationManager: [c.t.l.data.sqlite.b unlock] 09-04 19:54:23.173 8748 9566 D TSLocationManager: ✅ UNLOCKED: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:23.174 8748 9566 I TSLocationManager: [c.t.l.u.BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2 09-04 19:54:23.174 8748 9566 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false] 09-04 19:54:23.179 8748 8748 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:23.179 8748 8748 D TSLocationManager: 🔴 BackgroundTaskService destroyed 09-04 19:54:24.938 8748 8748 I TSLocationManager: [c.t.l.s.TSScheduleManager oneShot] 09-04 19:54:24.938 8748 8748 I TSLocationManager: ⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588) 09-04 19:54:26.807 8748 8748 I TSLocationManager: CDVBackgroundGeolocation#onDestoy 09-04 19:54:26.808 8748 8748 D TSLocationManager: [c.t.l.a.BackgroundGeolocation a] 09-04 19:54:26.808 8748 8748 D TSLocationManager: 🔴 Cleared callbacks 09-04 19:54:35.633 9685 9714 I TSLocationManager: [c.t.l.scheduler.ScheduleEvent onOneShot] 09-04 19:54:35.633 9685 9714 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:35.633 9685 9714 I TSLocationManager: ║ ⏰ OneShot event fired: TERMINATE_EVENT 09-04 19:54:35.633 9685 9714 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:35.709 9685 9714 E TSLocationManager: 09-04 19:54:35.709 9685 9714 E TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:35.709 9685 9714 E TSLocationManager: ║ LICENSE VALIDATION FAILURE: de.mobilexag.mip.frame 09-04 19:54:35.709 9685 9714 E TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:35.709 9685 9714 E TSLocationManager: ╟─ Invalid license key: YOUR_LICENSE_KEY_HERE 09-04 19:54:35.709 9685 9714 E TSLocationManager: ╟─ BackgroundGeolocation is fully functional in DEBUG builds without a license. 09-04 19:54:35.709 9685 9714 E TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:35.822 9685 9714 I TSLocationManager: [c.t.l.adapter.TSConfig print] 09-04 19:54:35.822 9685 9714 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:35.822 9685 9714 I TSLocationManager: ║ TSLocationManager version: 3.1.12 (368) 09-04 19:54:35.822 9685 9714 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:35.822 9685 9714 I TSLocationManager: ╟─ HTC HTC U12+ @ 9 (cordova) 09-04 19:54:35.822 9685 9714 I TSLocationManager: { 09-04 19:54:35.822 9685 9714 I TSLocationManager: "activityRecognitionInterval": 10000, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "allowIdenticalLocations": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "authorization": {}, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "autoSync": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "autoSyncThreshold": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "batchSync": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "configUrl": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "debug": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "deferTime": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "desiredAccuracy": -1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "desiredOdometerAccuracy": 100, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "disableAutoSyncOnCellular": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "disableElasticity": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "disableLocationAuthorizationAlert": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "disableMotionActivityUpdates": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "disableStopDetection": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "distanceFilter": 10, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "elasticityMultiplier": 1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "enableHeadless": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "enableTimestampMeta": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "encrypt": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "extras": { 09-04 19:54:35.822 9685 9714 I TSLocationManager: "deviceId": "\"c0868b8896e27efe\"", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "random": 0.17590512590543383, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "foo": "bar", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "workunitId": "301" 09-04 19:54:35.822 9685 9714 I TSLocationManager: }, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "fastestLocationUpdateInterval": -1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "foregroundService": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "geofenceInitialTriggerEntry": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "geofenceModeHighAccuracy": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "geofenceProximityRadius": 1000, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "geofenceTemplate": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "headers": { 09-04 19:54:35.822 9685 9714 I TSLocationManager: "Authorization": "Bearer eyJraWQiOiIxIiwiYWxnIjoiSFM1MTIifQ.eyJpc3MiOiJmMjRmOTBkNC1lZDg0LTQwODItOGUxMi1lOWM5NWM0NDM4MzUiLCJleHAiOjE2MDE4MzM5OTksImlhdCI6MTU5OTI0MTk5OSwibmJmIjoxNTk5MjQxODc5LCJzdWIiOiIzMjExNDAiLCJ0ZW5hbnRJZCI6MSwicmVhbG0iOiJDZW50ZXJ3YXJlUmVhbG0iLCJ0eXBlIjoiQ0xJRU5UIiwia2V5IjoiMTAyIiwianRpIjoiYjM5ZTliZWYtZmFkMS00Y2QyLWE1NGMtMjI3ZGM5NTBhZDRkIn0.aRMAqSJNu_62rhX5y0E5Nu0ll9iW1zSveEhzzAfp5ykLU3hKaWPUnuPmAeaMtu8FtDqZU9MZQdvhE8IZwPQ_RA" 09-04 19:54:35.822 9685 9714 I TSLocationManager: }, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "headlessJobService": "com.transistorsoft.cordova.bggeo.BackgroundGeolocationHeadlessTask", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "heartbeatInterval": -1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "httpRootProperty": ".", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "httpTimeout": 60000, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "isMoving": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "locationAuthorizationRequest": "Always", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "locationTemplate": "{\"latitude\":<%= latitude %>,\"longitude\":<%= longitude %>,\"timeOfRecord\":\"<%= timestamp %>\"}", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "locationTimeout": 60, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "locationUpdateInterval": 1000, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "locationsOrderDirection": "ASC", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "logLevel": 5, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "logMaxDays": 3, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "maxBatchSize": -1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "maxDaysToPersist": 1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "maxRecordsToPersist": -1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "method": "POST", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "minimumActivityRecognitionConfidence": 75, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "motionTriggerDelay": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "notification": { 09-04 19:54:35.822 9685 9714 I TSLocationManager: "layout": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "title": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "text": "Location Service activated", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "color": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "channelName": "TSLocationManager", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "smallIcon": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "largeIcon": "", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "priority": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "sticky": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "strings": {}, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "actions": [] 09-04 19:54:35.822 9685 9714 I TSLocationManager: }, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "params": {}, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "persist": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "persistMode": 2, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "schedule": [], 09-04 19:54:35.822 9685 9714 I TSLocationManager: "scheduleUseAlarmManager": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "speedJumpFilter": 300, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "startOnBoot": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "stationaryRadius": 25, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "stopAfterElapsedMinutes": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "stopOnStationary": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "stopOnTerminate": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "stopTimeout": 5, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "triggerActivities": "in_vehicle, on_bicycle, on_foot, running, walking", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "url": "https:\/\/feature.prd.mobilexag.de:8443\/position-api\/tenants\/1\/position\/add", 09-04 19:54:35.822 9685 9714 I TSLocationManager: "useSignificantChangesOnly": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "enabled": true, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "schedulerEnabled": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "trackingMode": 1, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "odometer": 0, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "isFirstBoot": false, 09-04 19:54:35.822 9685 9714 I TSLocationManager: "didLaunchInBackground": false 09-04 19:54:35.822 9685 9714 I TSLocationManager: } 09-04 19:54:35.881 9685 9714 I TSLocationManager: [c.t.l.adapter.TSConfig print] 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:35.881 9685 9714 I TSLocationManager: ║ DEVICE SENSORS 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╟─ ✅ ACCELEROMETER: {Sensor name="BMI160 Accelerometer", vendor="Bosch", version=1, type=1, maxRange=78.4532, resolution=0.0023942017, power=0.001, minDelay=2500} 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╟─ ✅ GYROSCOPE: {Sensor name="BMI160 Gyroscope", vendor="Bosch", version=1, type=4, maxRange=17.453293, resolution=5.326322E-4, power=0.001, minDelay=2500} 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╟─ ✅ MAGNETOMETER: {Sensor name="AK09915 Magnetometer", vendor="AKM", version=1, type=2, maxRange=4912.0, resolution=0.14990234, power=0.001, minDelay=20000} 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╟─ ✅ SIGNIFICANT_MOTION: {Sensor name="Significant Motion", vendor="HTC", version=1, type=17, maxRange=1.0, resolution=1.0, power=0.001, minDelay=-1} 09-04 19:54:35.881 9685 9714 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:35.894 9685 9714 I TSLocationManager: [c.t.l.a.BackgroundGeolocation ] 09-04 19:54:35.894 9685 9714 I TSLocationManager: ✅ Google Play Services: connected (version code:12451000) 09-04 19:54:35.913 9685 9720 D TSLocationManager: [c.t.l.l.TSLocationManager$d run] 09-04 19:54:35.913 9685 9720 D TSLocationManager: ℹ️ Load last odometer location: Location[TSLocationManager 48,172672,11,592332 hAcc=13 t=?!? et=?!? vAcc=??? sAcc=??? bAcc=??? {Bundle[{odometer=0.0}]}] 09-04 19:54:35.936 9685 9714 D TSLocationManager: [c.t.l.http.HttpService startMonitoringConnectivityChanges] 09-04 19:54:35.936 9685 9714 D TSLocationManager: 🎾 Start monitoring connectivity changes 09-04 19:54:35.948 9685 9714 I TSLocationManager: [c.t.l.a.BackgroundGeolocation d] 09-04 19:54:35.948 9685 9714 I TSLocationManager: 🎾 Start monitoring location-provider changes 09-04 19:54:35.958 9685 9723 D TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:35.958 9685 9723 D TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:35.958 9685 9723 D TSLocationManager: ║ 📶 Connectivity change: connected? true 09-04 19:54:35.958 9685 9723 D TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:35.959 9685 9714 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:35.968 9685 9685 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:35.969 9685 9722 D TSLocationManager: [c.t.l.data.sqlite.b prune] 09-04 19:54:35.969 9685 9722 D TSLocationManager: ℹ️ PRUNE -1 days 09-04 19:54:35.977 9685 9685 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:35.977 9685 9722 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:35.993 9685 9722 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:54:35.993 9685 9722 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:54:36.001 9685 9714 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:36.001 9685 9719 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:36.146 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:36.146 9685 9685 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:36.151 9685 9725 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:36.151 9685 9725 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:54:36.168 9685 9725 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:36.221 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:36.221 9685 9685 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:54:36.227 9685 9725 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:54:36.227 9685 9725 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:36.227 9685 9725 I TSLocationManager: ║ Motion Transition Result 09-04 19:54:36.227 9685 9725 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:36.227 9685 9725 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:54:36.227 9685 9725 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:54:36.229 9685 9725 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:54:36.233 9685 9685 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:36.486 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:36.486 9685 9685 D TSLocationManager: 🔴 ActivityRecognitionService destroyed 09-04 19:54:36.986 9685 9720 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:54:36.986 9685 9720 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:54:36.986 9685 9720 I TSLocationManager: ║ HTTP Service (count: 1) 09-04 19:54:36.986 9685 9720 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:54:37.044 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:54:37.044 9685 9685 D TSLocationManager: 🎾 BackgroundTaskService [eventCount: 1] 09-04 19:54:37.046 9685 9685 I TSLocationManager: [c.t.l.u.BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 1 09-04 19:54:37.059 9685 9725 D TSLocationManager: [c.t.l.data.sqlite.b first] 09-04 19:54:37.059 9685 9725 D TSLocationManager: ✅ Locked 1 records 09-04 19:54:37.061 9685 9725 I TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:54:37.061 9685 9725 I TSLocationManager: 🔵 HTTP POST: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:37.711 9685 9738 W TSLocationManager: [c.t.l.http.HttpService$i onResponse] 09-04 19:54:37.711 9685 9738 W TSLocationManager: ⚠️ Response: 450, Unknown 09-04 19:54:37.717 9685 9738 D TSLocationManager: [c.t.l.data.sqlite.b unlock] 09-04 19:54:37.717 9685 9738 D TSLocationManager: ✅ UNLOCKED: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:54:37.718 9685 9738 I TSLocationManager: [c.t.l.u.BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 1 09-04 19:54:37.719 9685 9685 D TSLocationManager: [c.t.l.a.BackgroundGeolocation isMainActivityActive] NO 09-04 19:54:37.719 9685 9738 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false] 09-04 19:54:37.727 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:54:37.727 9685 9685 D TSLocationManager: 🔴 BackgroundTaskService destroyed 09-04 19:55:04.129 9685 10025 D TSLocationManager: $ ready() 09-04 19:55:04.130 9685 10025 D TSLocationManager: [c.t.locationmanager.util.b a] 09-04 19:55:04.130 9685 10025 D TSLocationManager: ℹ️ LocationAuthorization: Permission granted 09-04 19:55:04.132 9685 9724 I TSLocationManager: - Enable: true → true, trackingMode: 1 09-04 19:55:04.135 9685 10025 D TSLocationManager: [c.t.l.a.BackgroundGeolocation ready] LocationPermission :true 09-04 19:55:04.136 9685 9725 I TSLocationManager: [c.t.l.http.HttpService flush] 09-04 19:55:04.136 9685 9725 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:55:04.136 9685 9725 I TSLocationManager: ║ HTTP Service (count: 1) 09-04 19:55:04.136 9685 9725 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:55:04.162 9685 9724 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:55:04.162 9685 9724 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:55:04.168 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:04.168 9685 9685 D TSLocationManager: 🎾 BackgroundTaskService [eventCount: 1] 09-04 19:55:04.168 9685 9724 D TSLocationManager: [c.t.l.http.HttpService startMonitoringConnectivityChanges] 09-04 19:55:04.168 9685 9724 D TSLocationManager: 🎾 Start monitoring connectivity changes 09-04 19:55:04.168 9685 9685 I TSLocationManager: [c.t.l.u.BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 2 09-04 19:55:04.176 9685 9724 D TSLocationManager: [c.t.locationmanager.device.a c] 09-04 19:55:04.176 9685 9724 D TSLocationManager: 🎾 Start monitoring powersave changes 09-04 19:55:04.183 9685 9724 D TSLocationManager: [c.t.locationmanager.util.b b] 09-04 19:55:04.183 9685 9724 D TSLocationManager: ℹ️ LocationAuthorization: Permission granted 09-04 19:55:04.184 9685 9724 I TSLocationManager: [c.t.l.service.HeartbeatService c] 09-04 19:55:04.184 9685 9724 I TSLocationManager: 🔴 Stop heartbeat 09-04 19:55:04.215 9685 9720 D TSLocationManager: [c.t.l.data.sqlite.b first] 09-04 19:55:04.215 9685 9720 D TSLocationManager: ✅ Locked 1 records 09-04 19:55:04.217 9685 9720 I TSLocationManager: [c.t.l.http.HttpService a] 09-04 19:55:04.217 9685 9720 I TSLocationManager: 🔵 HTTP POST: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:55:04.258 9685 9685 D TSLocationManager: [c.t.l.adapter.TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1 09-04 19:55:04.347 9685 9738 W TSLocationManager: [c.t.l.http.HttpService$i onResponse] 09-04 19:55:04.347 9685 9738 W TSLocationManager: ⚠️ Response: 450, Unknown 09-04 19:55:04.349 9685 9738 D TSLocationManager: [c.t.l.data.sqlite.b unlock] 09-04 19:55:04.349 9685 9738 D TSLocationManager: ✅ UNLOCKED: 7f9f33e2-98b1-4d5e-97fe-3743065f81f2 09-04 19:55:04.349 9685 9738 I TSLocationManager: [c.t.l.u.BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2 09-04 19:55:04.350 9685 9738 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false] 09-04 19:55:04.350 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:04.350 9685 9685 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:55:04.357 9685 10111 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:55:04.357 9685 10111 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:55:04.367 9685 10111 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:55:04.398 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:55:04.398 9685 9685 D TSLocationManager: 🔴 BackgroundTaskService destroyed 09-04 19:55:04.468 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:04.468 9685 9685 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:55:04.469 9685 10111 I TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:55:04.469 9685 10111 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:55:04.469 9685 10111 I TSLocationManager: ║ Motion Transition Result 09-04 19:55:04.469 9685 10111 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:55:04.469 9685 10111 I TSLocationManager: ╟─ 🎾 ENTER: still 09-04 19:55:04.469 9685 10111 I TSLocationManager: ╚═════════════════════════════════════════════ 09-04 19:55:04.470 9685 10111 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false] 09-04 19:55:04.499 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:04.499 9685 9685 D TSLocationManager: 🎾 LocationRequestService [eventCount: 1] 09-04 19:55:04.501 9685 9720 I TSLocationManager: [c.t.l.s.LocationRequestService a] 09-04 19:55:04.501 9685 9720 I TSLocationManager: ℹ️ Location availability: true 09-04 19:55:04.501 9685 9720 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true] 09-04 19:55:04.748 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:55:04.748 9685 9685 D TSLocationManager: 🔴 ActivityRecognitionService destroyed 09-04 19:55:06.324 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:06.324 9685 9685 D TSLocationManager: 🎾 LocationRequestService [eventCount: 1] 09-04 19:55:06.331 9685 10111 I TSLocationManager: [c.t.l.s.LocationRequestService b] 09-04 19:55:06.331 9685 10111 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:55:06.331 9685 10111 I TSLocationManager: ║ getCurrentPosition LocationResult: 1 09-04 19:55:06.331 9685 10111 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:55:06.331 9685 10111 I TSLocationManager: ╟─ 📍 Location[fused 48,172680,11,592311 hAcc=14 et=+8d12h5m45s295ms alt=554.5999755859375 vAcc=7 sAcc=??? bAcc=??? {Bundle[mParcelledData.dataSize=52]}], age: 1859ms, time: 1599242104467 09-04 19:55:06.351 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false] 09-04 19:55:06.359 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService onDestroy] 09-04 19:55:06.359 9685 9685 D TSLocationManager: 🔴 LocationRequestService destroyed 09-04 19:55:06.385 9685 10111 I TSLocationManager: [c.t.l.l.TSLocationManager onSingleLocationResult] 09-04 19:55:06.385 9685 10111 I TSLocationManager: 🔵 Acquired current position 09-04 19:55:06.390 9685 10111 D TSLocationManager: [c.t.l.l.TSLocationManager calculateMedianAccuracy] Median accuracy: 13.694 09-04 19:55:06.414 9685 10111 D TSLocationManager: [c.t.l.s.LocationRequestService b] SingleLocationRequest 1 isFinished? true 09-04 19:55:06.415 9685 10111 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false] 09-04 19:55:06.417 9685 9685 I TSLocationManager: [c.t.l.s.ActivityRecognitionService b] 09-04 19:55:06.417 9685 9685 I TSLocationManager: 🎾 Start motion-activity updates 09-04 19:55:06.419 9685 9685 D TSLocationManager: [c.t.l.g.TSGeofenceManager startMonitoringStationaryRegion] 09-04 19:55:06.419 9685 9685 D TSLocationManager: 🎾 Start monitoring stationary region (radius: 150.0m 48.1726798,11.5923107 hAcc=13.694) 09-04 19:55:06.463 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:06.463 9685 9685 D TSLocationManager: 🎾 TrackingService [eventCount: 1] 09-04 19:55:06.464 9685 9685 I TSLocationManager: [c.t.l.service.TrackingService h] 09-04 19:55:06.464 9685 9685 I TSLocationManager: ╔═════════════════════════════════════════════ 09-04 19:55:06.464 9685 9685 I TSLocationManager: ║ TrackingService motionchange: false 09-04 19:55:06.464 9685 9685 I TSLocationManager: ╠═════════════════════════════════════════════ 09-04 19:55:06.464 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: false] 09-04 19:55:06.507 9685 9685 D TSLocationManager: [c.t.l.service.AbstractService a] 09-04 19:55:06.507 9685 9685 D TSLocationManager: 🎾 ActivityRecognitionService [eventCount: 1] 09-04 19:55:06.509 9685 9722 D TSLocationManager: [c.t.l.s.ActivityRecognitionService a] 09-04 19:55:06.509 9685 9722 D TSLocationManager: 🚘 ️DetectedActivity [type=STILL, confidence=100] 09-04 19:55:06.514 9685 9722 D TSLocationManager: [c.t.l.service.AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false]
christocracy commented 4 years ago

I see nothing unusual in your logs.

tobiaswaltl commented 4 years ago

Is it normal that $ ready appears twice?

christocracy commented 4 years ago

Is it normal that $ ready appears twice?

Yes, it's normal.

christocracy commented 4 years ago

When the plugin changes its config, you'll see lines like this, telling you exactly which options were changed (ie "dirty"):

09-04 19:54:22.607 8748 8893 D TSLocationManager: [c.t.l.adapter.TSConfig d] ℹ️ Persist config, dirty: [extras, headers, params]
tobiaswaltl commented 4 years ago

Well, now it works. Probably I had messed up something else. A very big thank you for your help!

christocracy commented 4 years ago

Get in the habit of constantly monitoring $ adb logcat. You can see your javascript console.log message too by adding the filter chromium:V. If using Capacitor: Capacitor/Console:V.

As you've noticed, the plugin is very verbose with logging and is constantly telling you everything it's doing.

eg:

$ adb logcat *:S TSLocationManager:V chromium:V