Skip to content

App crashes when slider is turned on #7

@HardikkMadaan

Description

@HardikkMadaan

IntelliJ IDEA

  • Plugin version: Latest (Used this)

background_geolocation_firebase:
git:
url: https://github.com/transistorsoft/flutter_background_geolocation_firebase

  • Platform: Android
  • OS version: 9.0.0 Pie
  • Device manufacturer / model: Xiaomi MI-A1
  • Flutter info (flutter info, flutter doctor):
    [✓] Flutter (Channel stable, v1.5.4-hotfix.2, on Linux, locale en_IN)

[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[✓] Android Studio (version 3.3)
[✓] IntelliJ IDEA Ultimate Edition (version 2019.1)
[✓] Connected device (1 available)

• No issues found!

  • Plugin config
import 'dart:async';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

import 'package:background_geolocation_firebase/background_geolocation_firebase.dart';
import 'package:flutter_background_geolocation/flutter_background_geolocation.dart' as bg;

void main() {
  // Enable integration testing with the Flutter Driver extension.
  // See https://flutter.io/testing/ for more info.
  runApp(new MyApp());

}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  bool _enabled;
  String _locationJSON;
  JsonEncoder _encoder = new JsonEncoder.withIndent('  ');

  @override
  void initState() {
    _enabled = false;
    _locationJSON = "Toggle the switch to start tracking.";

    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {

    bg.BackgroundGeolocation.onLocation((bg.Location location) {
      print('[location] $location');
      setState(() {
        _locationJSON = _encoder.convert(location.toMap());
      });
    });

    BackgroundGeolocationFirebase.configure(BackgroundGeolocationFirebaseConfig(
        locationsCollection: "locations",
        geofencesCollection: "geofences",
        updateSingleDocument: false
    ));

    bg.BackgroundGeolocation.ready(bg.Config(
        debug: true,
        distanceFilter: 50,
        logLevel: bg.Config.LOG_LEVEL_VERBOSE,
        stopTimeout: 1,
        stopOnTerminate: false,
        startOnBoot: true
    )).then((bg.State state) {
      setState(() {
        _enabled = state.enabled;
      });
    });

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }


  void _onClickEnable(enabled) {
    setState(() {
      _enabled = enabled;
    });

    if (enabled) {
      bg.BackgroundGeolocation.start();
    } else {
      bg.BackgroundGeolocation.stop();
    }
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
            title: const Text('BGGeo Firebase Example', style: TextStyle(color: Colors.black)),
            backgroundColor: Colors.amberAccent,
            brightness: Brightness.light,
            actions: <Widget>[
              Switch(value: _enabled, onChanged: _onClickEnable),
            ]
        ),
        body: Text(_locationJSON),
        bottomNavigationBar: BottomAppBar(
            child: Container(
                padding: EdgeInsets.only(left: 5.0, right:5.0),
                child: Row(
                    mainAxisAlignment: MainAxisAlignment.spaceBetween,
                    children: <Widget>[
                    ]
                )
            )
        ),
      ),
    );
  }
}

To Reproduce
Steps to reproduce the behavior:

  1. Run the application
    2.On the main screen enable the slider so that location fetch start
    3.The app crashes and gives the following error

Debug logs
adb logcat returned this

