invertase / react-native-firebase

🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
https://rnfirebase.io
Other
11.63k stars 2.2k forks source link

[🔥][🐛] Appcheck unable to activate sometimes on Android #6760

Closed jslok closed 1 year ago

jslok commented 1 year ago

Issue

I have been using appcheck for a few weeks without any issue but just the past few days it seems appcheck on android is unable to activate sometimes for unknown reason. Eventually after restarting the app several times, appcheck will successfully activate and get a token.


Project Files

Javascript

Using this code to activate appcheck:

  //Activate app check on android
  useEffect(() => {
    if (Platform.OS === 'ios') return
    const activateAppCheck = async () => {
      await appCheck().activate('ignoredParam', true)
      const { token } = await appCheck().getToken()
      if (token) setAppCheckActivated(true)
      else throw new Error('Appcheck failed')
    }

    activateAppCheck().catch((e) => {
      console.log(e)
      Toast.show('Appcheck failed. Retry or please contact admin if it persists')
    })
  }, [])

package.json:

# N/A

firebase.json for react-native-firebase v6:

    "database_persistence_enabled": false,
    "android_task_executor_maximum_pool_size": 10,
    "android_task_executor_keep_alive_seconds": 3,
    "crashlytics_auto_collection_enabled": true,
    "crashlytics_ndk_enabled": true,
    "crashlytics_is_error_generation_on_js_crash_enabled": true,
    "crashlytics_javascript_exception_handler_chaining_enabled": true

iOS

Click To Expand

#### `ios/Podfile`: - [ ] I'm not using Pods - [x] I'm using Pods and my Podfile looks like: ```ruby # N/A ``` #### `AppDelegate.m`: ```objc // N/A ```


Android

Click To Expand

#### Have you converted to AndroidX? - [ x ] my application is an AndroidX application? - [ x ] I am using `android/gradle.settings` `jetifier=true` for Android compatibility? - [ x ] I am using the NPM package `jetifier` for react-native compatibility? #### `android/build.gradle`: ```groovy // N/A ``` #### `android/app/build.gradle`: ```groovy // N/A ``` #### `android/settings.gradle`: ```groovy // N/A ``` #### `MainApplication.java`: ```java // N/A ``` #### `AndroidManifest.xml`: ```xml ```


Environment

Click To Expand

**`react-native info` output:** ``` System: OS: Windows 10 10.0.22621 CPU: (12) x64 AMD Ryzen 5 5600X 6-Core Processor Memory: 17.28 GB / 31.93 GB Binaries: Node: 16.16.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.17 - ~\AppData\Roaming\npm\yarn.CMD npm: 9.1.3 - C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: API Levels: 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 Build Tools: 30.0.2, 30.0.3, 31.0.0, 32.0.0, 33.0.0 System Images: android-24 | Google Play Intel x86 Atom, android-30 | Google APIs Intel x86 Atom, android-30 | Google Play Intel x86 Atom, android-31 | Google APIs Intel x86 Atom_64, android-33 | Google APIs Intel x86 Atom_64 Android NDK: 22.1.7171670 Windows SDK: Not Found IDEs: Android Studio: AI-212.5712.43.2112.8609683 Visual Studio: 17.2.32630.192 (Visual Studio Community 2022), 15.9.28307.1831 (Visual Studio Community 2017) Languages: Java: 16.0.2 npmPackages: @react-native-community/cli: Not Found react: ^18.2.0 => 18.2.0 react-native: ^0.70.4 => 0.70.6 react-native-windows: Not Found npmGlobalPackages: *react-native*: Not Found ``` - **Platform that you're experiencing the issue on**: - [ ] iOS - [ x ] Android - [ ] **iOS** but have not tested behavior on Android - [ ] **Android** but have not tested behavior on iOS - [ ] Both - **`react-native-firebase` version you're using that has this issue:** - 16.4.6 - **`Firebase` module(s) you're using that has the issue:** - @react-native-firebase/app-check - **Are you using `TypeScript`?** - N


mikehardy commented 1 year ago

I have been using appcheck for a few weeks without any issue

Great! So the module is working

the past few days it seems appcheck on android is unable to activate sometimes for unknown reason

You've not included any information from adb logcat or any indication of error messages or versions or anything that would help (https://stackoverflow.com/help/how-to-ask) so the reason is unknown and unknowable based on information provided

Given no actionable information that would allow reproduction, this is not actionable

jslok commented 1 year ago

I am using RN 0.70.6 but not new architecture and RNFB-appcheck 16.4.6. buildToolsVersion = "33.0.0" minSdkVersion = 23 compileSdkVersion = 33 targetSdkVersion = 33 googlePlayServicesAuthVersion = "19.2.0" ndkVersion = "23.2.8568313" com.google.gms:google-services:4.3.14

Logcat output at a time that I got the error on my own device. It seems difficult to reproduce and just happens randomly when a token must be generated. Once a token is successfully received, it will work for least that hour until it needs to refresh the token which may or may not work smoothly again.

12-04 22:15:33.020  1120  1120 I WifiHAL : In GetLinkStatsCommand::handleResponse
12-04 22:15:33.089  1710  1965 D ConnectivityService: NetReassign [no changes] [c 4] [a 4] [i 12]
12-04 22:15:33.391  2495 30545 I TcpProberController: [TcpProberDeviceController-1] Failed to connect to /192.168.4.49:8009
12-04 22:15:33.406  2495 30545 I CastSocketMultiplexer: Stopping multiplexer...
12-04 22:15:33.842 29338 29437 E com.newrelic.android: TransactionStateUtil: Attempting to convert network exception java.net.UnknownHostException to error code.
12-04 22:15:33.852 29338 29435 E [Embrace: Failed to load SDK config from the server. Trying again in 128.0 seconds.
12-04 22:15:36.076  1120  1120 I WifiHAL : Creating message to get link statistics; iface = 47
12-04 22:15:36.155  1120  1120 I WifiHAL : In GetLinkStatsCommand::handleResponse
12-04 22:15:36.203   524   559 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(36) test(0)
12-04 22:15:36.205  1710  1965 D ConnectivityService: NetReassign [no changes] [c 1] [a 1] [i 3]
12-04 22:15:36.223  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 161252188; UID 10582; state: ENABLED
12-04 22:15:36.224  1710  8086 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.squadcollector/.MainActivity bnds=[643,318][851,633]} from uid 10210
12-04 22:15:36.225  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 194480991; UID 10582; state: ENABLED
12-04 22:15:36.228  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 174042980; UID 10582; state: DISABLED
12-04 22:15:36.228  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 184838306; UID 10582; state: DISABLED
12-04 22:15:36.228  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 185004937; UID 10582; state: DISABLED
12-04 22:15:36.228  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 181136395; UID 10582; state: DISABLED
12-04 22:15:36.229  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 174042936; UID 10582; state: DISABLED
12-04 22:15:36.230  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 197654537; UID 10582; state: ENABLED
12-04 22:15:36.232  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 205907456; UID 10582; state: ENABLED
12-04 22:15:36.238  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 194833441; UID 10582; state: ENABLED
12-04 22:15:36.239  1710  8086 D CompatibilityChangeReporter: Compat change id reported: 168419799; UID 10582; state: DISABLED
12-04 22:15:36.241  2595  2752 D QuickstepModelDelegate: notifyAppTargetEvent action=1 launchLocation=predictions
12-04 22:15:36.241  1710  8086 D CoreBackPreview: Window{7f274bb u0 Splash Screen com.squadcollector}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@4dc7531, mPriority=0}
12-04 22:15:36.253 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/lib/arm64'
12-04 22:15:36.254 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/base.apk!/lib/arm64-v8a'
12-04 22:15:36.254 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a'
12-04 22:15:36.254 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a'
12-04 22:15:36.254 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a'
12-04 22:15:36.254 30597 31155 D vulkan  : searching for layers in '/data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a'
12-04 22:15:36.267 30597 30597 D OrientationModule: onActivityCreated
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/lib/arm64
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/base.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 31166 V SoLoader: libfbjni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.276 30597 30597 D OrientationModule: onActivityStarted
12-04 22:15:36.277 30597 31166 D SoLoader: libfbjni.so found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.277 30597 30597 D OrientationModule: onActivityResumed
12-04 22:15:36.279 30597 31174 I FA      : Tag Manager is not found and thus will not be used
12-04 22:15:36.285 30597 31166 W System.err: RNInstallReferrerClient exception. getInstallReferrer will be unavailable: c2.a.newBuilder [class android.content.Context]
12-04 22:15:36.285 30597 31166 W System.err: java.lang.NoSuchMethodException: c2.a.newBuilder [class android.content.Context]
12-04 22:15:36.285 30597 31166 W System.err:    at java.lang.Class.getMethod(Class.java:2103)
12-04 22:15:36.285 30597 31166 W System.err:    at java.lang.Class.getMethod(Class.java:1724)
12-04 22:15:36.285 30597 31166 W System.err:    at com.learnium.RNDeviceInfo.c.<init>(RNInstallReferrerClient.java:4)
12-04 22:15:36.285 30597 31166 W System.err:    at com.learnium.RNDeviceInfo.RNDeviceModule.<init>(RNDeviceModule.java:7)
12-04 22:15:36.285 30597 31166 W System.err:    at com.learnium.RNDeviceInfo.b.createNativeModules(RNDeviceInfo.java:2)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.v.a(ReactPackageHelper.java:7)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.g.b(NativeModuleRegistryBuilder.java:8)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.q.X(ReactInstanceManager.java:6)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.q.Y(ReactInstanceManager.java:8)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.q.u(ReactInstanceManager.java:6)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.q.d(Unknown Source:0)
12-04 22:15:36.285 30597 31166 W System.err:    at com.facebook.react.q$e.run(ReactInstanceManager.java:12)
12-04 22:15:36.285 30597 31166 W System.err:    at java.lang.Thread.run(Thread.java:1012)
12-04 22:15:36.288  1710  1840 D CoreBackPreview: Window{3fcacfa u0 com.squadcollector/com.squadcollector.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@c16d08, mPriority=0}
12-04 22:15:36.292  1093  1093 D usf_sensor_hal: accelerometer: Enter Batch. period = 66667000, latency = 0.
12-04 22:15:36.295 19154 19154 D BoundBrokerSvc: onBind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
12-04 22:15:36.295 19154 19154 D BoundBrokerSvc: Loading bound service for intent: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
12-04 22:15:36.296  1266  1266 D AOC     : A3:MSG: usf_sensor.cc, 1860: USF: Received reconfig sampling request for LSM6DSV Accelerometer.
12-04 22:15:36.296   458   458 I hwservicemanager: getTransport: Cannot find entry android.hardware.graphics.allocator@4.0::IAllocator/default in either framework or device VINTF manifest.
12-04 22:15:36.297   457   457 I servicemanager: Found android.hardware.graphics.allocator.IAllocator/default in device VINTF manifest.
12-04 22:15:36.297  1266  1266 D AOC     : A3:MSG: lsm6dsv_device.cc, 743: USF: Lsm6dsvDevice: Sensor 0: Enabled 1, odr_index 5, period_ns 20000000.
12-04 22:15:36.297  1266  1266 D AOC     : A3:MSG: lsm6dsv_fifo.cc, 767: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 2 Intr: 60.
12-04 22:15:36.298  1266  1266 D AOC     : A3:MSG: lsm6dsv_device.cc, 652: USF: Lsm6dsvDevice: Fifo was disabled for 533447ns.
12-04 22:15:36.299  1093  1093 D usf_sensor_hal: IMU temperature: Enter Batch. period = 533334000, latency = 0.
12-04 22:15:36.303  1266  1266 D AOC     : A3:MSG: usf_sensor.cc, 1860: USF: Received reconfig sampling request for LSM6DSV Temperature.
12-04 22:15:36.303  1266  1266 D AOC     : A3:MSG: lsm6dsv_device.cc, 743: USF: Lsm6dsvDevice: Sensor 2: Enabled 1, odr_index 3, period_ns 66666666.
12-04 22:15:36.303  1266  1266 D AOC     : A3:MSG: lsm6dsv_fifo.cc, 767: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 2 Intr: 60.
12-04 22:15:36.304  1266  1266 D AOC     : A3:MSG: lsm6dsv_device.cc, 652: USF: Lsm6dsvDevice: Fifo was disabled for 366700ns.
12-04 22:15:36.305  1093  1093 D usf_sensor_hal: accelerometer: Enter Flush
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/lib/arm64
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/base.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.308 30597 31166 V SoLoader: libreactnativejni.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.309 30597 31166 D SoLoader: libreactnativejni.so found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.312 30597 31166 W unknown:ReactContext: initializeMessageQueueThreads() is called.
12-04 22:15:36.342  2495 31188 W NetworkScheduler: Error inserting flex_time=1191000 job_id=-1 period=2384000 source=16 requires_charging=0 preferred_network_type=1 target_class=com.google.android.gms.measurement.PackageMeasurementTaskService user_id=0 target_package=com.google.android.gms tag=Measurement.PackageMeasurementTaskService.UPLOAD_TASK_TAG task_type=0 required_idleness_state=0 service_kind=0 source_version=224417000 persistence_level=1 preferred_charging_state=1 required_network_type=0 runtime=1670220936341 retry_strategy={"maximum_backoff_seconds":{"3600":0},"initial_backoff_seconds":{"30":0},"retry_policy":{"0":0}} last_runtime=0 [CONTEXT service_id=218 ]
12-04 22:15:36.342  2495 31188 W NetworkScheduler: android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: pending_ops.tag, pending_ops.target_class, pending_ops.target_package, pending_ops.user_id (code 2067 SQLITE_CONSTRAINT_UNIQUE)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:961)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:790)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:89)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1868)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at android.database.sqlite.SQLiteDatabase.insertOrThrow(SQLiteDatabase.java:1763)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at brue.g(:com.google.android.gms@224417044@22.44.17 (190400-488410709):53)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at brsx.n(:com.google.android.gms@224417044@22.44.17 (190400-488410709):3)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at brsx.u(:com.google.android.gms@224417044@22.44.17 (190400-488410709):20)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at brsx.h(:com.google.android.gms@224417044@22.44.17 (190400-488410709):3)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at broo.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):9)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at aabe.c(:com.google.android.gms@224417044@22.44.17 (190400-488410709):6)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at aabe.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):7)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at aagj.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):0)
12-04 22:15:36.342  2495 31188 W NetworkScheduler:      at java.lang.Thread.run(Thread.java:1012)
12-04 22:15:36.344  3770  3770 I GsaVoiceInteractionSrv: Handling ACTION_STOP_HOTWORD
12-04 22:15:36.347 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager
12-04 22:15:36.347 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.j
12-04 22:15:36.348 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager
12-04 22:15:36.348 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager
12-04 22:15:36.348 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager
12-04 22:15:36.348 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.b
12-04 22:15:36.349 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager
12-04 22:15:36.349 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager
12-04 22:15:36.349 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$b
12-04 22:15:36.349 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$b
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class k6.a
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager
12-04 22:15:36.350 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.b
12-04 22:15:36.351 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager
12-04 22:15:36.351 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.l
12-04 22:15:36.351 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager
12-04 22:15:36.351 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.m
12-04 22:15:36.351 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager
12-04 22:15:36.352 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.q
12-04 22:15:36.352 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager
12-04 22:15:36.353 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager
12-04 22:15:36.353 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.w
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class org.reactnative.maskedview.RNCMaskedViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativegooglesignin.RNGoogleSigninButtonViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.dylanvann.fastimage.FastImageViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativepagerview.PagerViewViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.oblador.pinchable.PinchableViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager
12-04 22:15:36.354 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.p
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager
12-04 22:15:36.355 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.SearchBarManager
12-04 22:15:36.356 30597 31186 W unknown:ReactContext: initializeMessageQueueThreads() is called.
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/lib/arm64
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/base.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.356 30597 31186 V SoLoader: libyoga.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.357 30597 31186 D SoLoader: libyoga.so found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.365  1710  3824 D ConnectivityService: requestNetwork for uid/pid:10582/30597 activeRequest: null callbackRequest: 4584 [NetworkRequest [ REQUEST id=4585, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
12-04 22:15:36.365 30597 31186 D Auth    : instance-initialized
12-04 22:15:36.366  1710  1957 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=4585, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.367  1710  1957 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4585, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.367  1710  1957 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4585, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.367  1710  1957 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4585, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.367  1710  1965 D ConnectivityService: NetReassign [4585 : null → 106] [c 1] [a 0] [i 1]
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isCrashlyticsCollectionEnabled via RNFBMeta: true
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isCrashlyticsCollectionEnabled final value: true
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isErrorGenerationOnJSCrashEnabled via RNFBMeta: true
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isErrorGenerationOnJSCrashEnabled final value: true
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isCrashlyticsJavascriptExceptionHandlerChainingEnabled via RNFBMeta: true
12-04 22:15:36.368 30597 31185 D RNFBCrashlyticsInit: isCrashlyticsJavascriptExceptionHandlerChainingEnabled final value: true
12-04 22:15:36.597   524   559 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(35) test(0)
12-04 22:15:36.603  1710  1779 I DisplayDeviceRepository: Display device changed: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:4619827677550801152", 1080 x 2400, modeId 1, defaultModeId 1, supportedModes [{id=1, width=1080, height=2400, fps=60.0, alternativeRefreshRates=[90.0]}, {id=2, width=1080, height=2400, fps=90.0, alternativeRefreshRates=[60.0]}], colorMode 0, supportedColorModes [0, 7, 9], hdrCapabilities HdrCapabilities{mSupportedHdrTypes=[2, 3, 4], mMaxLuminance=1000.0, mMaxAverageLuminance=120.0, mMinLuminance=5.0E-4}, allmSupported false, gameContentTypeSupported false, density 420, 415.636 x 417.534 dpi, appVsyncOff 6233334, presDeadline 11500000, cutout DisplayCutout{insets=Rect(0, 118 - 0, 0) waterfall=Insets{left=0, top=0, right=0, bottom=0} boundingRect={Bounds=[Rect(0, 0 - 0, 0), Rect(480, 0 - 625, 118), Rect(0, 0 - 0, 0), Rect(0, 0 - 0, 0)]} cutoutPathParserInfo={CutoutPathParserInfo{displayWidth=1080 displayHeight=2400 physicalDisplayWidth=1080 physicalDisplayHeight=2400 density={2.625} cutoutSpec={M 506,68 a 34,34 0 1 0 68,0 34,34 0 1 0 -68,0 Z @left} rotation={0} scale={1.0} physicalPixelDisplaySizeRatio={1.0}}}}, touch INTERNAL, rotation 0, type INTERNAL, address {port=0, model=0x401ceccbbbeef1}, deviceProductInfo DeviceProductInfo{name=Common Panel, manufacturerPnpId=GGL, productId=0, modelYear=null, manufactureDate=ManufactureDate{week=1, year=1990}, connectionToSinkType=0}, state ON, frameRateOverride , brightnessMinimum 0.0, brightnessMaximum 1.0, brightnessDefault 0.17429718, roundedCorners RoundedCorners{[RoundedCorner{position=TopLeft, radius=47, center=Point(47, 47)}, RoundedCorner{position=TopRight, radius=47, center=Point(1033, 47)}, RoundedCorner{position=BottomRight, radius=48, center=Point(1032, 2352)}, RoundedCorner{position=BottomLeft, radius=48, center=Point(48, 2352)}]}, FLAG_ALLOWED_TO_BE_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS, installOrientation 0}
12-04 22:15:36.621 30597 31186 D Auth    : addAuthStateListener
12-04 22:15:36.621 30597 31186 D Auth    : addIdTokenListener
12-04 22:15:36.622 30597 31196 W DynamiteModule: Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
12-04 22:15:36.624   524   559 I display : [PrimaryDisplay] setActiveConfigWithConstraints, previous request config is processing (mDesiredConfig: 35)
12-04 22:15:36.624   524  2787 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(36) test(0)
12-04 22:15:36.625  1710  3824 D ConnectivityService: requestNetwork for uid/pid:10582/30597 activeRequest: null callbackRequest: 4586 [NetworkRequest [ REQUEST id=4587, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
12-04 22:15:36.625 30597 31186 D RNFBCrashlyticsInit: isCrashlyticsCollectionEnabled via RNFBMeta: true
12-04 22:15:36.626 30597 31186 D RNFBCrashlyticsInit: isCrashlyticsCollectionEnabled final value: true
12-04 22:15:36.626  2495  5096 W ProviderHelper: Unknown dynamite feature providerinstaller.dynamite
12-04 22:15:36.629 30597 31196 I DynamiteModule: Considering local module com.google.android.gms.providerinstaller.dynamite:0 and remote module com.google.android.gms.providerinstaller.dynamite:0
12-04 22:15:36.629 30597 31196 W ProviderInstaller: Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
12-04 22:15:36.631 30597 30597 D Auth    : addAuthStateListener:eventBody { NativeMap: {"user":{"multiFactor":{"enrolledFactors":[]},"metadata":{"lastSignInTime":1670197312765,"creationTime":1650947086775},"photoURL":"https://lh3.googleusercontent.com/a/ALm5wu0YYzmEBbQ4WIh2KZCbiJPt9ae9Bh1bEf5lCH3HHQ=s96-c","phoneNumber":null,"tenantId":null,"displayName":"Justin Lok","emailVerified":true,"isAnonymous":false,"uid":"oxI6Xr4Pl3RCaldsxjJYBIJS6FQ2","email":"jslok930@gmail.com","providerData":[{"email":"jslok930@gmail.com","providerId":"google.com","photoURL":"https://lh3.googleusercontent.com/a/ALm5wu0YYzmEBbQ4WIh2KZCbiJPt9ae9Bh1bEf5lCH3HHQ=s96-c","phoneNumber":null,"displayName":"Justin Lok","uid":"115542587721204455986"},{"email":"jslok930@gmail.com","providerId":"password","photoURL":"https://lh3.googleusercontent.com/a/ALm5wu0YYzmEBbQ4WIh2KZCbiJPt9ae9Bh1bEf5lCH3HHQ=s96-c","phoneNumber":null,"displayName":"Justin Lok","uid":"jslok930@gmail.com"}],"providerId":"firebase"},"appName":"[DEFAULT]"} }
12-04 22:15:36.632  1710  1957 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=4587, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.632  1710  1957 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4587, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.634  1710  1957 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4587, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.635  1710  1779 I DisplayDeviceRepository: Display device changed: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:4619827677550801152", 1080 x 2400, modeId 2, defaultModeId 1, supportedModes [{id=1, width=1080, height=2400, fps=60.0, alternativeRefreshRates=[90.0]}, {id=2, width=1080, height=2400, fps=90.0, alternativeRefreshRates=[60.0]}], colorMode 0, supportedColorModes [0, 7, 9], hdrCapabilities HdrCapabilities{mSupportedHdrTypes=[2, 3, 4], mMaxLuminance=1000.0, mMaxAverageLuminance=120.0, mMinLuminance=5.0E-4}, allmSupported false, gameContentTypeSupported false, density 420, 415.636 x 417.534 dpi, appVsyncOff 6233333, presDeadline 11500000, cutout DisplayCutout{insets=Rect(0, 118 - 0, 0) waterfall=Insets{left=0, top=0, right=0, bottom=0} boundingRect={Bounds=[Rect(0, 0 - 0, 0), Rect(480, 0 - 625, 118), Rect(0, 0 - 0, 0), Rect(0, 0 - 0, 0)]} cutoutPathParserInfo={CutoutPathParserInfo{displayWidth=1080 displayHeight=2400 physicalDisplayWidth=1080 physicalDisplayHeight=2400 density={2.625} cutoutSpec={M 506,68 a 34,34 0 1 0 68,0 34,34 0 1 0 -68,0 Z @left} rotation={0} scale={1.0} physicalPixelDisplaySizeRatio={1.0}}}}, touch INTERNAL, rotation 0, type INTERNAL, address {port=0, model=0x401ceccbbbeef1}, deviceProductInfo DeviceProductInfo{name=Common Panel, manufacturerPnpId=GGL, productId=0, modelYear=null, manufactureDate=ManufactureDate{week=1, year=1990}, connectionToSinkType=0}, state ON, frameRateOverride , brightnessMinimum 0.0, brightnessMaximum 1.0, brightnessDefault 0.17429718, roundedCorners RoundedCorners{[RoundedCorner{position=TopLeft, radius=47, center=Point(47, 47)}, RoundedCorner{position=TopRight, radius=47, center=Point(1033, 47)}, RoundedCorner{position=BottomRight, radius=48, center=Point(1032, 2352)}, RoundedCorner{position=BottomLeft, radius=48, center=Point(48, 2352)}]}, FLAG_ALLOWED_TO_BE_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS, installOrientation 0}
12-04 22:15:36.637  1710  1957 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4587, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.638  1710  1965 D ConnectivityService: NetReassign [4587 : null → 106] [c 1] [a 2] [i 10]
12-04 22:15:36.642 30597 31196 D nativeloader: Configuring classloader-namespace for system apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/lib/arm64:/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/base.apk!/lib/arm64-v8a:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms:/system/lib64:/system_ext/lib64
12-04 22:15:36.648 30597 31196 D nativeloader: Configuring classloader-namespace for system apk /system/framework/com.android.media.remotedisplay.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/lib/arm64:/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/base.apk!/lib/arm64-v8a:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms:/system/lib64:/system_ext/lib64
12-04 22:15:36.651 30597 31196 D nativeloader: Configuring classloader-namespace for system apk /system/framework/com.android.location.provider.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/lib/arm64:/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/base.apk!/lib/arm64-v8a:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms:/system/lib64:/system_ext/lib64
12-04 22:15:36.658 30597 31196 D nativeloader: Configuring classloader-namespace for other apk /data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/base.apk. target_sdk_version=33, uses_libraries=, library_path=/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/lib/arm64:/data/app/~~NmS5JpPlyAa9owCj2i8QNg==/com.google.android.gms-G3yRZ5o53Om7TsOe9aLXfw==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
12-04 22:15:36.664 30597 31196 V NativeCrypto: Registering com/google/android/gms/org/conscrypt/NativeCrypto's 295 native methods...
12-04 22:15:36.670 30597 31196 I ProviderInstaller: Installed default security provider GmsCore_OpenSSL
12-04 22:15:36.673 30597 31186 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.b0
12-04 22:15:36.674 30597 30597 D CompatibilityChangeReporter: Compat change id reported: 210923482; UID 10582; state: ENABLED
12-04 22:15:36.675  1710  1840 D ConnectivityService: requestNetwork for uid/pid:10582/30597 activeRequest: null callbackRequest: 4588 [NetworkRequest [ REQUEST id=4589, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
12-04 22:15:36.678 30597 31196 W DynamiteModule: Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
12-04 22:15:36.679  2495  5096 W ProviderHelper: Unknown dynamite feature providerinstaller.dynamite
12-04 22:15:36.681 30597 31196 I DynamiteModule: Considering local module com.google.android.gms.providerinstaller.dynamite:0 and remote module com.google.android.gms.providerinstaller.dynamite:0
12-04 22:15:36.681 30597 31196 W ProviderInstaller: Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
12-04 22:15:36.682  1710  1957 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=4589, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.682  1710  1957 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4589, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.683  1710  1957 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4589, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.683  1710  1957 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=4589, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10582 RequestorUid: 10582 RequestorPkg: com.squadcollector UnderlyingNetworks: Null] ]
12-04 22:15:36.683  1710  1965 D ConnectivityService: NetReassign [4589 : null → 106] [c 1] [a 2] [i 5]
12-04 22:15:36.687 30597 30597 D CompatibilityChangeReporter: Compat change id reported: 171228096; UID 10582; state: ENABLED
12-04 22:15:36.688 19392 19434 D TrafficStats: tagSocket(101) with statsTag=0x1803, statsUid=10147
12-04 22:15:36.724  1710  1776 I ActivityTaskManager: Displayed com.squadcollector/.MainActivity: +495ms
12-04 22:15:36.724  2595  4065 D OneSearchSuggestProvider: Shut down the binder channel
12-04 22:15:36.726  2595  2754 I s.nexuslauncher: oneway function results for code 2 on binder at 0xb400006e1b0bfdc0 will be dropped but finished with status UNKNOWN_TRANSACTION
12-04 22:15:36.734  3770  4666 I AssistantForeground: (REDACTED) Get launcher package: %s
12-04 22:15:36.734 30597 31220 D TrafficStats: tagSocket(129) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:36.772  1710  1770 D CompatibilityChangeReporter: Compat change id reported: 214016041; UID 10582; state: ENABLED
12-04 22:15:36.776  3661  3661 I GoogleInputMethodService: GoogleInputMethodService.onFinishInput():3220
12-04 22:15:36.777  3661  3661 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2085 repeatCheckTimes = 0, unlocked = true
12-04 22:15:36.777  3661  3661 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1876 onStartInput(EditorInfo{inputType=0x0(NULL) imeOptions=0x0 privateImeOptions=null actionName=UNSPECIFIED actionLabel=null actionId=0 initialSelStart=-1 initialSelEnd=-1 initialCapsMode=0x0 hintText=null label=null packageName=com.squadcollector fieldId=-1 fieldName=null extras=null}, false)
12-04 22:15:36.778  3661  3661 I GoogleInputMethodService: GoogleInputMethodService.shouldHideHeaderOnInitialState():3985 ShouldHideHeaderOnInitialState = false
12-04 22:15:36.778  3661  3661 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2085 repeatCheckTimes = 2, unlocked = true
12-04 22:15:36.790  2495  4235 I FontLog : Received query Noto Color Emoji Compat, URI content://com.google.android.gms.fonts [CONTEXT service_id=132 ]
12-04 22:15:36.790  2495  4235 I FontLog : Query [emojicompat-emoji-font] resolved to {Noto Color Emoji Compat, wdth 100.0, wght 400, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
12-04 22:15:36.791  2495  4235 I FontLog : Fetch {Noto Color Emoji Compat, wdth 100.0, wght 400, ital 0.0, bestEffort false} end status Status{statusCode=SUCCESS, resolution=null} [CONTEXT service_id=132 ]
12-04 22:15:36.792  2495  4235 I FontLog : Pulling font file for id = 533, cache size = 9 [CONTEXT service_id=132 ]
12-04 22:15:36.794  2495  4235 I FontLog : Pulling font file for id = 533, cache size = 9 [CONTEXT service_id=132 ]
12-04 22:15:36.797  2099  2099 D DLObserver: onReceive(); android.intent.action.BATTERY_CHANGED
12-04 22:15:36.797  2099  2099 D DLObserver: plugged=1
12-04 22:15:36.800  2099  2099 I ReverseChargingControl: handleIntentForReverseCharging(): rtx=0 wlc=0 plgac=1 ac=1 acrtx=0 extra=1 this=com.google.android.systemui.reversecharging.ReverseChargingController@9115432
12-04 22:15:36.800  2099  2099 D PowerNotificationWarningsGoogleImpl: onReceive: android.intent.action.BATTERY_CHANGED
12-04 22:15:36.800  2099  2668 D PowerUI : can't show warning due to - plugged: true status unknown: false
12-04 22:15:36.803  2099  2099 D BatteryInfoBroadcast: onReceive: android.intent.action.BATTERY_CHANGED isPowerSaveMode: false
12-04 22:15:36.803  2099  2099 D BatteryDefenderNotification: isPlugged: true | isOverheated: false | defenderEnabled: false | isCharged: false
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/lib/arm64
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/base.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.xxhdpi.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.es.apk!/lib/arm64-v8a
12-04 22:15:36.816 30597 31185 V SoLoader: libreactnativeblob.so not found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.en.apk!/lib/arm64-v8a
12-04 22:15:36.818 30597 31185 D SoLoader: libreactnativeblob.so found on /data/app/~~uZ2_NZex8iiG3fKhnDohIw==/com.squadcollector-tONWmtIjGNbteMhdv5blGA==/split_config.arm64_v8a.apk!/lib/arm64-v8a
12-04 22:15:36.824  1710  3242 D CoreBackPreview: Window{7f274bb u0 Splash Screen com.squadcollector}: Setting back callback null
12-04 22:15:36.824  2099  2099 D DLObserver: onReceive(); android.intent.action.BATTERY_CHANGED
12-04 22:15:36.824  2099  2099 D DLObserver: plugged=1
12-04 22:15:36.824  1710  1771 W InputManager-JNI: Input channel object '7f274bb Splash Screen com.squadcollector (client)' was disposed without first being removed with the input manager!
12-04 22:15:36.825  2099  2099 I ReverseChargingControl: handleIntentForReverseCharging(): rtx=0 wlc=0 plgac=1 ac=1 acrtx=0 extra=1 this=com.google.android.systemui.reversecharging.ReverseChargingController@9115432
12-04 22:15:36.825  2099  2099 D PowerNotificationWarningsGoogleImpl: onReceive: android.intent.action.BATTERY_CHANGED
12-04 22:15:36.825  2099  5822 D PowerUI : can't show warning due to - plugged: true status unknown: false
12-04 22:15:36.827  2099  2099 D BatteryInfoBroadcast: onReceive: android.intent.action.BATTERY_CHANGED isPowerSaveMode: false
12-04 22:15:36.827  2099  2099 D BatteryDefenderNotification: isPlugged: true | isOverheated: false | defenderEnabled: false | isCharged: false
12-04 22:15:36.846 30597 31226 W ziparchive: Unable to open '/data/app/~~tlYeWtv_QRVUqfR7kZUxlw==/com.google.android.trichromelibrary_530414134-3c_CIYC_nLhpPeQ13tDgFg==/base.dm': No such file or directory
12-04 22:15:36.846 30597 31226 W ziparchive: Unable to open '/data/app/~~tlYeWtv_QRVUqfR7kZUxlw==/com.google.android.trichromelibrary_530414134-3c_CIYC_nLhpPeQ13tDgFg==/base.dm': No such file or directory
12-04 22:15:36.847 30597 31226 W .squadcollector: Entry not found
12-04 22:15:36.848 30597 31226 D nativeloader: Configuring classloader-namespace for other apk /data/app/~~tlYeWtv_QRVUqfR7kZUxlw==/com.google.android.trichromelibrary_530414134-3c_CIYC_nLhpPeQ13tDgFg==/base.apk. target_sdk_version=33, uses_libraries=ALL, library_path=/data/app/~~iZqNCzSQ2k7zvYeJgkmT1w==/com.google.android.webview-PeH6JLVxzxp1s4dPLDStEQ==/lib/arm64:/data/app/~~iZqNCzSQ2k7zvYeJgkmT1w==/com.google.android.webview-PeH6JLVxzxp1s4dPLDStEQ==/base.apk!/lib/arm64-v8a:/data/app/~~tlYeWtv_QRVUqfR7kZUxlw==/com.google.android.trichromelibrary_530414134-3c_CIYC_nLhpPeQ13tDgFg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand
12-04 22:15:36.864 30597 31226 D nativeloader: Configuring classloader-namespace for other apk /data/app/~~iZqNCzSQ2k7zvYeJgkmT1w==/com.google.android.webview-PeH6JLVxzxp1s4dPLDStEQ==/base.apk. target_sdk_version=33, uses_libraries=, library_path=/data/app/~~iZqNCzSQ2k7zvYeJgkmT1w==/com.google.android.webview-PeH6JLVxzxp1s4dPLDStEQ==/lib/arm64:/data/app/~~iZqNCzSQ2k7zvYeJgkmT1w==/com.google.android.webview-PeH6JLVxzxp1s4dPLDStEQ==/base.apk!/lib/arm64-v8a:/data/app/~~tlYeWtv_QRVUqfR7kZUxlw==/com.google.android.trichromelibrary_530414134-3c_CIYC_nLhpPeQ13tDgFg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand
12-04 22:15:36.870 30597 31226 I WebViewFactory: Loading com.google.android.webview version 107.0.5304.141 (code 530414134)
12-04 22:15:36.882 30597 30612 W System  : A resource failed to call release.
12-04 22:15:36.916 30597 31226 I cr_WVCFactoryProvider: Loaded version=107.0.5304.141 minSdkVersion=29 isBundle=true multiprocess=true packageId=2
12-04 22:15:36.926 30597 31226 I cr_LibraryLoader: Successfully loaded native library
12-04 22:15:36.926 30597 31226 I cr_CachingUmaRecorder: Flushed 9 samples from 9 histograms.
12-04 22:15:36.934 30597 31226 D TrafficStats: tagSocket(162) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:37.175 30597 30640 D CompatibilityChangeReporter: Compat change id reported: 194532703; UID 10582; state: ENABLED
12-04 22:15:37.175  1710  1771 D CompatibilityChangeReporter: Compat change id reported: 194532703; UID 10582; state: ENABLED
12-04 22:15:37.393 29338 29631 D TrafficStats: tagSocket(174) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:37.393 29338 29631 E SplitSDK: Error while executing my segments sync task: Network error while retrieving my segments: Error while fetching data from source https://sdk.split.io/api/mySegments/e7da8297-56ce-4ad7-b872-3a4143810522: Source not reachable
12-04 22:15:37.394 29338 29635 D TrafficStats: tagSocket(174) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:37.394 29338 29635 E SplitSDK: Error while authenticating to SSE server: Unexpected Error while fetching data from source https://auth.split.io/api/auth: Source not reachable
12-04 22:15:37.398 29338 29632 D TrafficStats: tagSocket(174) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:37.398 29338 29632 E SplitSDK: Error while executing splits sync/update task: Newtwork error while fetching splitsError while fetching data from source https://sdk.split.io/api/splitChanges: Source not reachable
12-04 22:15:37.857 19450 19463 I RemoteProvisioningService: Notify key generated ping for secLevel: 1
12-04 22:15:37.861 19450 19463 I RemoteProvisioner: Pool status 25, 22, 0, 25
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: Pool status.
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: Total: 25
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: Attested: 25
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: Unassigned: 22
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: Expiring: 0
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService.KeyPoolStats: Sufficient keys are available, no CSR needed.
12-04 22:15:37.861 19450 19463 I RemoteProvisioningService: No provisioning needed.
12-04 22:15:38.212 19154 21540 D TrafficStats: tagSocket(199) with statsTag=0x1802, statsUid=10582
12-04 22:15:38.362 19154 27784 W AsyncOperation: operation=attest, opStatusCode=7 [CONTEXT service_id=45 ]
12-04 22:15:38.362 19154 27784 W AsyncOperation: OperationException[Status{statusCode=NETWORK_ERROR, resolution=null}]
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at bsgz.c(:com.google.android.gms@224417044@22.44.17 (190400-488410709):2)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at bsgz.f(:com.google.android.gms@224417044@22.44.17 (190400-488410709):163)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at arro.eq(:com.google.android.gms@224417044@22.44.17 (190400-488410709):1)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at arru.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):12)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at cvgw.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):2)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at aabe.c(:com.google.android.gms@224417044@22.44.17 (190400-488410709):6)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at aabe.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):7)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at aagj.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):0)
12-04 22:15:38.362 19154 27784 W AsyncOperation:        at java.lang.Thread.run(Thread.java:1012)
12-04 22:15:38.382 30597 31198 E AppCheck: RNFB: Unknown error while fetching AppCheck token com.google.android.gms.common.api.ApiException: 7:
12-04 22:15:38.394 30597 30597 D CompatibilityChangeReporter: Compat change id reported: 147798919; UID 10582; state: ENABLED
12-04 22:15:38.408  1710  1771 D CoreBackPreview: Window{a8ea1e0 u0 Toast}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@57d3b5e, mPriority=0}
12-04 22:15:39.192  1120  1120 I WifiHAL : Creating message to get link statistics; iface = 47
12-04 22:15:39.239  1120  1120 I WifiHAL : In GetLinkStatsCommand::handleResponse
12-04 22:15:39.264  1710  1965 D ConnectivityService: NetReassign [no changes] [c 0] [a 0] [i 1]
12-04 22:15:39.470 19450 19463 I RemoteProvisioningService: Notify key generated ping for secLevel: 1
12-04 22:15:39.484 19450 19463 I RemoteProvisioner: Pool status 25, 22, 0, 25
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: Pool status.
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: Total: 25
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: Attested: 25
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: Unassigned: 22
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: Expiring: 0
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService.KeyPoolStats: Sufficient keys are available, no CSR needed.
12-04 22:15:39.484 19450 19463 I RemoteProvisioningService: No provisioning needed.
12-04 22:15:40.057 19154 27784 W AsyncOperation: operation=attest, opStatusCode=7 [CONTEXT service_id=45 ]
12-04 22:15:40.057 19154 27784 W AsyncOperation: OperationException[Status{statusCode=NETWORK_ERROR, resolution=null}]
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at bsgz.c(:com.google.android.gms@224417044@22.44.17 (190400-488410709):2)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at bsgz.f(:com.google.android.gms@224417044@22.44.17 (190400-488410709):163)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at arro.eq(:com.google.android.gms@224417044@22.44.17 (190400-488410709):1)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at arru.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):12)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at cvgw.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):2)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at aabe.c(:com.google.android.gms@224417044@22.44.17 (190400-488410709):6)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at aabe.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):8)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at aagj.run(:com.google.android.gms@224417044@22.44.17 (190400-488410709):0)
12-04 22:15:40.057 19154 27784 W AsyncOperation:        at java.lang.Thread.run(Thread.java:1012)
12-04 22:15:40.062 30597 30597 W FirebaseContextProvider: Error getting App Check token. Error: com.google.firebase.FirebaseException: 7:
12-04 22:15:40.081 30597 31259 D TrafficStats: tagSocket(140) with statsTag=0xffffffff, statsUid=-1
12-04 22:15:40.099   524  2787 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(35) test(0)
12-04 22:15:40.738   524   626 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(36) test(0)
12-04 22:15:40.771   524   626 I display : [PrimaryDisplay] setActiveConfigWithConstraints, previous request config is processing (mDesiredConfig: 36)
12-04 22:15:40.773   524  2787 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(35) test(0)
12-04 22:15:40.804  1710  1779 I DisplayDeviceRepository: Display device changed: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:4619827677550801152", 1080 x 2400, modeId 1, defaultModeId 1, supportedModes [{id=1, width=1080, height=2400, fps=60.0, alternativeRefreshRates=[90.0]}, {id=2, width=1080, height=2400, fps=90.0, alternativeRefreshRates=[60.0]}], colorMode 0, supportedColorModes [0, 7, 9], hdrCapabilities HdrCapabilities{mSupportedHdrTypes=[2, 3, 4], mMaxLuminance=1000.0, mMaxAverageLuminance=120.0, mMinLuminance=5.0E-4}, allmSupported false, gameContentTypeSupported false, density 420, 415.636 x 417.534 dpi, appVsyncOff 6233334, presDeadline 11500000, cutout DisplayCutout{insets=Rect(0, 118 - 0, 0) waterfall=Insets{left=0, top=0, right=0, bottom=0} boundingRect={Bounds=[Rect(0, 0 - 0, 0), Rect(480, 0 - 625, 118), Rect(0, 0 - 0, 0), Rect(0, 0 - 0, 0)]} cutoutPathParserInfo={CutoutPathParserInfo{displayWidth=1080 displayHeight=2400 physicalDisplayWidth=1080 physicalDisplayHeight=2400 density={2.625} cutoutSpec={M 506,68 a 34,34 0 1 0 68,0 34,34 0 1 0 -68,0 Z @left} rotation={0} scale={1.0} physicalPixelDisplaySizeRatio={1.0}}}}, touch INTERNAL, rotation 0, type INTERNAL, address {port=0, model=0x401ceccbbbeef1}, deviceProductInfo DeviceProductInfo{name=Common Panel, manufacturerPnpId=GGL, productId=0, modelYear=null, manufactureDate=ManufactureDate{week=1, year=1990}, connectionToSinkType=0}, state ON, frameRateOverride , brightnessMinimum 0.0, brightnessMaximum 1.0, brightnessDefault 0.17429718, roundedCorners RoundedCorners{[RoundedCorner{position=TopLeft, radius=47, center=Point(47, 47)}, RoundedCorner{position=TopRight, radius=47, center=Point(1033, 47)}, RoundedCorner{position=BottomRight, radius=48, center=Point(1032, 2352)}, RoundedCorner{position=BottomLeft, radius=48, center=Point(48, 2352)}]}, FLAG_ALLOWED_TO_BE_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS, installOrientation 0}
12-04 22:15:40.838   524   559 D display : setActiveConfigWithConstraints:: PrimaryDisplay config(36) test(0)
12-04 22:15:40.886  1710  1779 I DisplayDeviceRepository: Display device changed: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:4619827677550801152", 1080 x 2400, modeId 2, defaultModeId 1, supportedModes [{id=1, width=1080, height=2400, fps=60.0, alternativeRefreshRates=[90.0]}, {id=2, width=1080, height=2400, fps=90.0, alternativeRefreshRates=[60.0]}], colorMode 0, supportedColorModes [0, 7, 9], hdrCapabilities HdrCapabilities{mSupportedHdrTypes=[2, 3, 4], mMaxLuminance=1000.0, mMaxAverageLuminance=120.0, mMinLuminance=5.0E-4}, allmSupported false, gameContentTypeSupported false, density 420, 415.636 x 417.534 dpi, appVsyncOff 6233333, presDeadline 11500000, cutout DisplayCutout{insets=Rect(0, 118 - 0, 0) waterfall=Insets{left=0, top=0, right=0, bottom=0} boundingRect={Bounds=[Rect(0, 0 - 0, 0), Rect(480, 0 - 625, 118), Rect(0, 0 - 0, 0), Rect(0, 0 - 0, 0)]} cutoutPathParserInfo={CutoutPathParserInfo{displayWidth=1080 displayHeight=2400 physicalDisplayWidth=1080 physicalDisplayHeight=2400 density={2.625} cutoutSpec={M 506,68 a 34,34 0 1 0 68,0 34,34 0 1 0 -68,0 Z @left} rotation={0} scale={1.0} physicalPixelDisplaySizeRatio={1.0}}}}, touch INTERNAL, rotation 0, type INTERNAL, address {port=0, model=0x401ceccbbbeef1}, deviceProductInfo DeviceProductInfo{name=Common Panel, manufacturerPnpId=GGL, productId=0, modelYear=null, manufactureDate=ManufactureDate{week=1, year=1990}, connectionToSinkType=0}, state ON, frameRateOverride , brightnessMinimum 0.0, brightnessMaximum 1.0, brightnessDefault 0.17429718, roundedCorners RoundedCorners{[RoundedCorner{position=TopLeft, radius=47, center=Point(47, 47)}, RoundedCorner{position=TopRight, radius=47, center=Point(1033, 47)}, RoundedCorner{position=BottomRight, radius=48, center=Point(1032, 2352)}, RoundedCorner{position=BottomLeft, radius=48, center=Point(48, 2352)}]}, FLAG_ALLOWED_TO_BE_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS, installOrientation 0}
12-04 22:15:40.893  1710  3824 D CoreBackPreview: Window{a8ea1e0 u0 Toast}: Setting back callback null
12-04 22:15:40.896  1710  5797 W InputManager-JNI: Input channel object 'a8ea1e0 Toast (client)' was disposed without first being removed with the input manager!
12-04 22:15:40.900  1710  5797 W NotificationService: Toast already killed. pkg=com.squadcollector token=android.os.BinderProxy@afe4310

Error shows ApiException 7 which is network error. I am getting this error on both mobile and wifi networks. Any ideas? Thanks

Edit: also should note I have at least one user that is experiencing the same issue on my app, in addition to myself. Most of the app works fine even if the user gets and ignores the appcheck failed error message so it's possible there are many more experiencing the same issue and just have not reported it to me.

mikehardy commented 1 year ago

This came up once before and was from device check not being enabled for the project, but that was (I think) an all or nothing failure, not an intermittent failure (https://github.com/invertase/react-native-firebase/discussions/6519)

Auth library for play services is at 20.4.0 for what it's worth: https://developers.google.com/android/guides/setup - unlikely to fix things but you never know.

It could be time skew? Please verify the date and time. Sometimes wrong date & time are set on emulators.

It could simply be a network error though. You haven't included all the information (for instance, make and model of device, operating system version in use on device...) so it is not possible to do anything more than guess about execution environment but I know some devices aggressively shut network connections down to save battery, possibly requiring multiple attempts to use the network before it has been turned on again and is actually ready (similar to but maybe not https://dontkillmyapp.com/)

github-actions[bot] commented 1 year ago

Hello 👋, to help manage issues we automatically close stale issues.

This issue has been automatically marked as stale because it has not had activity for quite some time.Has this issue been fixed, or does it still require attention?

This issue will be closed in 15 days if no further activity occurs.

Thank you for your contributions.