07-01 19:23:14.221  2424  2943 E AsyncOperation:        at skq.b(:com.google.android.gms@[email protected] (100400-253824076):37)
07-01 19:23:14.221  2424  2943 E AsyncOperation:        at skq.run(:com.google.android.gms@[email protected] (100400-253824076):21)
07-01 19:23:14.221  2424  2943 E AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
07-01 19:23:14.221  2424  2943 E AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
07-01 19:23:14.221  2424  2943 E AsyncOperation:        at sqo.run(Unknown Source:7)
07-01 19:23:14.221  2424  2943 E AsyncOperation:        at java.lang.Thread.run(Thread.java:764)
07-01 19:23:14.224  2424  3141 E NetRec  : [111] alcs.a: Could not retrieve server token for package com.google.android.apps.gcs
07-01 19:23:14.224  2424  3141 E NetRec  : java.util.concurrent.ExecutionException: rdg: 29503: 
07-01 19:23:14.224  2424  3141 E NetRec  :      at avgq.b(:com.google.android.gms@[email protected] (100400-253824076):3)
07-01 19:23:14.224  2424  3141 E NetRec  :      at avgq.a(:com.google.android.gms@[email protected] (100400-253824076):20)
07-01 19:23:14.224  2424  3141 E NetRec  :      at alcs.a(:com.google.android.gms@[email protected] (100400-253824076):1)
07-01 19:23:14.224  2424  3141 E NetRec  :      at alcs.a(:com.google.android.gms@[email protected] (100400-253824076):4)
07-01 19:23:14.224  2424  3141 E NetRec  :      at alcr.getHeaders(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.224  2424  3141 E NetRec  :      at com.android.volley.toolbox.HttpClientStack.performRequest(:com.google.android.gms@[email protected] (100400-253824076):9)
07-01 19:23:14.224  2424  3141 E NetRec  :      at sdc.performRequest(:com.google.android.gms@[email protected] (100400-253824076):1)
07-01 19:23:14.224  2424  3141 E NetRec  :      at bwt.executeRequest(:com.google.android.gms@[email protected] (100400-253824076):1)
07-01 19:23:14.224  2424  3141 E NetRec  :      at com.android.volley.toolbox.BasicNetwork.performRequest(:com.google.android.gms@[email protected] (100400-253824076):5)
07-01 19:23:14.224  2424  3141 E NetRec  :      at sdf.performRequest(:com.google.android.gms@[email protected] (100400-253824076):13)
07-01 19:23:14.224  2424  3141 E NetRec  :      at com.android.volley.NetworkDispatcher.a(:com.google.android.gms@[email protected] (100400-253824076):7)
07-01 19:23:14.224  2424  3141 E NetRec  :      at com.android.volley.NetworkDispatcher.run(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.224  2424  3141 E NetRec  : Caused by: rdg: 29503: 
07-01 19:23:14.224  2424  3141 E NetRec  :      at rjf.a(:com.google.android.gms@[email protected] (100400-253824076):4)
07-01 19:23:14.224  2424  3141 E NetRec  :      at aodi.b(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.224  2424  3141 E NetRec  :      at aofv.a(:com.google.android.gms@[email protected] (100400-253824076):6)
07-01 19:23:14.224  2424  3141 E NetRec  :      at aaew.run(:com.google.android.gms@[email protected] (100400-253824076):30)
07-01 19:23:14.224  2424  3141 E NetRec  :      at bkng.run(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.224  2424  3141 E NetRec  :      at skq.b(:com.google.android.gms@[email protected] (100400-253824076):37)
07-01 19:23:14.224  2424  3141 E NetRec  :      at skq.run(:com.google.android.gms@[email protected] (100400-253824076):21)
07-01 19:23:14.224  2424  3141 E NetRec  :      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
07-01 19:23:14.224  2424  3141 E NetRec  :      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
07-01 19:23:14.224  2424  3141 E NetRec  :      at sqo.run(Unknown Source:7)
07-01 19:23:14.224  2424  3141 E NetRec  :      at java.lang.Thread.run(Thread.java:764)
07-01 19:23:14.225  2424  3141 W NetRec  : [111] alcs.a: No server tokens extracted.
07-01 19:23:14.336  2424  3141 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.336  2424  3141 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.336  2424  3141 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.346  2424  2514 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.346  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.346  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.369  4172  4172 W Binder:4172_1: type=1400 audit(0.0:77): avc: denied { search } for name="vendor" dev="tmpfs" ino=16173 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0
07-01 19:23:14.369  4172  4172 W Binder:4172_1: type=1400 audit(0.0:78): avc: denied { getattr } for name="/" dev="mmcblk0p1" ino=1 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:firmware_file:s0 tclass=filesystem permissive=0
07-01 19:23:14.494   680  2549 I LOWI-8.6.0.33: [LOWI-Scan] lowi_close_record:Scan done in 24685ms, 3 APs in scan results
07-01 19:23:14.494  1457  3581 D WificondControl: Scan result ready event
07-01 19:23:14.593   680  2549 I LOWI-8.6.0.33: [LOWI-Scan] lowi_close_record:Scan done in 24784ms, 3 APs in scan results
07-01 19:23:14.594  1457  3995 D WificondControl: Scan result ready event
07-01 19:23:14.601  2424  3141 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.602  2424  3141 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.602  2424  3141 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.626  4172  4188 I Adreno  : QUALCOMM build                   : 2df12b3, I07da2d9908
07-01 19:23:14.626  4172  4188 I Adreno  : Build Date                       : 10/04/18
07-01 19:23:14.626  4172  4188 I Adreno  : OpenGL ES Shader Compiler Version: EV031.25.03.01
07-01 19:23:14.626  4172  4188 I Adreno  : Local Branch                     : 
07-01 19:23:14.626  4172  4188 I Adreno  : Remote Branch                    : 
07-01 19:23:14.626  4172  4188 I Adreno  : Remote Branch                    : 
07-01 19:23:14.626  4172  4188 I Adreno  : Reconstruct Branch               : 
07-01 19:23:14.627  4172  4188 I Adreno  : Build Config                     : S L 6.0.7 AArch64
07-01 19:23:14.628  4172  4188 D vndksupport: Loading /vendor/lib64/hw/gralloc.msm8953.so from current namespace instead of sphal namespace.
07-01 19:23:14.631  4172  4188 I Adreno  : PFP: 0x005ff087, ME: 0x005ff063
07-01 19:23:14.633  4172  4188 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
07-01 19:23:14.633  4172  4188 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
07-01 19:23:14.652  4172  4188 I Adreno  : QUALCOMM build                   : 2df12b3, I07da2d9908
07-01 19:23:14.652  4172  4188 I Adreno  : Build Date                       : 10/04/18
07-01 19:23:14.652  4172  4188 I Adreno  : OpenGL ES Shader Compiler Version: EV031.25.03.01
07-01 19:23:14.652  4172  4188 I Adreno  : Local Branch                     : 
07-01 19:23:14.652  4172  4188 I Adreno  : Remote Branch                    : 
07-01 19:23:14.652  4172  4188 I Adreno  : Remote Branch                    : 
07-01 19:23:14.652  4172  4188 I Adreno  : Reconstruct Branch               : 
07-01 19:23:14.652  4172  4188 I Adreno  : Build Config                     : S L 6.0.7 AArch64
07-01 19:23:14.654  4172  4188 D vndksupport: Loading /vendor/lib64/hw/gralloc.msm8953.so from current namespace instead of sphal namespace.
07-01 19:23:14.656  4172  4188 I Adreno  : PFP: 0x005ff087, ME: 0x005ff063
07-01 19:23:14.658  4172  4188 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
07-01 19:23:14.658  4172  4188 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
07-01 19:23:14.722  2424  3189 I NetRec  : [131] NetRecChimeraGcmTaskService.a: Completed rapid_refresh_scores_task score refresh task in 599 ms, returning 0
07-01 19:23:14.744  2768  4103 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.744  2768  4103 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.744  2768  4103 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.779  2424  2514 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.779  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.779  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.789  2424  2514 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.789  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.789  2424  2514 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.854  2768  4103 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:14.855  2768  4103 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.855  2768  4103 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:14.978  2768  3181 I Icing   : Indexing com.google.android.gms-apps from com.google.android.gms
07-01 19:23:15.035  2424  3189 I aohm    : Removed 0 invalid users [CONTEXT service_id=51 ]
07-01 19:23:15.047  2768  3181 I Icing   : Indexing done com.google.android.gms-apps
07-01 19:23:15.066  2768  3181 I Icing   : Indexing com.google.android.gms-apps from com.google.android.gms
07-01 19:23:15.070  2768  3181 I Icing   : Indexing done com.google.android.gms-apps
07-01 19:23:15.089  2424  2514 W Uploader: anonymous no longer exists, so no auth token.
07-01 19:23:15.123  2768  3181 I Icing   : Indexing com.google.android.gms-internal.3p:MobileApplication from com.google.android.gms
07-01 19:23:15.157  2768  3181 I Icing   : Indexing done com.google.android.gms-internal.3p:MobileApplication
07-01 19:23:15.292  2424  3189 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:15.292  2424  3189 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:15.292  2424  3189 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:15.306  2424  3189 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:15.307  2424  3189 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:15.307  2424  3189 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:16.104  2424  2429 I .gms.persisten: Compiler allocated 4MB to compile void aohm.a(java.util.Set, long, bqcy, bqdf, java.util.List, java.util.LinkedHashMap, byqm, aohp, boolean, boolean)
07-01 19:23:16.251  2852  2852 I BgTaskExecutorImpl: Starting EXCLUSIVE background task FETCH_CONFIGS_FROM_PHENOTYPE.
07-01 19:23:16.310  2424  3189 I aohg    : Scheduling adaptive one off task with window [14400, 604800] in seconds [CONTEXT service_id=51 ]
07-01 19:23:16.378  2424  2434 I .gms.persisten: Background concurrent copying GC freed 195959(10MB) AllocSpace objects, 23(812KB) LOS objects, 53% free, 10MB/22MB, paused 547us total 109.663ms
07-01 19:23:16.459  2768  4584 W ModuleInitIntentOp: Dropping unexpected action com.google.android.gms.phenotype.COMMITTED
07-01 19:23:16.465  2424  4634 I PTCommittedOperation: Receive new configuration for com.google.android.metrics
07-01 19:23:16.484  2424  4269 I aofg    : updateFromConfigurations using legacy put method [CONTEXT service_id=204 ]
07-01 19:23:16.485  2852  3043 I ModelDownloadListener: Schdedule model download
07-01 19:23:16.490  2852  3043 I OpaEligibilityChecker: send OpaEligibilityChange broadcast to CommonBroadcastReceiver
07-01 19:23:16.490  2852  2852 I BgTaskExecutorImpl: Starting EXCLUSIVE background task UPDATE_HOTWORD_MODELS.
07-01 19:23:16.501  2852  2996 I ModelDownloadController: requestHotwordModelUpdate modelType-2 modelLocale-en-US
07-01 19:23:16.502  2852  2996 I ModelDownloadController: We already downloaded model from given location.
07-01 19:23:16.502  2852  2996 I ModelDownloadController: Model download failed
07-01 19:23:16.535  2768  3002 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.googlequicksearchbox componentName=agsa_icing_connection serviceId=32
07-01 19:23:16.541  2768  3152 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.googlequicksearchbox componentName=agsa_icing_connection serviceId=33
07-01 19:23:16.559  2768  3181 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0
07-01 19:23:16.574  2768  3181 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0
07-01 19:23:16.592  2424  2429 I .gms.persisten: Compiler allocated 4MB to compile void quv.a(android.content.Context)
07-01 19:23:16.605  2424  4269 I aofg    : updateFromConfigurations using legacy put method [CONTEXT service_id=204 ]
07-01 19:23:17.322  4007  4068 W AnalyticsUserIDStore: initStore should have been called before calling setUserID
07-01 19:23:17.343  4007  4068 W UserDataStore: initStore should have been called before calling setUserID
07-01 19:23:17.390  1457  1587 I ActivityManager: Start proc 4640:com.android.keychain/1000 for service com.android.keychain/.KeyChainService
07-01 19:23:17.406  4640  4640 E ndroid.keychai: Not starting debugger since process cannot load the jdwp agent.
07-01 19:23:17.986  4485  4659 I FirebaseCrash: Sending crashes
07-01 19:23:19.711  1457  4617 I ActivityManager: Killing 3247:org.pixelexperience.weather.client/u0a30 (adj 906): empty #17
07-01 19:23:19.714  1457  1588 W libprocessgroup: kill(-3247, 9) failed: No such process
07-01 19:23:19.737  1457  1588 I chatty  : uid=1000(system) ActivityManager identical 2 lines
07-01 19:23:19.764  1457  1588 W libprocessgroup: kill(-3247, 9) failed: No such process
07-01 19:23:19.782   466   466 I Zygote  : Process 3247 exited due to signal (9)
07-01 19:23:19.810  1457  1588 W libprocessgroup: kill(-3247, 9) failed: No such process
07-01 19:23:19.810  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10030 pid 3247 in 97ms
07-01 19:23:21.440  1457  4617 I ActivityManager: Killing 3965:com.google.android.storagemanager/u0a35 (adj 906): empty #17
07-01 19:23:21.442  1457  1588 W libprocessgroup: kill(-3965, 9) failed: No such process
07-01 19:23:21.481  1457  1588 W libprocessgroup: kill(-3965, 9) failed: No such process
07-01 19:23:21.496   466   466 I Zygote  : Process 3965 exited due to signal (9)
07-01 19:23:21.527  1457  1588 W libprocessgroup: kill(-3965, 9) failed: No such process
07-01 19:23:21.527  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10035 pid 3965 in 86ms
07-01 19:23:22.601  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine$PhoneskyJobSchedulerJobService.onStartJob(3): onJobSchedulerWakeup with jobId 9001
07-01 19:23:22.607  2749  2749 I Finsky  : [2] pyj.a(22): Scheduling fallback job with id: 9034, and delay: 43200000 ms
07-01 19:23:22.614  2749  2749 I Finsky  : [2] pyj.a(5): Scheduling fallback in 64799996 (absolute: 64854359)
07-01 19:23:22.826  2768  3180 I CheckinCompat: No service .update.SystemUpdateService to disable
07-01 19:23:22.828  2768  3180 I CheckinCompat: No service .checkin.EventLogService to disable
07-01 19:23:22.829  2768  3180 I CheckinCompat: No service .checkin.EventLogService$Receiver to disable
07-01 19:23:22.829  2768  3180 I CheckinCompat: Done disabling old GoogleServicesFramework version
07-01 19:23:23.032  2749  2749 I Finsky  : [2] pyt.handleMessage(10): DeviceState: DeviceState{currentTime=1561989203027, isCharging=true, isIdle=false, netAny=true, netNotRoaming=true, netUnmetered=true}
07-01 19:23:23.083  2749  2982 I Finsky  : [40] qah.b(7): Jobs in database: 1-1337 10-1 10-3 10-4 10-6 10-8 10-10 10-11 10-12 10-14 10-15 10-18 10-20 10-22 10-26 10-29 10-30 10-33 10-36 10-38 10-39 10-41 10-42 10-44 10-46 10-47 10-48 10-50 10-55 21-333333333 26-1414141414 29-29 
07-01 19:23:23.113  2749  2749 I Finsky  : [2] pym.a(22): Running job: 29-29
07-01 19:23:23.116  2749  2749 I Finsky  : [2] pyt.handleMessage(84): RunningQueue size: 1, PendingQueue size: 0
07-01 19:23:23.116  2749  2749 I Finsky  : [2] pyt.handleMessage(93): Running queue: 29-29 
07-01 19:23:23.118  2749  4668 I Finsky  : [95] urx.a(1): ProcessRecoveryLogsUtil: No files in recovery directory
07-01 19:23:23.118  2749  4668 I Finsky  : [95] qaa.a(9): jobFinished: 29-29. TimeElapsed: 5ms
07-01 19:23:23.119  2749  2749 I Finsky  : [2] pym.c(3): Job 29-29 finished
07-01 19:23:23.120  2749  2749 I Finsky  : [2] pyt.handleMessage(84): RunningQueue size: 0, PendingQueue size: 0
07-01 19:23:23.120  2749  2749 I Finsky  : [2] pyt.handleMessage(27): Executor finished
07-01 19:23:23.129  1457  4617 I ActivityManager: Killing 3982:com.google.process.gapps/u0a66 (adj 906): empty #17
07-01 19:23:23.130  1457  1588 W libprocessgroup: kill(-3982, 9) failed: No such process
07-01 19:23:23.155  2749  2749 I Finsky  : [2] qah.b(7): Jobs in database: 1-1337 10-1 10-3 10-4 10-6 10-8 10-10 10-11 10-12 10-14 10-15 10-18 10-20 10-22 10-26 10-29 10-30 10-33 10-36 10-38 10-39 10-41 10-42 10-44 10-46 10-47 10-48 10-50 10-55 21-333333333 26-1414141414 
07-01 19:23:23.174  1457  1588 W libprocessgroup: kill(-3982, 9) failed: No such process
07-01 19:23:23.175   466   466 I Zygote  : Process 3982 exited due to signal (9)
07-01 19:23:23.177  2749  2749 I Finsky  : [2] pxo.a(113): ConstraintMapping: 1-1337, 10-1, 10-3, 10-4, 10-6, 10-8, 10-10, 10-11, 10-12, 10-14, 10-15, 10-18, 10-20, 10-22, 10-26, 10-29, 10-30, 10-33, 10-36, 10-38, 10-39, 10-41, 10-42, 10-44, 10-46, 10-47, 10-48, 10-50, 10-55, 21-333333333,  -> L: 94598ms, D: 43843332ms, C: false, I: false, N: 1
07-01 19:23:23.178  2749  2749 I Finsky  : [2] pxo.a(113): ConstraintMapping: 26-1414141414,  -> L: 39706323ms, D: 40606323ms, C: false, I: false, N: 0
07-01 19:23:23.179  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(42): Cancelling existing job with id: 9000
07-01 19:23:23.182  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(4): Scheduling job Id: 9002, L: 94598, D: 43843332, C: false, I: false, N: 1
07-01 19:23:23.184  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(4): Scheduling job Id: 9003, L: 39706323, D: 40606323, C: false, I: false, N: 0
07-01 19:23:23.202  1457  1588 W libprocessgroup: kill(-3982, 9) failed: No such process
07-01 19:23:23.202  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10066 pid 3982 in 72ms
07-01 19:23:23.325  1457  3995 I ActivityManager: Killing 4007:cn.xender/u0a111 (adj 906): empty #17
07-01 19:23:23.326  1457  1588 W libprocessgroup: kill(-4007, 9) failed: No such process
07-01 19:23:23.372  1457  1588 W libprocessgroup: kill(-4007, 9) failed: No such process
07-01 19:23:23.380   467   467 I Zygote  : Process 4007 exited due to signal (9)
07-01 19:23:23.408  1457  1588 W libprocessgroup: kill(-4007, 9) failed: No such process
07-01 19:23:23.408  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10111 pid 4007 in 81ms
07-01 19:23:28.293  1457  1587 I ActivityManager: Start proc 4674:com.google.android.apps.turbo/u0a15 for broadcast com.google.android.apps.turbo/.nudges.broadcasts.BatteryStatusChangedReceiver
07-01 19:23:28.303  4674  4674 E roid.apps.turb: Not starting debugger since process cannot load the jdwp agent.
07-01 19:23:28.336  4674  4674 W roid.apps.turb: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:28.367  4674  4674 W PrimesInit: Primes instant initialization
07-01 19:23:28.368  4674  4689 W Primes  : background initialization
07-01 19:23:28.383  4674  4689 I PrimesTesting: GserviceFlagsSupplier.get()
07-01 19:23:28.400  4674  4695 W roid.apps.turb: Unsupported class loader
07-01 19:23:28.405  4674  4695 W roid.apps.turb: Skipping duplicate class check due to unsupported classloader
07-01 19:23:28.422  4674  4695 W DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
07-01 19:23:28.423  1457  4617 I ActivityManager: Killing 4122:com.instagram.android/u0a129 (adj 906): empty #17
07-01 19:23:28.424  1457  4617 I ActivityManager: Killing 3101:android.process.media/u0a13 (adj 906): empty #18
07-01 19:23:28.424  1457  1588 W libprocessgroup: kill(-4122, 9) failed: No such process
07-01 19:23:28.438  4674  4695 W ChimeraDebugLogger: Singleton logger instance not set.
07-01 19:23:28.438  4674  4695 W roid.apps.turb: Unsupported class loader
07-01 19:23:28.442  4674  4695 W roid.apps.turb: Skipping duplicate class check due to unsupported classloader
07-01 19:23:28.447  1457  1588 W libprocessgroup: kill(-4122, 9) failed: No such process
07-01 19:23:28.453  4674  4695 I FirebaseCrashApiImpl: FirebaseCrashApiImpl created by ClassLoader ab[DexPathList[[zip file "/data/user_de/0/com.google.android.gms/app_chimera/m/00000015/DynamiteModulesC.apk"],nativeLibraryDirectories=[/data/user_de/0/com.google.android.gms/app_chimera/m/00000015/DynamiteModulesC.apk!/lib/arm64-v8a, /system/lib64, /system/vendor/lib64]]]
07-01 19:23:28.462  4674  4696 I DynamiteModule: Considering local module com.google.android.gms.flags:3 and remote module com.google.android.gms.flags:3
07-01 19:23:28.462  4674  4696 I DynamiteModule: Selected local version of com.google.android.gms.flags
07-01 19:23:28.466  4674  4696 W DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found.
07-01 19:23:28.474   466   466 I Zygote  : Process 3101 exited due to signal (9)
07-01 19:23:28.486  4674  4696 I FirebaseCrashApiImpl: FirebaseCrash reporting API initialized
07-01 19:23:28.486  4674  4696 W FirebaseCrashAnalytics: Unable to log event, missing Google Analytics for Firebase library
07-01 19:23:28.490  1457  1588 W libprocessgroup: kill(-4122, 9) failed: No such process
07-01 19:23:28.498   466   466 I Zygote  : Process 4122 exited due to signal (9)
07-01 19:23:28.517  1457  1588 W libprocessgroup: kill(-4122, 9) failed: No such process
07-01 19:23:28.517  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10129 pid 4122 in 93ms
07-01 19:23:28.517  1457  1588 W libprocessgroup: kill(-3101, 9) failed: No such process
07-01 19:23:28.517  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10013 pid 3101 in 0ms
07-01 19:23:28.797  1457  3581 I ActivityManager: Killing 4384:com.android.settings/1000 (adj 906): empty #17
07-01 19:23:28.799  1457  1588 W libprocessgroup: kill(-4384, 9) failed: No such process
07-01 19:23:28.835   466   466 I Zygote  : Process 4384 exited due to signal (9)
07-01 19:23:28.845  1457  1588 W libprocessgroup: kill(-4384, 9) failed: No such process
07-01 19:23:28.845  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 1000 pid 4384 in 46ms
07-01 19:23:32.009  2768  4703 I Authzen : [DeviceStateSyncManager] The server is in sync with current state. Nothing to do
07-01 19:23:33.397  4674  4688 I roid.apps.turb: Waiting for a blocking GC ProfileSaver
07-01 19:23:36.509   680  2549 I LOWI-8.6.0.33: [LOWI-Scan] lowi_close_record:Scan done in 46700ms, 3 APs in scan results
07-01 19:23:36.511  1457  3995 D WificondControl: Scan result ready event
07-01 19:23:36.512  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:23:36.518  1457  1851 D WificondScannerImpl: Filtering out 2 scan results.
07-01 19:23:38.047   510   536 E Sensors : sns_debug_main.c(161):Debug Timer Callback called
07-01 19:23:38.360  4674  4708 I FirebaseCrash: Sending crashes
07-01 19:23:40.072  1457  3995 I ActivityManager: Force stopping com.example.whatsupfirebase appid=10137 user=0: from pid 4711
07-01 19:23:40.073  1457  3995 I ActivityManager: Killing 3035:com.google.android.partnersetup/u0a34 (adj 906): empty #17
07-01 19:23:40.081  1457  1588 W libprocessgroup: kill(-3035, 9) failed: No such process
07-01 19:23:40.082  2210  2210 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntent: No UICC
07-01 19:23:40.082  2210  2210 D CarrierSvcBindHelper: No carrier app for: 0
07-01 19:23:40.082  2210  2210 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntent: No UICC
07-01 19:23:40.083  2210  2210 D CarrierSvcBindHelper: No carrier app for: 1
07-01 19:23:40.115   466   466 I Zygote  : Process 3035 exited due to signal (9)
07-01 19:23:40.124  1457  1588 W libprocessgroup: kill(-3035, 9) failed: No such process
07-01 19:23:40.124  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10034 pid 3035 in 42ms
07-01 19:23:40.299  1457  2683 I ActivityManager: START u0 {act=android.intent.action.RUN flg=0x30000000 cmp=com.example.whatsupfirebase/.MainActivity (has extras)} from uid 2000
07-01 19:23:40.310   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:23:40.330  1457  1806 W System  : ClassLoader referenced unknown path: 
07-01 19:23:40.337  1457  1587 I ActivityManager: Start proc 4724:com.example.whatsupfirebase/u0a137 for activity com.example.whatsupfirebase/.MainActivity
07-01 19:23:40.342  4724  4724 I whatsupfirebas: Late-enabling -Xcheck:jni
07-01 19:23:40.423  2852  3008 I MicroDetector: Keeping mic open: false
07-01 19:23:40.423  2852  2977 I DeviceStateChecker: DeviceStateChecker cancelled
07-01 19:23:40.424  2852  3955 I AudioController: internalShutdown
07-01 19:23:40.424  2852  2999 I MicroRecognitionRunner: Stopping hotword detection.
07-01 19:23:40.428   470  1227 D audio_hw_primary: in_standby: enter: stream (0xed359700) usecase(18: audio-record)
07-01 19:23:40.443  4724  4724 W whatsupfirebas: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:40.476   470  1227 D audio_hw_primary: disable_audio_route: reset and update mixer path: audio-record
07-01 19:23:40.478   470  1227 D soundtrigger: audio_extn_sound_trigger_update_stream_status: uc_info->id 18 of type 1 for Event 2, with Raise=1
07-01 19:23:40.478   470  1227 D soundtrigger: audio_extn_sound_trigger_update_stream_status: send event 12: usecase id 18, type 1
07-01 19:23:40.478   470  1227 D sound_trigger_platform: platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
07-01 19:23:40.478   470  1227 D hardware_info: hw_info_append_hw_type : device_name = voice-rec-mic
07-01 19:23:40.478   470  1227 D audio_hw_primary: disable_snd_device: snd_device(102: voice-rec-mic)
07-01 19:23:40.478   470  1227 D msm8916_platform: platform_split_snd_device: snd_device(102) num devices(0) new_snd_devices(0)
07-01 19:23:40.480   470  1227 I soundtrigger: audio_extn_sound_trigger_update_device_status: device 0x66 of type 1 for Event 0, with Raise=1
07-01 19:23:40.480   470  1227 D sound_trigger_platform: platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
07-01 19:23:40.482   470  3254 D audio_hw_primary: in_set_parameters: enter: kvpairs=routing=0
07-01 19:23:40.483   513  1810 I SoundTriggerHwService::Module: onCallbackEvent no clients
07-01 19:23:40.485   470  3254 D audio_hw_primary: adev_close_input_stream: enter:stream_handle(0xed359700)
07-01 19:23:40.486   470  3254 D audio_hw_primary: in_standby: enter: stream (0xed359700) usecase(18: audio-record)
07-01 19:23:40.488  2852  3955 I MicrophoneInputStream: mic_close  SR : 16000 CC : 16 SO : 1999
07-01 19:23:40.488  2852  3955 E AudioSource: Stop listening is called on already closed AudioSource
07-01 19:23:40.489  2852  3058 I MicroRecognitionRunner: Detection finished
07-01 19:23:41.400  4724  4746 W DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
07-01 19:23:41.431  4724  4724 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
07-01 19:23:41.432  4724  4724 I FirebaseInitProvider: FirebaseApp initialization successful
07-01 19:23:41.439  4724  4749 W DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
07-01 19:23:41.451  4724  4749 I FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
07-01 19:23:41.451  4724  4749 I FirebaseAuth: [FirebaseAuth:] Preparing to create service connection to gms implementation
07-01 19:23:41.453  4724  4752 I ResourceExtractor: Found extracted resources res_timestamp-1-1561987176019
07-01 19:23:41.487  4724  4745 I FA      : App measurement is starting up, version: 16250
07-01 19:23:41.487  4724  4745 I FA      : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
07-01 19:23:41.488  4724  4745 I FA      : To enable faster debug mode event logging run:
07-01 19:23:41.488  4724  4745 I FA      :   adb shell setprop debug.firebase.analytics.app com.example.whatsupfirebase
07-01 19:23:41.656  4724  4724 D OpenGLRenderer: Skia GL Pipeline
07-01 19:23:41.683  4724  4724 I Adreno  : QUALCOMM build                   : 2df12b3, I07da2d9908
07-01 19:23:41.683  4724  4724 I Adreno  : Build Date                       : 10/04/18
07-01 19:23:41.683  4724  4724 I Adreno  : OpenGL ES Shader Compiler Version: EV031.25.03.01
07-01 19:23:41.683  4724  4724 I Adreno  : Local Branch                     : 
07-01 19:23:41.683  4724  4724 I Adreno  : Remote Branch                    : 
07-01 19:23:41.683  4724  4724 I Adreno  : Remote Branch                    : 
07-01 19:23:41.683  4724  4724 I Adreno  : Reconstruct Branch               : 
07-01 19:23:41.683  4724  4724 I Adreno  : Build Config                     : S L 6.0.7 AArch64
07-01 19:23:41.683  4724  4724 D vndksupport: Loading /vendor/lib64/hw/gralloc.msm8953.so from current namespace instead of sphal namespace.
07-01 19:23:41.689  4724  4724 I Adreno  : PFP: 0x005ff087, ME: 0x005ff063
07-01 19:23:41.695  4724  4724 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
07-01 19:23:41.695  4724  4724 I ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
07-01 19:23:41.971  4724  4724 W whatsupfirebas: Accessing hidden method Landroid/app/AppGlobals;->getInitialApplication()Landroid/app/Application; (light greylist, reflection)
07-01 19:23:41.979  4724  4761 I flutter : Observatory listening on http://127.0.0.1:39153/NO7dCd5l7gQ=/
07-01 19:23:42.044  4724  4724 E TSLocationManager: 
07-01 19:23:42.044  4724  4724 E TSLocationManager: ╔═════════════════════════════════════════════
07-01 19:23:42.044  4724  4724 E TSLocationManager: ║ LICENSE VALIDATION FAILURE: com.example.whatsupfirebase
07-01 19:23:42.044  4724  4724 E TSLocationManager: ╠═════════════════════════════════════════════
07-01 19:23:42.044  4724  4724 E TSLocationManager: ╟─ Failed to find license key in AndroidManifest.  Ensure you've added the key within <application><meta-data android:name="com.transistorsoft.locationmanager.license" android:value="<YOUR LICENSE KEY>" />
07-01 19:23:42.044  4724  4724 E TSLocationManager: ╟─ BackgroundGeolocation is fully functional in DEBUG builds without a license.
07-01 19:23:42.044  4724  4724 E TSLocationManager: ╚═════════════════════════════════════════════
07-01 19:23:42.137  4724  4724 I TSLocationManager: [c.t.l.adapter.TSConfig print] 
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╔═════════════════════════════════════════════
07-01 19:23:42.137  4724  4724 I TSLocationManager: ║ TSLocationManager version: 3.0.21 (321)
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╠═════════════════════════════════════════════
07-01 19:23:42.137  4724  4724 I TSLocationManager: {
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "activityRecognitionInterval": 10000,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "allowIdenticalLocations": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "autoSync": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "autoSyncThreshold": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "batchSync": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "debug": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "deferTime": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "desiredAccuracy": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "desiredOdometerAccuracy": 100,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "disableElasticity": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "disableLocationAuthorizationAlert": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "disableStopDetection": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "distanceFilter": 50,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "elasticityMultiplier": 1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "enableHeadless": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "enableTimestampMeta": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "extras": {},
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "fastestLocationUpdateInterval": -1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnBoot": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnGeofence": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnHeartbeat": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnLocationChange": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnMotionChange": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "forceReloadOnSchedule": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "foregroundService": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "geofenceInitialTriggerEntry": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "geofenceModeHighAccuracy": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "geofenceProximityRadius": 1000,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "geofenceTemplate": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "headers": {},
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "headlessJobService": "com.transistorsoft.flutter.backgroundgeolocation.HeadlessTask",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "heartbeatInterval": -1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "httpRootProperty": "location",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "httpTimeout": 60000,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "isMoving": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "locationTemplate": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "locationTimeout": 60,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "locationUpdateInterval": 1000,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "locationsOrderDirection": "ASC",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "logLevel": 5,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "logMaxDays": 3,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "maxBatchSize": -1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "maxDaysToPersist": 1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "maxRecordsToPersist": -1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "method": "POST",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "minimumActivityRecognitionConfidence": 75,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "notification": {
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "layout": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "title": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "text": "Location Service activated",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "color": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "channelName": "TSLocationManager",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "smallIcon": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "largeIcon": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "priority": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "strings": {},
07-01 19:23:42.137  4724  4724 I TSLocationManager:     "actions": []
07-01 19:23:42.137  4724  4724 I TSLocationManager:   },
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "params": {},
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "persist": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "persistMode": 2,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "schedule": [],
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "scheduleUseAlarmManager": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "speedJumpFilter": 300,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "startOnBoot": true,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "stationaryRadius": 25,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "stopAfterElapsedMinutes": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "stopOnStationary": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "stopOnTerminate": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "stopTimeout": 1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "triggerActivities": "in_vehicle, on_bicycle, on_foot, running, walking",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "url": "",
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "useSignificantChangesOnly": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "enabled": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "schedulerEnabled": false,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "trackingMode": 1,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "odometer": 0,
07-01 19:23:42.137  4724  4724 I TSLocationManager:   "isFirstBoot": false
07-01 19:23:42.137  4724  4724 I TSLocationManager: }
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╔═════════════════════════════════════════════
07-01 19:23:42.137  4724  4724 I TSLocationManager: ║ DEVICE SENSORS
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╠═════════════════════════════════════════════
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╟─ ✅  ACCELEROMETER: {Sensor name="BMI120 Accelerometer", vendor="BOSCH", version=2062600, type=1, maxRange=156.9064, resolution=0.0023956299, power=0.18, minDelay=5000}
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╟─ ✅  GYROSCOPE: {Sensor name="BMI120 Gyroscope", vendor="BOSCH", version=2062600, type=4, maxRange=34.906586, resolution=0.0010681152, power=0.9, minDelay=5000}
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╟─ ✅  MAGNETOMETER: {Sensor name="AK09918 Magnetometer", vendor="AKM", version=1, type=2, maxRange=4911.9995, resolution=0.14953613, power=1.1, minDelay=20000}
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╟─ ✅  SIGNIFICANT_MOTION: {Sensor name="Significant Motion Detector", vendor="QTI", version=2, type=17, maxRange=1.0, resolution=1.0, power=0.17999268, minDelay=-1}
07-01 19:23:42.137  4724  4724 I TSLocationManager: ╚═════════════════════════════════════════════
07-01 19:23:42.152  4724  4724 I TSLocationManager: [c.t.l.a.BackgroundGeolocation <init>] 
07-01 19:23:42.152  4724  4724 I TSLocationManager:   ✅  Google Play Services: connected (version code:12451000)
07-01 19:23:42.182  4724  4724 D TSLocationManager: [c.t.l.data.sqlite.b a] 
07-01 19:23:42.182  4724  4724 D TSLocationManager:   ✅  Opened database
07-01 19:23:42.189  4724  4724 D TSLocationManager: [c.t.l.data.sqlite.b prune] 
07-01 19:23:42.189  4724  4724 D TSLocationManager:   ℹ️  PRUNE -1 days
07-01 19:23:42.237  4724  4724 D NetworkSecurityConfig: No Network Security Config specified, using platform default
07-01 19:23:42.242  4724  4724 W whatsupfirebas: Accessing hidden method Ldalvik/system/CloseGuard;->get()Ldalvik/system/CloseGuard; (light greylist, reflection)
07-01 19:23:42.242  4724  4724 W whatsupfirebas: Accessing hidden method Ldalvik/system/CloseGuard;->open(Ljava/lang/String;)V (light greylist, reflection)
07-01 19:23:42.242  4724  4724 W whatsupfirebas: Accessing hidden method Ldalvik/system/CloseGuard;->warnIfOpen()V (light greylist, reflection)
07-01 19:23:42.266  4724  4724 I TSLocationManager: [c.t.l.a.BackgroundGeolocation e] 
07-01 19:23:42.266  4724  4724 I TSLocationManager:   🎾  Start monitoring location-provider changes
07-01 19:23:42.301  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/location
07-01 19:23:42.306  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/motionchange
07-01 19:23:42.311  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/activitychange
07-01 19:23:42.316  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/geofenceschange
07-01 19:23:42.321  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/geofence
07-01 19:23:42.325  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/heartbeat
07-01 19:23:42.330  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/http
07-01 19:23:42.335  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/schedule
07-01 19:23:42.339  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/connectivitychange
07-01 19:23:42.343  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/enabledchange
07-01 19:23:42.361  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/providerchange
07-01 19:23:42.367  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/powersavechange
07-01 19:23:42.371  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler register] com.transistorsoft/flutter_background_geolocation/events/notificationaction
07-01 19:23:42.453  4724  4745 I FA      : Tag Manager is not found and thus will not be used
07-01 19:23:42.521  4724  4767 I OpenGLRenderer: Initialized EGL, version 1.4
07-01 19:23:42.521  4724  4767 D OpenGLRenderer: Swap behavior 2
07-01 19:23:42.528   516  2273 W ServiceManager: Permission failure: android.permission.ACCESS_SURFACE_FLINGER from uid=10137 pid=4724
07-01 19:23:42.529   516  2273 D PermissionCache: checking android.permission.ACCESS_SURFACE_FLINGER for uid=10137 => denied (507 us)
07-01 19:23:43.794  4724  4724 D TSLocationManager: [c.t.f.b.streams.StreamHandler onListen] location
07-01 19:23:43.802  4724  4724 E TSLocationManager: [c.t.locationmanager.b.a a] 
07-01 19:23:43.802  4724  4724 E TSLocationManager:   ‼️  LICENSE VALIDATION FAILURE - com.transistorsoft.firebaseproxy.license: 
07-01 19:23:43.802  4724  4724 E TSLocationManager: Failed to find license key in AndroidManifest.  Ensure you've added the key within <application><meta-data android:name="com.transistorsoft.firebaseproxy.license" android:value="<YOUR LICENSE KEY>" />
07-01 19:23:43.842  4724  4724 D TSLocationManager: [c.t.l.adapter.TSConfig c] ℹ️   Persist config, dirty: [debug, distanceFilter, headlessJobService, logLevel, startOnBoot, stopOnTerminate, stopTimeout]
07-01 19:23:43.865  4724  4724 D TSLocationManager: [c.t.l.a.BackgroundGeolocation ready] LocationPermission :false
07-01 19:23:43.898  4724  4724 I Choreographer: Skipped 84 frames!  The application may be doing too much work on its main thread.
07-01 19:23:43.914  4724  4767 D vndksupport: Loading /vendor/lib64/hw/[email protected] from current namespace instead of sphal namespace.
07-01 19:23:43.914  4724  4767 D vndksupport: Loading /vendor/lib64/hw/gralloc.msm8953.so from current namespace instead of sphal namespace.
07-01 19:23:43.922  4724  4767 I OpenGLRenderer: Davey! duration=1426ms; Flags=1, IntendedVsync=74244998184, Vsync=75644998128, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=75648321961, AnimationStart=75648424669, PerformTraversalsStart=75648508002, DrawStart=75657879566, SyncQueued=75660588056, SyncStart=75660817326, IssueDrawCommandsStart=75661091545, SwapBuffers=75669608734, FrameCompleted=75672108005, DequeueBufferDuration=900000, QueueBufferDuration=661000, 
07-01 19:23:43.963  1457  1584 I ActivityManager: Displayed com.example.whatsupfirebase/.MainActivity: +3s657ms
07-01 19:23:44.013  1457  1467 I system_server: Background concurrent copying GC freed 200068(10MB) AllocSpace objects, 39(1436KB) LOS objects, 48% free, 12MB/24MB, paused 206us total 143.415ms
07-01 19:23:44.045  2852  2999 I PBSessionCacheImpl: Deleted sessionId[496656228920] from persistence.
07-01 19:23:44.058  2852  3008 W SearchServiceCore: Abort, client detached.
07-01 19:23:44.121   516  1827 W SurfaceFlinger: Attempting to set client state on removed layer: Splash Screen com.example.whatsupfirebase#0
07-01 19:23:44.121   516  1827 W SurfaceFlinger: Attempting to destroy on removed layer: Splash Screen com.example.whatsupfirebase#0
07-01 19:23:44.759  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:45.364  1457  4779 I chatty  : uid=1000 system_server identical 20 lines
07-01 19:23:45.384  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:45.419  1457  4779 I PackageManager.DexOptimizer: Running dexopt (dexoptNeeded=1) on: /data/app/com.isquareu.fluttermaps-J_Ib_HzxEpJ70DQJIA_rHw==/base.apk pkg=com.isquareu.fluttermaps isa=arm64 dexoptFlags=boot_complete,debuggable,public,enable_hidden_api_checks targetFilter=verify oatDir=/data/app/com.isquareu.fluttermaps-J_Ib_HzxEpJ70DQJIA_rHw==/oat classLoaderContext=PCL[/system/framework/org.apache.http.legacy.boot.jar]
07-01 19:23:45.419   593  1888 V installed: DexInv: --- BEGIN '/data/app/com.isquareu.fluttermaps-J_Ib_HzxEpJ70DQJIA_rHw==/base.apk' ---
07-01 19:23:45.464  4780  4780 I dex2oat : /system/bin/dex2oat --input-vdex-fd=-1 --output-vdex-fd=19 --compiler-filter=verify --debuggable --classpath-dir=/data/app/com.isquareu.fluttermaps-J_Ib_HzxEpJ70DQJIA_rHw== --class-loader-context=PCL[/system/framework/org.apache.http.legacy.boot.jar] --generate-mini-debug-info --compact-dex-level=none --compilation-reason=boot
07-01 19:23:45.489  4780  4780 W dex2oat : Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:45.995  1457  4471 W NotificationService: Toast already killed. pkg=com.example.whatsupfirebase callback=android.app.ITransientNotification$Stub$Proxy@baa8bb2
07-01 19:23:46.003   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:23:46.033  4780  4780 I dex2oat : dex2oat took 573.163ms (1.858s cpu) (threads: 8) arena alloc=0B (0B) java alloc=2MB (3001936B) native alloc=4MB (4938416B) free=2MB (2401616B)
07-01 19:23:46.044   593  1888 V installed: DexInv: --- END '/data/app/com.isquareu.fluttermaps-J_Ib_HzxEpJ70DQJIA_rHw==/base.apk' (success) ---
07-01 19:23:46.083  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.099  1457  4779 W system_server: Can't mmap dex file /system/framework/com.android.media.remotedisplay.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.100  1457  4779 W system_server: Can't mmap dex file /system/framework/com.android.location.provider.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.109  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.124  1457  4779 W system_server: Can't mmap dex file /system/framework/com.android.media.remotedisplay.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.125  1457  4779 W system_server: Can't mmap dex file /system/framework/com.android.location.provider.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.132  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.264  1457  4779 I chatty  : uid=1000 system_server identical 4 lines
07-01 19:23:46.282  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.304  1457  4779 I PackageManager.DexOptimizer: Running dexopt (dexoptNeeded=1) on: /data/app/com.example.whatsupfirebase-E4AkoS_iLG9hDa7XVRmWSQ==/base.apk pkg=com.example.whatsupfirebase isa=arm64 dexoptFlags=boot_complete,debuggable,public,enable_hidden_api_checks targetFilter=verify oatDir=/data/app/com.example.whatsupfirebase-E4AkoS_iLG9hDa7XVRmWSQ==/oat classLoaderContext=PCL[/system/framework/org.apache.http.legacy.boot.jar]
07-01 19:23:46.305   593  1888 V installed: DexInv: --- BEGIN '/data/app/com.example.whatsupfirebase-E4AkoS_iLG9hDa7XVRmWSQ==/base.apk' ---
07-01 19:23:46.341  4791  4791 I dex2oat : /system/bin/dex2oat --input-vdex-fd=-1 --output-vdex-fd=19 --compiler-filter=verify --debuggable --classpath-dir=/data/app/com.example.whatsupfirebase-E4AkoS_iLG9hDa7XVRmWSQ== --class-loader-context=PCL[/system/framework/org.apache.http.legacy.boot.jar] --generate-mini-debug-info --compact-dex-level=none --compilation-reason=boot
07-01 19:23:46.367  4791  4791 W dex2oat : Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:46.526   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:23:46.527   516  1827 W SurfaceFlinger: Attempting to destroy on removed layer: 83a6820 Toast#0
07-01 19:23:47.396  1457  1625 W WindowManager: Unable to start animation, surface is null or no children.
07-01 19:23:47.506  4791  4791 I dex2oat : Explicit concurrent copying GC freed 2376(447KB) AllocSpace objects, 0(0B) LOS objects, 99% free, 2120B/1538KB, paused 62us total 6.228ms
07-01 19:23:48.056  4791  4791 I dex2oat : Explicit concurrent copying GC freed 36881(7MB) AllocSpace objects, 0(0B) LOS objects, 98% free, 29KB/1565KB, paused 36us total 49.700ms
07-01 19:23:48.348  4791  4791 I dex2oat : Explicit concurrent copying GC freed 17827(3MB) AllocSpace objects, 0(0B) LOS objects, 97% free, 33KB/1569KB, paused 43us total 22.033ms
07-01 19:23:48.386  4791  4791 I dex2oat : dex2oat took 2.047s (6.239s cpu) (threads: 8) arena alloc=0B (0B) java alloc=33KB (34520B) native alloc=8MB (8475768B) free=2MB (3058568B)
07-01 19:23:48.406   593  1888 V installed: DexInv: --- END '/data/app/com.example.whatsupfirebase-E4AkoS_iLG9hDa7XVRmWSQ==/base.apk' (success) ---
07-01 19:23:48.439  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.554  1457  4779 I chatty  : uid=1000 system_server identical 5 lines
07-01 19:23:48.572  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.606  1457  4779 W system_server: Can't mmap dex file /system/framework/com.android.location.provider.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.618  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.636  1457  4779 W system_server: Can't mmap dex file /system/framework/javax.obex.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.649  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.673  1457  4779 W system_server: Can't mmap dex file /system/framework/org.apache.http.legacy.boot.jar!classes.dex directly; please zipalign to 4 bytes. Falling back to extracting file.
07-01 19:23:48.688  1457  4779 I BackgroundDexOptService: Pinning optimized code {com.isquareu.fluttermaps, com.example.whatsupfirebase}
07-01 19:23:49.164  2424  4818 I Places  : ?: Couldn't find platform key file.
07-01 19:23:49.165  2424  4819 I Places  : ?: Couldn't find platform key file.
07-01 19:23:49.197  2424  3192 I Places  : ?: PlacesBleScanner stop()
07-01 19:23:49.199  2424  2424 D BluetoothAdapter: disableBLE(): de-registering com.google.android.gms
07-01 19:23:49.199  1457  4552 D BluetoothManagerService: Unregistered for death of com.google.android.gms
07-01 19:23:49.199  1457  4552 D BluetoothManagerService: 0 registered Ble Apps
07-01 19:23:49.201  2424  2424 I BeaconBle: 'L' hardware scan: scan stopped, no clients
07-01 19:23:49.202  2424  2424 I BeaconBle: Places requested to stop scan
07-01 19:23:49.202  2424  2424 I BeaconBle: Scan canceled successfully.
07-01 19:23:49.205  2424  3192 I PlaceInferenceEngine: [anon] Changed inference mode: 1
07-01 19:23:49.206  2424  3192 I PlaceInferenceEngine: [account#-29786098] Changed inference mode: 1
07-01 19:23:49.217  2424  3192 I PlaceInferenceEngine: [anon] Changed inference mode: 1
07-01 19:23:49.217  2424  3192 I PlaceInferenceEngine: [account#-29786098] Changed inference mode: 1
07-01 19:23:52.032  2749  2860 I Finsky  : [27] imb.run(3): Stats for Executor: BlockingExecutor ink@da855be[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 12]
07-01 19:23:52.082  2749  2860 I Finsky  : [27] imb.run(3): Stats for Executor: LightweightExecutor ink@9c0961f[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 61]
07-01 19:23:52.523  2749  2860 I Finsky  : [27] imb.run(3): Stats for Executor: bgExecutor ink@fb78d6c[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 28]
07-01 19:23:54.077  2852  3008 I WorkerManager: dispose()
07-01 19:23:54.079  2852  3008 W ThreadPoolDumper: Queue length for executor EventBus is now 11. Perhaps some tasks are too long, or the pool is too small.
07-01 19:23:54.215  2424  2424 I BeaconBle: 'L' hardware scan: scan stopped, no clients
07-01 19:23:56.623  2424  2429 I .gms.persisten: Compiler allocated 4MB to compile void quv.a(android.content.Context)
07-01 19:23:56.881   499   499 E WifiHAL : Packet monitoring is not yet triggered
07-01 19:23:56.882  1457  1848 E WifiVendorHal: getTxPktFates(l.2219) failed {.code = ERROR_NOT_AVAILABLE, .description = }
07-01 19:23:56.882   499   499 E WifiHAL : Packet monitoring is not yet triggered
07-01 19:23:56.883  1457  1848 E WifiVendorHal: getRxPktFates(l.2261) failed {.code = ERROR_NOT_AVAILABLE, .description = }
07-01 19:23:56.989   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:23:56.992  1457  1457 W WindowManager: removeWindowToken: Attempted to remove non-existing token: android.os.Binder@24ff8dd
07-01 19:23:59.001  4724  4724 I TSLocationManager: [c.t.locationmanager.util.b a] 
07-01 19:23:59.001  4724  4724 I TSLocationManager:   🔵  LocationAuthorization: Requesting permission
07-01 19:23:59.019  1457  4471 I ActivityManager: START u0 {act=[android.permission.ACCESS_FINE_LOCATION, android.permission.ACCESS_COARSE_LOCATION] flg=0x10000000 cmp=com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity (has extras)} from uid 10137
07-01 19:23:59.021  4724  4724 D AndroidRuntime: Shutting down VM
--------- beginning of crash
07-01 19:23:59.023  4724  4724 E AndroidRuntime: FATAL EXCEPTION: main
07-01 19:23:59.023  4724  4724 E AndroidRuntime: Process: com.example.whatsupfirebase, PID: 4724
07-01 19:23:59.023  4724  4724 E AndroidRuntime: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2012)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.app.Instrumentation.execStartActivity(Instrumentation.java:1675)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.app.ContextImpl.startActivity(ContextImpl.java:917)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.app.ContextImpl.startActivity(ContextImpl.java:888)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.content.ContextWrapper.startActivity(ContextWrapper.java:379)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.intentfilter.androidpermissions.PermissionManager.startPermissionActivity(PermissionManager.java:63)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.intentfilter.androidpermissions.PermissionHandler.requestPermissions(PermissionHandler.java:70)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.intentfilter.androidpermissions.PermissionHandler.checkPermissions(PermissionHandler.java:47)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.intentfilter.androidpermissions.PermissionManager.checkPermissions(PermissionManager.java:50)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.transistorsoft.locationmanager.util.b$2.run(Unknown Source:26)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.os.Handler.handleCallback(Handler.java:873)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.os.Handler.dispatchMessage(Handler.java:99)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.os.Looper.loop(Looper.java:193)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at android.app.ActivityThread.main(ActivityThread.java:6718)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at java.lang.reflect.Method.invoke(Native Method)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495)
07-01 19:23:59.023  4724  4724 E AndroidRuntime:        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
07-01 19:23:59.032  4724  4724 E TSLocationManager: [c.t.l.a.BackgroundGeolocation$e uncaughtException] 
07-01 19:23:59.032  4724  4724 E TSLocationManager:   ‼️  Uncaught Exception: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
07-01 19:23:59.032  4724  4724 E TSLocationManager: {"activityRecognitionInterval":10000,"allowIdenticalLocations":false,"autoSync":true,"autoSyncThreshold":0,"batchSync":false,"debug":true,"deferTime":0,"desiredAccuracy":0,"desiredOdometerAccuracy":100,"disableElasticity":false,"disableLocationAuthorizationAlert":false,"disableStopDetection":false,"distanceFilter":50,"elasticityMultiplier":1,"enableHeadless":false,"enableTimestampMeta":false,"extras":{},"fastestLocationUpdateInterval":-1,"forceReloadOnBoot":false,"forceReloadOnGeofence":false,"forceReloadOnHeartbeat":false,"forceReloadOnLocationChange":false,"forceReloadOnMotionChange":false,"forceReloadOnSchedule":false,"foregroundService":true,"geofenceInitialTriggerEntry":true,"geofenceModeHighAccuracy":false,"geofenceProximityRadius":1000,"geofenceTemplate":"","headers":{},"headlessJobService":"com.transistorsoft.flutter.backgroundgeolocation.HeadlessTask","heartbeatInterval":-1,"httpRootProperty":"location","httpTimeout":60000,"isMoving":false,"locationTemplate":"","locationTimeout":60,"locationUpdateInterval":1000,"locationsOrderDirection":"ASC","logLevel":5,"logMaxDays":3,"maxBatchSize":-1,"maxDaysToPersist":1,"maxRecordsToPersist":-1,"method":"POST","minimumActivityRecognitionConfidence":75,"notification":{"layout":"","title":"","text":"Location Service activated","color":"","channelName":"TSLocationManager","smallIcon":"","largeIcon":"","priority":0,"strings":{},"actions":[]},"params":{},"persist":true,"persistMode":2,"schedule":[],"scheduleUseAlarmManager":false,"speedJumpFilter":300,"startOnBoot":true,"stationaryRadius":25,"stopAfterElapsedMinutes":0,"stopOnStationary":false,"stopOnTerminate":false,"stopTimeout":1,"triggerActivities":"in_vehicle, on_bicycle, on_foot, running, walking","url":"","useSignificantChangesOnly":false,"enabled":false,"schedulerEnabled":false,"trackingMode":1,"odometer":0,"isFirstBoot":false}
07-01 19:23:59.032  4724  4724 E TSLocationManager: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2012)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1675)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.app.ContextImpl.startActivity(ContextImpl.java:917)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.app.ContextImpl.startActivity(ContextImpl.java:888)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.content.ContextWrapper.startActivity(ContextWrapper.java:379)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.intentfilter.androidpermissions.PermissionManager.startPermissionActivity(PermissionManager.java:63)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.intentfilter.androidpermissions.PermissionHandler.requestPermissions(PermissionHandler.java:70)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.intentfilter.androidpermissions.PermissionHandler.checkPermissions(PermissionHandler.java:47)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.intentfilter.androidpermissions.PermissionManager.checkPermissions(PermissionManager.java:50)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.transistorsoft.locationmanager.util.b$2.run(Unknown Source:26)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.os.Handler.handleCallback(Handler.java:873)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.os.Handler.dispatchMessage(Handler.java:99)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.os.Looper.loop(Looper.java:193)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at android.app.ActivityThread.main(ActivityThread.java:6718)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at java.lang.reflect.Method.invoke(Native Method)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495)
07-01 19:23:59.032  4724  4724 E TSLocationManager:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
07-01 19:23:59.041  1457  4471 W ActivityManager:   Force finishing activity com.example.whatsupfirebase/.MainActivity
07-01 19:23:59.047  4724  4724 I Process : Sending signal. PID: 4724 SIG: 9
07-01 19:23:59.053  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
07-01 19:23:59.053  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
07-01 19:23:59.054  1457  1585 W ActivityManager: Failed to set scheduling policy, thread does not exist:
07-01 19:23:59.054  1457  1585 W ActivityManager: java.lang.IllegalArgumentException: Given thread 4767 does not exist
07-01 19:23:59.134  1457  1832 W InputDispatcher: channel 'd2cb4b4 com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x9
07-01 19:23:59.134  1457  1832 E InputDispatcher: channel 'd2cb4b4 com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
07-01 19:23:59.149  1457  4552 I ActivityManager: Process com.example.whatsupfirebase (pid 4724) has died: vis  +99TOP 
07-01 19:23:59.149  1457  3995 I WindowManager: WIN DEATH: Window{d2cb4b4 u0 com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity}
07-01 19:23:59.149  1457  3995 W InputDispatcher: Attempted to unregister already unregistered input channel 'd2cb4b4 com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity (server)'
07-01 19:23:59.150  1457  1588 W libprocessgroup: kill(-4724, 9) failed: No such process
07-01 19:23:59.152   466   466 I Zygote  : Process 4724 exited due to signal (9)
07-01 19:23:59.160   516   723 W SurfaceFlinger: Attempting to set client state on removed layer: com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity#0
07-01 19:23:59.160   516   723 W SurfaceFlinger: Attempting to destroy on removed layer: com.example.whatsupfirebase/com.example.whatsupfirebase.MainActivity#0
07-01 19:23:59.163   516  1827 W SurfaceFlinger: Attempting to destroy on removed layer: AppWindowToken{9c82545 token=Token{781b1bc ActivityRecord{9a659af u0 com.example.whatsupfirebase/.MainActivity t191}}}#0
07-01 19:23:59.172  1457  1625 W ActivityManager: setHasOverlayUi called on unknown pid: 4724
07-01 19:23:59.174  1457  1588 W libprocessgroup: kill(-4724, 9) failed: No such process
07-01 19:23:59.175  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10137 pid 4724 in 25ms
07-01 19:23:59.202   516   727 D SurfaceFlinger: duplicate layer name: changing com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity to com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity#1
07-01 19:23:59.214  2852  2852 W ThreadPoolDumper: Queue length for executor EventBus is now 11. Perhaps some tasks are too long, or the pool is too small.
07-01 19:23:59.220  2852  3008 W SessionLifecycleManager: Handover failed. Creating new session controller.
07-01 19:23:59.256  2852  4637 W LocationOracle: No location history returned by ContextManager
07-01 19:23:59.273  2852  3008 I MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
07-01 19:23:59.274  2852  3008 I AudioController: Created new AudioSource
07-01 19:23:59.276  2852  3008 I MicroDetectionWorker: onReady
07-01 19:23:59.278  2852  3936 I MicroRecognitionRunner: Starting detection.
07-01 19:23:59.279  2852  3936 I MultipleReaderAudioSrc: Using micInputStream
07-01 19:23:59.279  2852  3026 I MicrophoneInputStream: mic_starting  SR : 16000 CC : 16 SO : 1999
07-01 19:23:59.282   470  3254 D audio_hw_primary: adev_open_input_stream: enter: sample_rate(16000) channel_mask(0x10) devices(0x80000004)        stream_handle(0xed359700) io_handle(62) source(6) format 1
07-01 19:23:59.282   470  3254 W audio_hw_utils: audio_extn_utils_update_stream_input_app_type_cfg: App type could not be selected. Falling back to default
07-01 19:23:59.284   513  4863 I AudioFlinger: AudioFlinger's thread 0xeca8aec0 tid=4863 ready to run
07-01 19:23:59.284   470  3254 D audio_hw_primary: in_standby: enter: stream (0xed359700) usecase(18: audio-record)
07-01 19:23:59.284  2424  4635 W ctxmgr  : [AclManager] No 3 for (accnt=account#-517948760#, com.google.android.gms(10002):UserVelocityProducer, vrsn=17785037, 0, 3pPkg = null ,  3pMdlId = null ,  pid = 2424). Was: 3 for 1, account#-517948760# [CONTEXT service_id=47 ]
07-01 19:23:59.285   470  3254 D audio_hw_primary: in_standby: enter: stream (0xed359700) usecase(18: audio-record)
07-01 19:23:59.291   470  3254 D audio_hw_primary: in_set_parameters: enter: kvpairs=bottom=;input_source=6;routing=-2147483644
07-01 19:23:59.292   513  1810 I SoundTriggerHwService::Module: onCallbackEvent no clients
07-01 19:23:59.293  2852  3026 I MicrophoneInputStream: mic_started  SR : 16000 CC : 16 SO : 1999
07-01 19:23:59.294   470  4865 D audio_hw_primary: start_input_stream: enter: stream(0xed359700)usecase(18: audio-record)
07-01 19:23:59.295   470  4865 D audio_hw_primary: select_devices for use case (audio-record)
07-01 19:23:59.295   470  4865 D audio_hw_primary: select_devices: out_snd_device(0: ) in_snd_device(102: voice-rec-mic)
07-01 19:23:59.295   470  4865 I msm8916_platform: platform_check_and_set_capture_codec_backend_cfg:txbecf: afe: bitwidth 16, samplerate 16000, channel 1 format 1, backend_idx 7 usecase = 18 device (voice-rec-mic)
07-01 19:23:59.295   470  4865 I msm8916_platform: platform_check_capture_codec_backend_cfg:txbecf: afe: Codec selected backend: 7 current bit width: 16 and sample rate: 16000, channels 1 format 1
07-01 19:23:59.295   470  4865 W msm8916_platform: platform_check_capture_codec_backend_cfg:txbecf: afe:Use default bw and sr for voice/voip calls
07-01 19:23:59.295   470  4865 I msm8916_platform: platform_check_capture_codec_backend_cfg:txbecf: afe: Codec selected backend: 7 updated bit width: 16 and sample rate: 48000
07-01 19:23:59.295   470  4865 D audio_hw_primary: check_usecases_capture_codec_backend:becf: force routing 0
07-01 19:23:59.295   470  4865 D hardware_info: hw_info_append_hw_type : device_name = voice-rec-mic
07-01 19:23:59.295   470  4865 D msm8916_platform: platform_split_snd_device: snd_device(102) num devices(0) new_snd_devices(0)
07-01 19:23:59.295   470  4865 D audio_hw_primary: enable_snd_device: snd_device(102: voice-rec-mic)
07-01 19:23:59.295   470  4865 I soundtrigger: audio_extn_sound_trigger_update_device_status: device 0x66 of type 1 for Event 1, with Raise=1
07-01 19:23:59.295   470  4865 D sound_trigger_platform: platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
07-01 19:23:59.295   470  4865 D audio_route: Apply path: voice-rec-mic
07-01 19:23:59.299   470  4865 W audio_hw_utils: audio_extn_utils_update_stream_input_app_type_cfg: App type could not be selected. Falling back to default
07-01 19:23:59.299   470  4865 D soundtrigger: audio_extn_sound_trigger_update_stream_status: uc_info->id 18 of type 1 for Event 3, with Raise=1
07-01 19:23:59.299   470  4865 D soundtrigger: audio_extn_sound_trigger_update_stream_status: send event 13: usecase id 18, type 1
07-01 19:23:59.299   470  4865 D sound_trigger_platform: platform_stdev_check_and_update_concurrency: concurrency active 0, tx 2, rx 0, concurrency session_allowed 0
07-01 19:23:59.299   470  4865 D audio_hw_utils: audio_extn_utils_send_app_type_cfg: usecase->in_snd_device voice-rec-mic
07-01 19:23:59.299   470  4865 D msm8916_platform: platform_split_snd_device: snd_device(102) num devices(0) new_snd_devices(0)
07-01 19:23:59.299   470  4865 D audio_hw_utils: audio_extn_btsco_get_sample_rate:Not a BT SCO device, need not update sampling rate
07-01 19:23:59.299   470  4865 I audio_hw_utils: send_app_type_cfg_for_device CAPTURE app_type 69938, acdb_dev_id 4, sample_rate 48000, snd_device_be_idx 46
07-01 19:23:59.300   470  4865 D msm8916_platform: platform_split_snd_device: snd_device(102) num devices(1) new_snd_devices(0)
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 4, path = 1, app id = 0x11132, sample rate = 48000
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_asm_topology
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TOPOLOGY_ID
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_adm_topology
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_audtable
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE_SIZE
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_audvoltable
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_VOL_STEP_TABLE_SIZE
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE, vol index 0
07-01 19:23:59.300   470  4865 D         : Failed to fetch the lookup information of the device 00000004 
07-01 19:23:59.300   470  4865 E ACDB-LOADER: Error: ACDB AudProc vol returned = -19
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> AUDIO_SET_VOL_CAL cal type = 12
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_SIZE
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_audstrmtable
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_V2
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> audstrm_cal->cal_type.cal_data.cal_size = 16
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_afe_topology
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_TOPOLOGY_ID
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> GET_AFE_TOPOLOGY_ID for adcd_id 4, Topology Id 112fb
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_afe_cal
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE_SIZE
07-01 19:23:59.300   470  4865 D         : Failed to fetch the lookup information of the device 00000004 
07-01 19:23:59.300   470  4865 E ACDB-LOADER: Error: ACDB_CMD_GET_AFE_COMMON_TABLE_SIZE Returned = -19
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE
07-01 19:23:59.300   470  4865 D         : Failed to fetch the lookup information of the device 00000004 
07-01 19:23:59.300   470  4865 E ACDB-LOADER: Error: ACDB AFE returned = -19
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> send_hw_delay : acdb_id = 4 path = 1
07-01 19:23:59.300   470  4865 D ACDB-LOADER: ACDB -> ACDB_AVSYNC_INFO: ACDB_CMD_GET_DEVICE_PROPERTY
07-01 19:23:59.300   470  4865 D audio_hw_primary: enable_audio_route: apply mixer and update path: audio-record
07-01 19:23:59.300   470  4865 D audio_route: Apply path: audio-record
07-01 19:23:59.301   470  4865 D audio_hw_primary: select_devices: done
07-01 19:23:59.304  2424  4864 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.326  2424  3192 I PlaceInferenceEngine: [anon] Changed inference mode: 1
07-01 19:23:59.326  2424  3192 I PlaceInferenceEngine: [account#-29786098] Changed inference mode: 1
07-01 19:23:59.346   470  4865 D audio_hw_primary: start_input_stream: exit
07-01 19:23:59.364  2852  3008 I MicroDetectionWorker: onReady
07-01 19:23:59.364  2424  4635 I ctxmgr  : [ProducerStatusImpl] updateStateForNewContextData: inactive, contextName=7 [CONTEXT service_id=47 ]
07-01 19:23:59.382  2424  4864 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.399  2424  3192 I Places  : ?: PlacesBleScanner start() with priority 2
07-01 19:23:59.401  2424  3192 I PlaceInferenceEngine: [anon] Changed inference mode: 1
07-01 19:23:59.401  2424  3192 I PlaceInferenceEngine: [account#-29786098] Changed inference mode: 1
07-01 19:23:59.409  2424  3192 I Places  : Converted 3 out of 3 WiFi scans
07-01 19:23:59.414  2424  4635 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.414  2424  2424 I BeaconBle: Using BLE 'L' hardware layer
07-01 19:23:59.415  2424  4635 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.417  2424  4635 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.429  2424  2424 I BeaconBle: Client requested scan, settings=BleSettings [scanMode=ZERO_POWER, callbackType=ALL_MATCHES, reportDelayMillis=0, 1 filters, 0 clients, callingClientName=Places]
07-01 19:23:59.432  1457  2683 D BluetoothManagerService: Registered for death of com.google.android.gms
07-01 19:23:59.432  1457  2683 D BluetoothManagerService: 1 registered Ble Apps
07-01 19:23:59.433  2424  2424 D BluetoothAdapter: isLeEnabled(): BLE_ON
07-01 19:23:59.433  2424  2424 D BluetoothAdapter: enableBLE(): Bluetooth already enabled
07-01 19:23:59.434  2424  4819 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.436  2424  2424 I BeaconBle: ZERO_POWER is disabled.
07-01 19:23:59.436  2424  2424 I BeaconBle: 'L' hardware scan: scan stopped, no powered clients
07-01 19:23:59.436  2424  4635 I PlaceInferenceEngine: No beacon scan available - ignoring candidates.
07-01 19:23:59.479  2424  4635 I PlaceInferenceEngine: No beacon scan available - ignoring candidates.
07-01 19:23:59.481  2424  4818 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.521  2424  4635 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.553  2424  4818 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.559  2424  4864 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.609  2424  3140 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:59.609  2424  3140 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.610  2424  3140 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.628  2424  3140 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:59.629  2424  3140 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.629  2424  3140 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.726  2424  3140 E Volley  : [110] BasicNetwork.performRequest: Unexpected response code 400 for https://www.googleapis.com/placesandroid/v1/getPlaceById?key=AIzaSyAf4nrRiEKvqzlRKTncQaAXMzb3ePYHr8Y
07-01 19:23:59.731  2424  4635 I Places  : ?: Couldn't find platform key file.
07-01 19:23:59.745  2424  4864 W Places  : {"code":400,"errors":[{"reason":"badRequest","domain":"global","message":"API key expired. Please renew the API key."}]}
07-01 19:23:59.746  2424  4864 E AsyncOperation: serviceID=65, operation=GetPlaceById
07-01 19:23:59.746  2424  4864 E AsyncOperation: OperationException[Status{statusCode=ERROR, resolution=null}]
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at bhvy.a(:com.google.android.gms@[email protected] (100400-253824076):1)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at bhvt.a(:com.google.android.gms@[email protected] (100400-253824076):25)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at aaew.run(:com.google.android.gms@[email protected] (100400-253824076):19)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at bkng.run(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at skq.b(:com.google.android.gms@[email protected] (100400-253824076):37)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at skq.run(:com.google.android.gms@[email protected] (100400-253824076):21)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at sqo.run(Unknown Source:7)
07-01 19:23:59.746  2424  4864 E AsyncOperation:        at java.lang.Thread.run(Thread.java:764)
07-01 19:23:59.963  2424  2972 I Auth    : [ReflectiveChannelBinder] Successfully bound channel!
07-01 19:23:59.996  2424  2972 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:23:59.997  2424  2972 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:23:59.997  2424  2972 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:24:00.121  2424  2972 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
07-01 19:24:00.121  2424  2972 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:24:00.121  2424  2972 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@[email protected] (100400-253824076):2)
07-01 19:24:00.641   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:24:10.918   508   508 I vendor.rmt_storage: rmt_storage_connect_cb: clnt_h=0x9 conn_h=0x773f02c020
07-01 19:24:10.918   508   508 I vendor.rmt_storage: rmt_storage_rw_iovec_cb: /boot/modem_fs1: req_h=0x9 msg_id=3: R/W request received
07-01 19:24:10.918   508   508 I vendor.rmt_storage: wakelock acquired: 1, error no: 42
07-01 19:24:10.918   508   892 I vendor.rmt_storage: rmt_storage_client_thread: /boot/modem_fs1: Unblock worker thread (th_id: 512163321072)
07-01 19:24:11.000   508   892 I vendor.rmt_storage: rmt_storage_client_thread: /boot/modem_fs1: req_h=0x9 msg_id=3: Bytes written = 1572864
07-01 19:24:11.000   508   892 I vendor.rmt_storage: rmt_storage_client_thread: /boot/modem_fs1: req_h=0x9 msg_id=3: Send response: res=0 err=0
07-01 19:24:11.000   508   892 I vendor.rmt_storage: rmt_storage_client_thread: /boot/modem_fs1: About to block rmt_storage client thread (th_id: 512163321072) wakelock released: 1, error no: 0
07-01 19:24:11.000   508   892 I vendor.rmt_storage: 
07-01 19:24:11.003   508   508 I vendor.rmt_storage: rmt_storage_disconnect_cb: clnt_h=0x9 conn_h=0x773f02c020
07-01 19:24:16.499  1457  4861 D WificondControl: Scan result ready event
07-01 19:24:16.500   680  2549 I LOWI-8.6.0.33: [LOWI-Scan] lowi_close_record:Scan done in 86691ms, 2 APs in scan results
07-01 19:24:28.254  1457  1825 W ActivityManager: Unable to start service Intent { act=com.google.android.gms.drive.ApiService.RESET_AFTER_BOOT flg=0x4 cmp=com.google.android.gms/.drive.api.ApiService (has extras) } U=0: not found
07-01 19:24:28.285  1457  2683 W ActivityManager: Background start not allowed: service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService } to com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService from pid=3500 uid=10097 pkg=com.google.android.apps.messaging startFg?=false
07-01 19:24:28.290  3500  4320 W Bugle   : SubscriptionMetadataUtils get: invalid subId = -1
07-01 19:24:28.294  3500  4320 I Bugle   : CountryCodeDetector: updateMainDeviceCountry from default subscription network country. detected country: in
07-01 19:24:29.266  2852  3058 W GmsLocationProvider: Error removing location updates: 16
07-01 19:24:37.310  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:24:42.877  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:24:49.948   564   564 I adbd    : Calling send_auth_request...
07-01 19:24:49.964   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:24:49.967   564   564 I adbd    : adb client authorized
07-01 19:24:51.801   564   564 I adbd    : Calling send_auth_request...
07-01 19:24:51.816   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:24:51.819   564   564 I adbd    : adb client authorized
07-01 19:24:51.849   564   564 I adbd    : Calling send_auth_request...
07-01 19:24:51.874   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:24:51.874   564   641 E adbd    : remote usb: read overflow (data length = 1664971621): No such device
07-01 19:24:51.883   564   564 E adbd    : Invalid base64 key  in /data/misc/adb/adb_keys
07-01 19:24:51.883   564   564 I adbd    : Calling send_auth_request...
07-01 19:24:51.884   564   564 I adbd    : closing functionfs transport
07-01 19:24:51.921   564   581 I adbd    : initializing functionfs
07-01 19:24:51.922   564   581 I adbd    : functionfs successfully initialized
07-01 19:24:51.922   564   581 I adbd    : registering usb transport
07-01 19:24:53.849   564  4882 E adbd    : remote usb: read overflow (data length = 1933407077): Success
07-01 19:24:53.851   564   564 I adbd    : closing functionfs transport
07-01 19:24:53.898   564   581 I adbd    : initializing functionfs
07-01 19:24:53.898   564   581 I adbd    : functionfs successfully initialized
07-01 19:24:53.898   564   581 I adbd    : registering usb transport
07-01 19:24:55.870   564  4884 E adbd    : remote usb: read overflow (data length = 1664971621): Success
07-01 19:24:55.872   564   564 I adbd    : closing functionfs transport
07-01 19:24:55.932   564   581 I adbd    : initializing functionfs
07-01 19:24:55.932   564   581 I adbd    : functionfs successfully initialized
07-01 19:24:55.932   564   581 I adbd    : registering usb transport
07-01 19:24:58.590  3500  3500 W BugleDataModel: ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.SelfParticipantsRefreshAction-SelfParticipantsRefreshAction:29978010
07-01 19:24:58.590  3500  3500 W BugleDataModel: java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{9ed6bd4 u0a97 CEM  idle change:cached procs:2 seq(0,0,0)}
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1577)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.app.ContextImpl.startService(ContextImpl.java:1532)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.content.ContextWrapper.startService(ContextWrapper.java:664)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(SourceFile:21)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(SourceFile:17)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at efs.c(SourceFile:12)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at efr.run(Unknown Source:1)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.os.Handler.handleCallback(Handler.java:873)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.os.Handler.dispatchMessage(Handler.java:99)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.os.Looper.loop(Looper.java:193)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at android.app.ActivityThread.main(ActivityThread.java:6718)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at java.lang.reflect.Method.invoke(Native Method)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495)
07-01 19:24:58.590  3500  3500 W BugleDataModel:        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
07-01 19:24:58.593  3500  4320 I BugleDataModel: ParticipantRefresh: Start participant refresh. refreshMode: 1
07-01 19:24:58.615  3500  4320 W Bugle   : SubscriptionMetadataUtils get: invalid subId = -1
07-01 19:24:58.616  3500  4320 I chatty  : uid=10097(com.google.android.apps.messaging) BackgroundThrea identical 1 line
07-01 19:24:58.616  3500  4320 W Bugle   : SubscriptionMetadataUtils get: invalid subId = -1
07-01 19:24:58.616  3500  4320 E Bugle   : Get mms config failed: invalid subId. subId=-1, real subId=-1, map={ }
07-01 19:24:58.616  3500  4320 I BugleBackup: Registering preference change listener for "buglesub_-1".
07-01 19:24:58.618  3500  4320 W Bugle   : SubscriptionUtilsPostLMR1: getSelfRawNumber: subInfo is null for subscription{id:-1}
07-01 19:24:58.663  3500  4320 I BugleDataModel: ParticipantRefresh: Number of participants refreshed: 0
07-01 19:25:00.176   564  4886 E adbd    : remote usb: read overflow (data length = 1933407077): Success
07-01 19:25:00.177   564   564 I adbd    : closing functionfs transport
07-01 19:25:00.224   564   581 I adbd    : initializing functionfs
07-01 19:25:00.224   564   581 I adbd    : functionfs successfully initialized
07-01 19:25:00.224   564   581 I adbd    : registering usb transport
07-01 19:25:02.914   564  4890 E adbd    : remote usb: read overflow (data length = 1664971621): Success
07-01 19:25:02.916   564   564 I adbd    : closing functionfs transport
07-01 19:25:02.974   564   581 I adbd    : initializing functionfs
07-01 19:25:02.975   564   581 I adbd    : functionfs successfully initialized
07-01 19:25:02.975   564   581 I adbd    : registering usb transport
07-01 19:25:05.847   564  4892 E adbd    : remote usb: read overflow (data length = 1933407077): Success
07-01 19:25:05.849   564   564 I adbd    : closing functionfs transport
07-01 19:25:05.894   564   581 I adbd    : initializing functionfs
07-01 19:25:05.895   564   581 I adbd    : functionfs successfully initialized
07-01 19:25:05.895   564   581 I adbd    : registering usb transport
07-01 19:25:09.873   564  4894 E adbd    : remote usb: read overflow (data length = 1664971621): Success
07-01 19:25:09.875   564   564 I adbd    : closing functionfs transport
07-01 19:25:09.918   564   581 I adbd    : initializing functionfs
07-01 19:25:09.918   564   581 I adbd    : functionfs successfully initialized
07-01 19:25:09.918   564   581 I adbd    : registering usb transport
07-01 19:25:11.937   564  4897 E adbd    : aio: got error event on read total bufs 1: Cannot send after transport endpoint shutdown
07-01 19:25:11.938   564  4897 E adbd    : remote usb: read terminated (message): Cannot send after transport endpoint shutdown
07-01 19:25:11.939   564   564 I adbd    : closing functionfs transport
07-01 19:24:58.588  1457  2683 W ActivityManager: Background start not allowed: service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService } to com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService from pid=3500 uid=10097 pkg=com.google.android.apps.messaging startFg?=false
07-01 19:25:11.954  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_DISCONNECTED flg=0x4000010 (has extras) } to com.google.android.apps.photos/.scheduler.PowerReceiver
07-01 19:25:11.954  2552  2552 I GsaVoiceInteractionSrv: O received Intent { act=android.intent.action.ACTION_POWER_DISCONNECTED flg=0x4000010 (has extras) }
07-01 19:25:11.954  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_DISCONNECTED flg=0x4000010 (has extras) } to com.google.android.apps.turbo/.nudges.broadcasts.BatteryStatusChangedReceiver
07-01 19:25:11.954  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_DISCONNECTED flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
07-01 19:25:11.956  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:25:11.956   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:25:12.013  1457  1590 E BatteryExternalStatsWorker: no controller energy info supplied for bluetooth
07-01 19:25:12.025  1457  1590 W KernelCpuProcReader: File not exist: /proc/uid_cpupower/time_in_state
07-01 19:25:12.025  1457  1590 W KernelCpuProcReader: File not exist: /proc/uid_cpupower/concurrent_active_time
07-01 19:25:12.025  1457  1590 W KernelCpuProcReader: File not exist: /proc/uid_cpupower/concurrent_policy_time
07-01 19:25:12.030   564   581 I adbd    : initializing functionfs
07-01 19:25:12.031   564   581 I adbd    : functionfs successfully initialized
07-01 19:25:12.031   564   581 I adbd    : registering usb transport
07-01 19:25:12.031   490   490 E QCOM PowerHAL: extract_stats: failed to open: /d/system_stats Error = No such file or directory
07-01 19:25:12.033  1457  1590 I BatteryStatsImpl: Resetting battery stats: level=100 status=5 dischargeLevel=100 lowAmount=0 highAmount=0
07-01 19:25:12.053   490   490 E QCOM PowerHAL: extract_stats: failed to open: /d/system_stats Error = No such file or directory
07-01 19:25:12.063  1457  1585 I BinderCallsStatsService: Resetting stats
07-01 19:25:12.940  1457  1622 D UsbDeviceManager: Clear notification
07-01 19:25:12.979  1457  1587 I ActivityManager: Start proc 4907:android.process.media/u0a13 for broadcast com.android.providers.media/.MtpReceiver
07-01 19:25:12.994  4907  4907 E d.process.medi: Not starting debugger since process cannot load the jdwp agent.
07-01 19:25:12.995  1927  1927 V StatusBar: mStatusBarWindow: com.android.systemui.statusbar.phone.StatusBarWindowView{5fbb848 V.ED..... ......ID 0,0-1080,63} canPanelBeCollapsed(): false
07-01 19:25:13.091  1457  2683 I ActivityManager: Killing 4371:com.instagram.android:fwkstartlog/u0a129 (adj 906): empty #17
07-01 19:25:13.092  1457  1588 W libprocessgroup: kill(-4371, 9) failed: No such process
07-01 19:25:13.106  1457  1588 W libprocessgroup: kill(-4371, 9) failed: No such process
07-01 19:25:13.141   466   466 I Zygote  : Process 4371 exited due to signal (9)
07-01 19:25:13.142  1457  1588 W libprocessgroup: kill(-4371, 9) failed: No such process
07-01 19:25:13.142  1457  1588 I libprocessgroup: Successfully killed process cgroup uid 10129 pid 4371 in 50ms
07-01 19:25:13.199  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine$PhoneskyJobSchedulerJobService.onStartJob(3): onJobSchedulerWakeup with jobId 9002
07-01 19:25:13.203  2749  2749 I Finsky  : [2] pyj.a(22): Scheduling fallback job with id: 9034, and delay: 43200000 ms
07-01 19:25:13.211  2749  2749 I Finsky  : [2] pyj.a(5): Scheduling fallback in 64799995 (absolute: 64964955)
07-01 19:25:13.244  2749  2749 I Finsky  : [2] pyt.handleMessage(10): DeviceState: DeviceState{currentTime=1561989313240, isCharging=false, isIdle=false, netAny=true, netNotRoaming=true, netUnmetered=true}
07-01 19:25:13.251  2768  3180 I TelephonySpam: TelephonySpamChimeraService - Running Telephony Spam Chimera Service
07-01 19:25:13.252  2768  3180 I TelephonySpam: TelephonySpamChimeraService - Cleaning SIP Header local table of old entries
07-01 19:25:13.253  4485  4925 W Zebedee-OptIn: Opt in=true
07-01 19:25:13.257  4485  4485 W Zebedee-OptIn: Opt in=true
07-01 19:25:13.261  4485  4925 W Zebedee-inferBucketsJob: Models given by config: 1
07-01 19:25:13.263  2768  3181 I TelephonySpam: TelephonySpamChimeraService - Running Telephony Spam Chimera Service
07-01 19:25:13.270  2768  3180 I TelephonySpam: TelephonySpamChimeraService - Syncing Call Spam List
07-01 19:25:13.271  2768  3180 I TelephonySpam: SpamListSync - SpamListSyncChimeraService.syncSpamList called with tag: telephonyspam.SpamListSyncOneOffTask, extras: Bundle[{SpamList Type=0, Action=1.0}]
07-01 19:25:13.272  2749  4930 I Finsky  : [97] qah.b(7): Jobs in database: 1-1337 10-1 10-3 10-4 10-6 10-8 10-10 10-11 10-12 10-14 10-15 10-18 10-20 10-22 10-26 10-29 10-30 10-33 10-36 10-38 10-39 10-41 10-42 10-44 10-46 10-47 10-48 10-50 10-55 21-333333333 26-1414141414 
07-01 19:25:13.272  2768  3180 I TelephonySpam: SpamListSync - Call spam module disabled. Skipping spam list syncing.
07-01 19:25:13.298  2749  2749 I Finsky  : [2] pym.a(22): Running job: 21-333333333
07-01 19:25:13.298  2749  2749 W Finsky  : [2] cxq.a(19): For unauth, use getDfeApiNonAuthenticated() instead!
07-01 19:25:13.299  2749  2749 I Finsky  : [2] pym.c(3): Job 21-333333333 finished
07-01 19:25:13.301  2749  2749 I Finsky  : [2] pyt.handleMessage(84): RunningQueue size: 0, PendingQueue size: 0
07-01 19:25:13.302  2749  2749 I Finsky  : [2] pyt.handleMessage(27): Executor finished
07-01 19:25:13.321  4485  4925 W Zebedee-appUsageCache: Cache empty or doesn't contain stats for the requested range.
07-01 19:25:13.341  2749  2749 I Finsky  : [2] qah.b(7): Jobs in database: 1-1337 10-1 10-3 10-4 10-6 10-8 10-10 10-11 10-12 10-14 10-15 10-18 10-20 10-22 10-26 10-29 10-30 10-33 10-36 10-38 10-39 10-41 10-42 10-44 10-46 10-47 10-48 10-50 10-55 26-1414141414 
07-01 19:25:13.357  2424  2453 I .gms.persisten: Waiting for a blocking GC ProfileSaver
07-01 19:25:13.358  2749  2749 I Finsky  : [2] pxo.a(113): ConstraintMapping: 1-1337, 10-1, 10-3, 10-4, 10-6, 10-8, 10-10, 10-11, 10-12, 10-14, 10-15, 10-18, 10-20, 10-22, 10-26, 10-29, 10-30, 10-33, 10-36, 10-38, 10-39, 10-41, 10-42, 10-44, 10-46, 10-47, 10-48, 10-50, 10-55,  -> L: 533149ms, D: 43733149ms, C: false, I: false, N: 1
07-01 19:25:13.359  2749  2749 I Finsky  : [2] pxo.a(113): ConstraintMapping: 26-1414141414,  -> L: 39596140ms, D: 40496140ms, C: false, I: false, N: 0
07-01 19:25:13.360  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(42): Cancelling existing job with id: 9003
07-01 19:25:13.363  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(4): Scheduling job Id: 9000, L: 533149, D: 43733149, C: false, I: false, N: 1
07-01 19:25:13.365  2749  2749 I Finsky  : [2] com.google.android.finsky.scheduler.JobSchedulerEngine.a(4): Scheduling job Id: 9001, L: 39596140, D: 40496140, C: false, I: false, N: 0
07-01 19:25:13.433  2424  2453 I .gms.persisten: WaitForGcToComplete blocked ProfileSaver on ProfileSaver for 75.529ms
07-01 19:25:13.514  4485  4925 W Zebedee-appStandbyManager: Successfully pushed app buckets to the platform using model 9
07-01 19:25:14.380  1457  1623 I EntropyMixer: Writing entropy...
07-01 19:25:14.381  2552  2552 I GsaVoiceInteractionSrv: O received Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) }
07-01 19:25:14.382   503   557 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
07-01 19:25:14.384  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) } to com.google.android.apps.photos/.scheduler.PowerReceiver
07-01 19:25:14.385  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) } to com.google.android.apps.turbo/.nudges.broadcasts.BatteryStatusChangedReceiver
07-01 19:25:14.385  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) } to com.google.android.gms/.gcm.nts.SchedulerReceiver
07-01 19:25:14.385  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:25:14.385  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
07-01 19:25:14.385  1457  1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 (has extras) } to cn.xender/.SearchTableReceiver
07-01 19:25:14.438  1457  1590 E BatteryExternalStatsWorker: no controller energy info supplied for bluetooth
07-01 19:25:14.442  2768  4947 I SystemUpdate: [Installation,ReceiverIntentOperation] Received intent: Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x4000010 cmp=com.google.android.gms/.chimera.GmsIntentOperationService (has extras) }.
07-01 19:25:14.450   490   490 E QCOM PowerHAL: extract_stats: failed to open: /d/system_stats Error = No such file or directory
07-01 19:25:14.454  2768  4946 I SystemUpdate: [Execution,InstallationEventIntentOperation] Handling event of type 9.
07-01 19:25:14.460  2768  4947 I SystemUpdate: [Execution,InstallationIntentOperation] Received intent: Intent { act=com.google.android.gms.update.INSTALL_UPDATE cat=[targeted_intent_op_prefix:.update.execution.InstallationIntentOperation] cmp=com.google.android.gms/.chimera.GmsIntentOperationService }.
07-01 19:25:14.461  2768  4947 I SystemUpdate: [Execution,ExecutionManager] Action finished-execution executed for 0.00 seconds.
07-01 19:25:14.755  1457  1622 D UsbDeviceManager: push notification:Charging this device via USB
07-01 19:25:15.027   564   564 I adbd    : Calling send_auth_request...
07-01 19:25:15.039   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:25:15.042   564   564 I adbd    : adb client authorized
07-01 19:25:15.592   564   564 I adbd    : Calling send_auth_request...
07-01 19:25:15.597   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:25:15.600   564   564 I adbd    : adb client authorized
07-01 19:25:16.915   564   564 I adbd    : Calling send_auth_request...
07-01 19:25:16.921   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:25:16.924   564   564 I adbd    : adb client authorized
07-01 19:25:17.103  2210  2210 D QtiCarrierConfigHelper: WARNING, no carrier configs on phone Id: 0
07-01 19:25:19.552   564   564 I adbd    : Calling send_auth_request...
07-01 19:25:19.561   564   564 I adbd    : Loading keys from /data/misc/adb/adb_keys
07-01 19:25:19.564   564   564 I adbd    : adb client authorized
`



**This is the status of the debug console**


`D/TSLocationManager( 4724): [c.t.f.b.streams.StreamHandler onListen] location
E/TSLocationManager( 4724): [c.t.locationmanager.b.a a] 
E/TSLocationManager( 4724):   ‼️  LICENSE VALIDATION FAILURE - com.transistorsoft.firebaseproxy.license: 
E/TSLocationManager( 4724): Failed to find license key in AndroidManifest.  Ensure you've added the key within <application><meta-data android:name="com.transistorsoft.firebaseproxy.license" android:value="<YOUR LICENSE KEY>" />
D/TSLocationManager( 4724): [c.t.l.adapter.TSConfig c] ℹ️   Persist config, dirty: [debug, distanceFilter, headlessJobService, logLevel, startOnBoot, stopOnTerminate, stopTimeout]
D/TSLocationManager( 4724): [c.t.l.a.BackgroundGeolocation ready] LocationPermission :false
I/Choreographer( 4724): Skipped 84 frames!  The application may be doing too much work on its main thread.
D/vndksupport( 4724): Loading /vendor/lib64/hw/[email protected] from current namespace instead of sphal namespace.
D/vndksupport( 4724): Loading /vendor/lib64/hw/gralloc.msm8953.so from current namespace instead of sphal namespace.
I/OpenGLRenderer( 4724): Davey! duration=1426ms; Flags=1, IntendedVsync=74244998184, Vsync=75644998128, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=75648321961, AnimationStart=75648424669, PerformTraversalsStart=75648508002, DrawStart=75657879566, SyncQueued=75660588056, SyncStart=75660817326, IssueDrawCommandsStart=75661091545, SwapBuffers=75669608734, FrameCompleted=75672108005, DequeueBufferDuration=900000, QueueBufferDuration=661000, 
Syncing files to device Mi A1...
I/TSLocationManager( 4724): [c.t.locationmanager.util.b a] 
I/TSLocationManager( 4724):   🔵  LocationAuthorization: Requesting permission
D/AndroidRuntime( 4724): Shutting down VM
E/AndroidRuntime( 4724): FATAL EXCEPTION: main
E/AndroidRuntime( 4724): Process: com.example.whatsupfirebase, PID: 4724
E/AndroidRuntime( 4724): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
E/AndroidRuntime( 4724): 	at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2012)
E/AndroidRuntime( 4724): 	at android.app.Instrumentation.execStartActivity(Instrumentation.java:1675)
E/AndroidRuntime( 4724): 	at android.app.ContextImpl.startActivity(ContextImpl.java:917)
E/AndroidRuntime( 4724): 	at android.app.ContextImpl.startActivity(ContextImpl.java:888)
E/AndroidRuntime( 4724): 	at android.content.ContextWrapper.startActivity(ContextWrapper.java:379)
E/AndroidRuntime( 4724): 	at com.intentfilter.androidpermissions.PermissionManager.startPermissionActivity(PermissionManager.java:63)
E/AndroidRuntime( 4724): 	at com.intentfilter.androidpermissions.PermissionHandler.requestPermissions(PermissionHandler.java:70)
E/AndroidRuntime( 4724): 	at com.intentfilter.androidpermissions.PermissionHandler.checkPermissions(PermissionHandler.java:47)
E/AndroidRuntime( 4724): 	at com.intentfilter.androidpermissions.PermissionManager.checkPermissions(PermissionManager.java:50)
E/AndroidRuntime( 4724): 	at com.transistorsoft.locationmanager.util.b$2.run(Unknown Source:26)
E/AndroidRuntime( 4724): 	at android.os.Handler.handleCallback(Handler.java:873)
E/AndroidRuntime( 4724): 	at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4724): 	at android.os.Looper.loop(Looper.java:193)
E/AndroidRuntime( 4724): 	at android.app.ActivityThread.main(ActivityThread.java:6718)
E/AndroidRuntime( 4724): 	at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime( 4724): 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495)
E/AndroidRuntime( 4724): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
E/TSLocationManager( 4724): [c.t.l.a.BackgroundGeolocation$e uncaughtException] 
E/TSLocationManager( 4724):   ‼️  Uncaught Exception: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
E/TSLocationManager( 4724): {"activityRecognitionInterval":10000,"allowIdenticalLocations":false,"autoSync":true,"autoSyncThreshold":0,"batchSync":false,"debug":true,"deferTime":0,"desiredAccuracy":0,"desiredOdometerAccuracy":100,"disableElasticity":false,"disableLocationAuthorizationAlert":false,"disableStopDetection":false,"distanceFilter":50,"elasticityMultiplier":1,"enableHeadless":false,"enableTimestampMeta":false,"extras":{},"fastestLocationUpdateInterval":-1,"forceReloadOnBoot":false,"forceReloadOnGeofence":false,"forceReloadOnHeartbeat":false,"forceReloadOnLocationChange":false,"forceReloadOnMotionChange":false,"forceReloadOnSchedule":false,"foregroundService":true,"geofenceInitialTriggerEntry":true,"geofenceModeHighAccuracy":false,"geofenceProximityRadius":1000,"geofenceTemplate":"","headers":{},"headlessJobService":"com.transistorsoft.flutter.backgroundgeolocation.HeadlessTask","heartbeatInterval":-1,"httpRootProperty":"location","httpTimeout":60000,"isMoving":false,"locationTemplate":"","locationTimeout":60,"locationUpdateInterval":1000,"locationsOrderDirection":"ASC","logLevel":5,"logMaxDays":3,"maxBatchSize":-1,"maxDaysToPersist":1,"maxRecordsToPersist":-1,"method":"POST","minimumActivityRecognitionConfidence":75,"notification":{"layout":"","title":"","text":"Location Service activated","color":"","channelName":"TSLocationManager","smallIcon":"","largeIcon":"","priority":0,"strings":{},"actions":[]},"params":{},"persist":true,"persistMode":2,"schedule":[],"scheduleUseAlarmManager":false,"speedJumpFilter":300,"startOnBoot":true,"stationaryRadius":25,"stopAfterElapsedMinutes":0,"stopOnStationary":false,"stopOnTerminate":false,"stopTimeout":1,"triggerActivities":"in_vehicle, on_bicycle, on_foot, running, walking","url":"","useSignificantChangesOnly":false,"enabled":false,"schedulerEnabled":false,"trackingMode":1,"odometer":0,"isFirstBoot":false}
E/TSLocationManager( 4724): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.whatsupfirebase/com.intentfilter.androidpermissions.PermissionsActivity}; have you declared this activity in your AndroidManifest.xml?
E/TSLocationManager( 4724): 	at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2012)
E/TSLocationManager( 4724): 	at android.app.Instrumentation.execStartActivity(Instrumentation.java:1675)
E/TSLocationManager( 4724): 	at android.app.ContextImpl.startActivity(ContextImpl.java:917)
E/TSLocationManager( 4724): 	at android.app.ContextImpl.startActivity(ContextImpl.java:888)
E/TSLocationManager( 4724): 	at android.content.ContextWrapper.startActivity(ContextWrapper.java:379)
E/TSLocationManager( 4724): 	at com.intentfilter.androidpermissions.PermissionManager.startPermissionActivity(PermissionManager.java:63)
E/TSLocationManager( 4724): 	at com.intentfilter.androidpermissions.PermissionHandler.requestPermissions(PermissionHandler.java:70)
E/TSLocationManager( 4724): 	at com.intentfilter.androidpermissions.PermissionHandler.checkPermissions(PermissionHandler.java:47)
E/TSLocationManager( 4724): 	at com.intentfilter.androidpermissions.PermissionManager.checkPermissions(PermissionManager.java:50)
E/TSLocationManager( 4724): 	at com.transistorsoft.locationmanager.util.b$2.run(Unknown Source:26)
E/TSLocationManager( 4724): 	at android.os.Handler.handleCallback(Handler.java:873)
E/TSLocationManager( 4724): 	at android.os.Handler.dispatchMessage(Handler.java:99)
E/TSLocationManager( 4724): 	at android.os.Looper.loop(Looper.java:193)
E/TSLocationManager( 4724): 	at android.app.ActivityThread.main(ActivityThread.java:6718)
E/TSLocationManager( 4724): 	at java.lang.reflect.Method.invoke(Native Method)
E/TSLocationManager( 4724): 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495)
E/TSLocationManager( 4724): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
I/Process ( 4724): Sending signal. PID: 4724 SIG: 9

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions