AppLovin / AppLovin-MAX-React-Native

MIT License
55 stars 29 forks source link

Library breaks Chrome debugger #53

Closed ushmau5 closed 1 year ago

ushmau5 commented 2 years ago

When entering debug mode via the Android virtual device (command + M -> Debug), if this library is imported and initialised the app will not load. All that is visible is a white screen.

To work around this, I have encapsulated the imports, initialisation and components in a single file which I comment out if I need to use the debugger.

package.json

{
  "name": "TCGPortfolioReact",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint .",
    "lint:ts": "eslint --ext=jsx,ts,tsx src",
    "bundle-js": "react-native bundle --entry-file index.js --bundle-output ios/main.jsbundle"
  },
  "dependencies": {
    "@react-native-community/masked-view": "^0.1.11",
    "@react-native-picker/picker": "^2.1.0",
    "@react-navigation/native": "^6.0.6",
    "@react-navigation/stack": "^6.0.11",
    "axios": "^0.23.0",
    "moment": "^2.29.1",
    "nanoid": "^3.1.30",
    "p-limit": "^3.1.0",
    "react": "17.0.2",
    "react-content-loader": "^6.0.3",
    "react-native": "^0.66.4",
    "react-native-applovin-max": "^2.5.1",
    "react-native-blob-util": "^0.13.18",
    "react-native-fast-image": "^8.5.11",
    "react-native-gesture-handler": "^1.10.3",
    "react-native-get-random-values": "^1.7.0",
    "react-native-picker-select": "^8.0.4",
    "react-native-safe-area-context": "^3.3.2",
    "react-native-screens": "^3.8.0",
    "react-native-svg": "^12.1.1",
    "react-native-table-component": "^1.2.1",
    "react-native-vector-icons": "^8.1.0",
    "react-redux": "^7.2.5",
    "redux": "^4.1.1",
    "redux-logger": "^3.0.6",
    "redux-persist": "^6.0.0",
    "redux-persist-filesystem-storage": "^4.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.15.8",
    "@babel/runtime": "^7.15.4",
    "@react-native-community/eslint-config": "^3.0.1",
    "@types/jest": "^27.0.2",
    "@types/react": "^17.0.31",
    "@types/react-native": "^0.65.10",
    "@types/react-native-table-component": "^1.2.2",
    "@types/react-native-vector-icons": "^6.4.9",
    "@types/react-test-renderer": "^17.0.1",
    "@typescript-eslint/eslint-plugin": "^5.1.0",
    "@typescript-eslint/parser": "^5.1.0",
    "babel-jest": "^27.3.1",
    "eslint": "^7.0.0",
    "jest": "^27.3.1",
    "metro-react-native-babel-preset": "^0.66.2",
    "react-test-renderer": "17.0.2",
    "typescript": "^4.4.4"
  },
  "jest": {
    "preset": "react-native"
  }
}

Metro Console Log:

 MAP  ./index.js ░░░░░░░░░░░░░░░░ 0.0% (0/1)Error: Unable to resolve module ./debugger-ui/debuggerWorker.aca173c4.js from /Users/omcnally/TCGPortfolioReact/.: 

None of these files exist:
  * debugger-ui/debuggerWorker.aca173c4.js(.native|.native.js|.js|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx)
  * debugger-ui/debuggerWorker.aca173c4.js/index(.native|.native.js|.js|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx)
    at ModuleResolver.resolveDependency (/Users/omcnally/TCGPortfolioReact/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:107:15)
    at DependencyGraph.resolveDependency (/Users/omcnally/TCGPortfolioReact/node_modules/metro/src/node-haste/DependencyGraph.js:288:43)
    at /Users/omcnally/TCGPortfolioReact/node_modules/metro/src/lib/transformHelpers.js:129:24
    at Server._resolveRelativePath (/Users/omcnally/TCGPortfolioReact/node_modules/metro/src/Server.js:1072:12)
    at async Server.requestProcessor [as _processSourceMapRequest] (/Users/omcnally/TCGPortfolioReact/node_modules/metro/src/Server.js:428:37)
    at async Server._processRequest (/Users/omcnally/TCGPortfolioReact/node_modules/metro/src/Server.js:389:7)

Chrome Console Log:

ExceptionsManager.js:184 Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect.
      This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.

Android Studio LogCat Log:

2022-02-03 10:40:02.337 15399-15399/? I/gportfolioreac: Not late-enabling -Xcheck:jni (already on)
2022-02-03 10:40:02.360 15399-15399/? I/gportfolioreac: Unquickening 12 vdex files!
2022-02-03 10:40:02.364 15399-15399/? W/gportfolioreac: Unexpected CPU variant for X86 using defaults: x86
2022-02-03 10:40:03.112 15399-15399/com.tcgportfolioreact D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2022-02-03 10:40:03.112 15399-15399/com.tcgportfolioreact D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2022-02-03 10:40:03.121 15399-15399/com.tcgportfolioreact I/MultiDex: VM with version 2.1.0 has multidex support
2022-02-03 10:40:03.122 15399-15399/com.tcgportfolioreact I/MultiDex: install
2022-02-03 10:40:03.122 15399-15399/com.tcgportfolioreact I/MultiDex: VM has multidex support, MultiDex support library is disabled.
2022-02-03 10:40:03.179 15399-15399/com.tcgportfolioreact I/SafeDK: SafeDK Device ID: 8b55842b-44ca-4e90-8efd-c653f4253155
2022-02-03 10:40:03.179 15399-15399/com.tcgportfolioreact I/SafeDK: SafeDK version: 3.9.11
2022-02-03 10:40:03.408 15399-15399/com.tcgportfolioreact D/AppLovinSdk: [AppLovinSdk] Attaching Activity lifecycle manager...
2022-02-03 10:40:03.430 15399-15399/com.tcgportfolioreact D/WM-WrkMgrInitializer: Initializing WorkManager with default configuration.
2022-02-03 10:40:03.489 15399-15399/com.tcgportfolioreact I/TetheringManager: registerTetheringEventCallback:com.tcgportfolioreact
2022-02-03 10:40:03.523 15399-15399/com.tcgportfolioreact D/SoLoader: init start
2022-02-03 10:40:03.525 15399-15399/com.tcgportfolioreact D/SoLoader: adding system library source: /vendor/lib
2022-02-03 10:40:03.527 15399-15399/com.tcgportfolioreact D/SoLoader: adding system library source: /system/lib
2022-02-03 10:40:03.528 15399-15399/com.tcgportfolioreact D/SoLoader: adding application source: com.facebook.soloader.DirectorySoSource[root = /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86 flags = 0]
2022-02-03 10:40:03.538 15399-15399/com.tcgportfolioreact D/SoLoader: adding backup source from : com.facebook.soloader.ApkSoSource[root = /data/data/com.tcgportfolioreact/lib-main flags = 1]
2022-02-03 10:40:03.538 15399-15399/com.tcgportfolioreact D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /system/lib flags = 2]
2022-02-03 10:40:03.538 15399-15399/com.tcgportfolioreact D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /vendor/lib flags = 2]
2022-02-03 10:40:03.538 15399-15399/com.tcgportfolioreact D/SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86 flags = 0]
2022-02-03 10:40:03.538 15399-15399/com.tcgportfolioreact D/SoLoader: Preparing SO source: com.facebook.soloader.ApkSoSource[root = /data/data/com.tcgportfolioreact/lib-main flags = 1]
2022-02-03 10:40:03.539 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: locked dso store /data/user/0/com.tcgportfolioreact/lib-main
2022-02-03 10:40:03.543 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: deps mismatch on deps store: regenerating
2022-02-03 10:40:03.543 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: so store dirty: regenerating
2022-02-03 10:40:03.583 15399-15467/com.tcgportfolioreact W/GooglePlayServicesUtil: Google Play services out of date for com.tcgportfolioreact.  Requires 212800000 but found 201817022
2022-02-03 10:40:03.620 15399-15473/com.tcgportfolioreact W/GooglePlayServicesUtil: Google Play services out of date for com.tcgportfolioreact.  Requires 212800000 but found 201817022
2022-02-03 10:40:03.646 15399-15473/com.tcgportfolioreact W/GoogleApiManager: The service for com.google.android.gms.internal.appset.zzd is not available: ConnectionResult{statusCode=SERVICE_VERSION_UPDATE_REQUIRED, resolution=null, message=null}
2022-02-03 10:40:03.743 15399-15479/com.tcgportfolioreact W/DynamiteModule: Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2022-02-03 10:40:03.814 15399-15468/com.tcgportfolioreact I/DynamiteModule: Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:21400
2022-02-03 10:40:03.816 15399-15468/com.tcgportfolioreact I/DynamiteModule: Selected remote version of com.google.android.gms.ads.dynamite, version >= 21400
2022-02-03 10:40:03.816 15399-15468/com.tcgportfolioreact V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils
2022-02-03 10:40:03.824 15399-15479/com.tcgportfolioreact I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:0 and remote module com.google.android.gms.measurement.dynamite:13
2022-02-03 10:40:03.824 15399-15479/com.tcgportfolioreact I/DynamiteModule: Selected remote version of com.google.android.gms.measurement.dynamite, version >= 13
2022-02-03 10:40:03.824 15399-15479/com.tcgportfolioreact V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils
2022-02-03 10:40:03.862 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libbetter.so: deferring to libdir
2022-02-03 10:40:03.862 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libc++_shared.so: deferring to libdir
2022-02-03 10:40:03.862 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libevent-2.1.so: deferring to libdir
2022-02-03 10:40:03.862 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libevent_core-2.1.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libevent_extra-2.1.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libfabricjni.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libfb.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libfbjni.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libflipper.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libfolly_futures.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libfolly_json.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libglog.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libglog_init.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libhermes-executor-common-debug.so: deferring to libdir
2022-02-03 10:40:03.863 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libhermes-executor-common-release.so: deferring to libdir
2022-02-03 10:40:03.864 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libhermes-executor-debug.so: deferring to libdir
2022-02-03 10:40:03.864 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libhermes-executor-release.so: deferring to libdir
2022-02-03 10:40:03.864 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libhermes-inspector.so: deferring to libdir
2022-02-03 10:40:03.865 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libimagepipeline.so: deferring to libdir
2022-02-03 10:40:03.867 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libjsc.so: deferring to libdir
2022-02-03 10:40:03.867 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libjscexecutor.so: deferring to libdir
2022-02-03 10:40:03.867 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libjsi.so: deferring to libdir
2022-02-03 10:40:03.868 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libjsijniprofiler.so: deferring to libdir
2022-02-03 10:40:03.868 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libjsinspector.so: deferring to libdir
2022-02-03 10:40:03.869 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/liblogger.so: deferring to libdir
2022-02-03 10:40:03.869 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libmapbufferjni.so: deferring to libdir
2022-02-03 10:40:03.869 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libnative-filters.so: deferring to libdir
2022-02-03 10:40:03.870 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libnative-imagetranscoder.so: deferring to libdir
2022-02-03 10:40:03.870 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_codegen_rncore.so: deferring to libdir
2022-02-03 10:40:03.870 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_debug.so: deferring to libdir
2022-02-03 10:40:03.870 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_nativemodule_core.so: deferring to libdir
2022-02-03 10:40:03.871 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_animations.so: deferring to libdir
2022-02-03 10:40:03.871 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_attributedstring.so: deferring to libdir
2022-02-03 10:40:03.871 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_componentregistry.so: deferring to libdir
2022-02-03 10:40:03.871 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_core.so: deferring to libdir
2022-02-03 10:40:03.872 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_debug.so: deferring to libdir
2022-02-03 10:40:03.872 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_graphics.so: deferring to libdir
2022-02-03 10:40:03.872 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_imagemanager.so: deferring to libdir
2022-02-03 10:40:03.873 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_leakchecker.so: deferring to libdir
2022-02-03 10:40:03.873 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_mapbuffer.so: deferring to libdir
2022-02-03 10:40:03.873 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_mounting.so: deferring to libdir
2022-02-03 10:40:03.873 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_runtimescheduler.so: deferring to libdir
2022-02-03 10:40:03.873 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_scheduler.so: deferring to libdir
2022-02-03 10:40:03.875 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_telemetry.so: deferring to libdir
2022-02-03 10:40:03.875 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_templateprocessor.so: deferring to libdir
2022-02-03 10:40:03.876 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_textlayoutmanager.so: deferring to libdir
2022-02-03 10:40:03.876 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_render_uimanager.so: deferring to libdir
2022-02-03 10:40:03.876 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreact_utils.so: deferring to libdir
2022-02-03 10:40:03.879 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreactconfig.so: deferring to libdir
2022-02-03 10:40:03.879 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreactnativeblob.so: deferring to libdir
2022-02-03 10:40:03.882 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreactnativejni.so: deferring to libdir
2022-02-03 10:40:03.882 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreactnativeutilsjni.so: deferring to libdir
2022-02-03 10:40:03.882 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libreactperfloggerjni.so: deferring to libdir
2022-02-03 10:40:03.882 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_image.so: deferring to libdir
2022-02-03 10:40:03.882 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_modal.so: deferring to libdir
2022-02-03 10:40:03.884 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_progressbar.so: deferring to libdir
2022-02-03 10:40:03.884 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_root.so: deferring to libdir
2022-02-03 10:40:03.885 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_scrollview.so: deferring to libdir
2022-02-03 10:40:03.885 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_slider.so: deferring to libdir
2022-02-03 10:40:03.885 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_switch.so: deferring to libdir
2022-02-03 10:40:03.885 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_text.so: deferring to libdir
2022-02-03 10:40:03.885 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_textinput.so: deferring to libdir
2022-02-03 10:40:03.886 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_unimplementedview.so: deferring to libdir
2022-02-03 10:40:03.886 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/librrc_view.so: deferring to libdir
2022-02-03 10:40:03.890 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libturbomodulejsijni.so: deferring to libdir
2022-02-03 10:40:03.890 15399-15399/com.tcgportfolioreact D/ApkSoSource: not allowing consideration of lib/x86/libyoga.so: deferring to libdir
2022-02-03 10:40:03.896 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: regenerating DSO store com.facebook.soloader.ApkSoSource
2022-02-03 10:40:03.908 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: Finished regenerating DSO store com.facebook.soloader.ApkSoSource
2022-02-03 10:40:03.909 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: starting syncer worker
2022-02-03 10:40:03.923 15399-15468/com.tcgportfolioreact W/gportfolioreac: Unsupported class loader
2022-02-03 10:40:03.934 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.tcgportfolioreact/lib-main (from syncer thread)
2022-02-03 10:40:03.934 15399-15399/com.tcgportfolioreact V/fb-UnpackingSoSource: not releasing dso store lock for /data/user/0/com.tcgportfolioreact/lib-main (syncer thread started)
2022-02-03 10:40:03.934 15399-15399/com.tcgportfolioreact D/SoLoader: init finish: 4 SO sources prepared
2022-02-03 10:40:03.934 15399-15399/com.tcgportfolioreact D/SoLoader: init exiting
2022-02-03 10:40:03.978 15399-15399/com.tcgportfolioreact D/SoLoader: init exiting
2022-02-03 10:40:03.978 15399-15399/com.tcgportfolioreact D/SoLoader: About to load: libjscexecutor.so
2022-02-03 10:40:03.979 15399-15399/com.tcgportfolioreact D/SoLoader: libjscexecutor.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:03.979 15399-15399/com.tcgportfolioreact D/SoLoader: libjscexecutor.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:03.979 15399-15399/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libjscexecutor.so
2022-02-03 10:40:03.998 15399-15468/com.tcgportfolioreact W/gportfolioreac: Unsupported class loader
2022-02-03 10:40:04.005 15399-15399/com.tcgportfolioreact D/JavaScriptCore.Version: 250230.2.1
2022-02-03 10:40:04.007 15399-15399/com.tcgportfolioreact D/SoLoader: Loaded: libjscexecutor.so
2022-02-03 10:40:04.008 15399-15479/com.tcgportfolioreact W/gportfolioreac: Unsupported class loader
2022-02-03 10:40:04.015 15399-15399/com.tcgportfolioreact D/SoLoader: init exiting
2022-02-03 10:40:04.023 15399-15479/com.tcgportfolioreact W/gportfolioreac: Unsupported class loader
2022-02-03 10:40:04.085 15399-15479/com.tcgportfolioreact W/DynamiteModule: Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2022-02-03 10:40:04.478 15399-15483/com.tcgportfolioreact I/gportfolioreac: IncrementDisableThreadFlip blocked for 7.446ms
2022-02-03 10:40:04.542 15399-15483/com.tcgportfolioreact I/FA-Ads: App measurement initialized, version: 26016
2022-02-03 10:40:04.550 15399-15483/com.tcgportfolioreact I/FA-Ads: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
2022-02-03 10:40:04.564 15399-15487/com.tcgportfolioreact D/SoLoader: About to load: libfbjni.so
2022-02-03 10:40:04.590 15399-15487/com.tcgportfolioreact D/SoLoader: libfbjni.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:04.591 15399-15487/com.tcgportfolioreact D/SoLoader: libfbjni.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:04.591 15399-15487/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libfbjni.so
2022-02-03 10:40:04.617 15399-15487/com.tcgportfolioreact D/SoLoader: Loaded: libfbjni.so
2022-02-03 10:40:04.618 15399-15487/com.tcgportfolioreact D/SoLoader: About to load: libflipper.so
2022-02-03 10:40:04.619 15399-15487/com.tcgportfolioreact D/SoLoader: libflipper.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:04.619 15399-15487/com.tcgportfolioreact D/SoLoader: libflipper.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:04.619 15399-15487/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libflipper.so
2022-02-03 10:40:04.732 15399-15487/com.tcgportfolioreact D/SoLoader: Loaded: libflipper.so
2022-02-03 10:40:04.743 15399-15399/com.tcgportfolioreact W/gportfolioreac: Long monitor contention with owner FlipperEventBaseThread (15487) at void com.facebook.flipper.android.FlipperThread.run()(FlipperThread.java:29) waiters=0 in com.facebook.flipper.android.EventBase com.facebook.flipper.android.FlipperThread.getEventBase() for 198ms
2022-02-03 10:40:04.812 15399-15399/com.tcgportfolioreact W/gportfolioreac: Accessing hidden field Landroid/view/View;->mKeyedTags:Landroid/util/SparseArray; (greylist, reflection, allowed)
2022-02-03 10:40:04.817 15399-15399/com.tcgportfolioreact W/gportfolioreac: Accessing hidden field Landroid/view/View;->mListenerInfo:Landroid/view/View$ListenerInfo; (greylist, reflection, allowed)
2022-02-03 10:40:04.819 15399-15399/com.tcgportfolioreact W/gportfolioreac: Accessing hidden field Landroid/view/View$ListenerInfo;->mOnClickListener:Landroid/view/View$OnClickListener; (greylist, reflection, allowed)
2022-02-03 10:40:04.871 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin Inspector
2022-02-03 10:40:04.871 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin React
2022-02-03 10:40:04.884 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin Databases
2022-02-03 10:40:04.894 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin Preferences
2022-02-03 10:40:04.895 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin CrashReporter
2022-02-03 10:40:04.904 15399-15399/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin Network
2022-02-03 10:40:05.281 15399-15506/com.tcgportfolioreact D/libEGL: loaded /vendor/lib/egl/libEGL_emulation.so
2022-02-03 10:40:05.311 15399-15506/com.tcgportfolioreact D/libEGL: loaded /vendor/lib/egl/libGLESv1_CM_emulation.so
2022-02-03 10:40:05.624 15399-15506/com.tcgportfolioreact D/libEGL: loaded /vendor/lib/egl/libGLESv2_emulation.so
2022-02-03 10:40:05.818 15399-15399/com.tcgportfolioreact W/gportfolioreac: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2022-02-03 10:40:05.819 15399-15399/com.tcgportfolioreact W/gportfolioreac: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2022-02-03 10:40:05.897 15399-15399/com.tcgportfolioreact W/unknown:ReactNative: Packager connection already open, nooping.
2022-02-03 10:40:05.981 15399-15503/com.tcgportfolioreact D/HostConnection: HostConnection::get() New Host Connection established 0xf731f7a0, tid 15503
2022-02-03 10:40:06.058 15399-15483/com.tcgportfolioreact I/FA-Ads: Tag Manager is not found and thus will not be used
2022-02-03 10:40:06.106 15399-15503/com.tcgportfolioreact D/HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_async_frame_commands ANDROID_EMU_gles_max_version_3_0 
2022-02-03 10:40:06.373 15399-15503/com.tcgportfolioreact W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
2022-02-03 10:40:06.373 15399-15503/com.tcgportfolioreact D/EGL_emulation: eglCreateContext: 0xf731fc70: maj 3 min 0 rcv 3
2022-02-03 10:40:06.407 15399-15503/com.tcgportfolioreact D/EGL_emulation: eglMakeCurrent: 0xf731fc70: ver 3 0 (tinfo 0xf767a6d0) (first time)
2022-02-03 10:40:07.001 15399-15503/com.tcgportfolioreact I/Gralloc4: mapper 4.x is not supported
2022-02-03 10:40:07.085 15399-15503/com.tcgportfolioreact D/HostConnection: createUnique: call
2022-02-03 10:40:07.085 15399-15503/com.tcgportfolioreact D/HostConnection: HostConnection::get() New Host Connection established 0xf7329750, tid 15503
2022-02-03 10:40:07.085 15399-15503/com.tcgportfolioreact D/goldfish-address-space: allocate: Ask for block of size 0x100
2022-02-03 10:40:07.085 15399-15503/com.tcgportfolioreact D/goldfish-address-space: allocate: ioctl allocate returned offset 0x3fac46000 size 0x2000
2022-02-03 10:40:07.443 15399-15503/com.tcgportfolioreact D/HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_async_frame_commands ANDROID_EMU_gles_max_version_3_0 
2022-02-03 10:40:17.886 15399-15494/com.tcgportfolioreact D/SoLoader: About to load: libreactnativejni.so
2022-02-03 10:40:17.893 15399-15494/com.tcgportfolioreact D/SoLoader: libreactnativejni.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:17.893 15399-15494/com.tcgportfolioreact D/SoLoader: libreactnativejni.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:17.893 15399-15494/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libreactnativejni.so
2022-02-03 10:40:17.907 15399-15494/com.tcgportfolioreact D/SoLoader: Loaded: libreactnativejni.so
2022-02-03 10:40:17.921 15399-15509/com.tcgportfolioreact D/SharedPreferencesImpl: Time required to fsync /data/user/0/com.tcgportfolioreact/shared_prefs/app_set_id_storage.xml: [<1: 0, <2: 0, <4: 0, <8: 0, <16: 0, <32: 0, <64: 0, <128: 0, <256: 0, <512: 0, <1024: 0, <2048: 0, <4096: 0, <8192: 0, <16384: 1, >=16384: 0]

    --------- beginning of crash
2022-02-03 10:40:17.940 15399-15455/com.tcgportfolioreact D/SharedPreferencesImpl: Time required to fsync /data/user/0/com.tcgportfolioreact/shared_prefs/com.google.android.gms.measurement.prefs.xml: [<1: 0, <2: 0, <4: 0, <8: 0, <16: 0, <32: 0, <64: 0, <128: 0, <256: 0, <512: 0, <1024: 0, <2048: 0, <4096: 0, <8192: 0, <16384: 1, >=16384: 0]
2022-02-03 10:40:18.137 15399-15503/com.tcgportfolioreact I/OpenGLRenderer: Davey! duration=12253ms; Flags=1, IntendedVsync=8200814787195, Vsync=8200831453861, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=8200832118619, AnimationStart=8200832211619, PerformTraversalsStart=8200832711619, DrawStart=8202388396619, SyncQueued=8202438743619, SyncStart=8202443018619, IssueDrawCommandsStart=8202443062619, SwapBuffers=8213057357619, FrameCompleted=8213072324619, DequeueBufferDuration=2365000, QueueBufferDuration=1599000, GpuCompleted=0, 
2022-02-03 10:40:18.719 15399-15399/com.tcgportfolioreact W/unknown:ReactNative: Packager connection already open, nooping.
2022-02-03 10:40:22.735 15399-15528/com.tcgportfolioreact W/gportfolioreac: Verification of void com.horcrux.svg.RenderableViewManager$SVGClass.<clinit>() took 3.836s (78.72 bytecodes/s) (2888B approximate peak alloc)
2022-02-03 10:40:22.781 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager
2022-02-03 10:40:22.832 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode
2022-02-03 10:40:22.836 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager
2022-02-03 10:40:22.843 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager
2022-02-03 10:40:22.844 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager
2022-02-03 10:40:22.848 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode
2022-02-03 10:40:22.855 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager
2022-02-03 10:40:22.858 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager
2022-02-03 10:40:22.864 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode
2022-02-03 10:40:22.865 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager
2022-02-03 10:40:22.868 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode
2022-02-03 10:40:22.870 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager
2022-02-03 10:40:22.874 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager
2022-02-03 10:40:22.875 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode
2022-02-03 10:40:22.880 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager
2022-02-03 10:40:22.882 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager
2022-02-03 10:40:22.883 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode
2022-02-03 10:40:22.884 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager
2022-02-03 10:40:22.884 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode
2022-02-03 10:40:22.885 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager
2022-02-03 10:40:22.919 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode
2022-02-03 10:40:22.981 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager
2022-02-03 10:40:22.984 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode
2022-02-03 10:40:22.986 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager
2022-02-03 10:40:22.990 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager
2022-02-03 10:40:22.990 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode
2022-02-03 10:40:22.992 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager
2022-02-03 10:40:22.997 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class org.reactnative.maskedview.RNCMaskedViewManager
2022-02-03 10:40:22.999 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDialogPickerManager
2022-02-03 10:40:23.018 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactPickerShadowNode
2022-02-03 10:40:23.021 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDropdownPickerManager
2022-02-03 10:40:23.022 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.applovin.reactnative.AppLovinMAXAdViewManager
2022-02-03 10:40:23.026 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.dylanvann.fastimage.FastImageViewManager
2022-02-03 10:40:23.030 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager
2022-02-03 10:40:23.033 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager
2022-02-03 10:40:23.039 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager
2022-02-03 10:40:23.042 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager
2022-02-03 10:40:23.045 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewShadowNode
2022-02-03 10:40:23.049 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager
2022-02-03 10:40:23.051 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager
2022-02-03 10:40:23.054 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager
2022-02-03 10:40:23.055 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager
2022-02-03 10:40:23.057 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager
2022-02-03 10:40:23.058 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.SearchBarManager
2022-02-03 10:40:23.058 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$GroupViewManager
2022-02-03 10:40:23.061 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RenderableShadowNode
2022-02-03 10:40:23.062 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PathViewManager
2022-02-03 10:40:23.063 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$CircleViewManager
2022-02-03 10:40:24.609 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$EllipseViewManager
2022-02-03 10:40:24.610 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LineViewManager
2022-02-03 10:40:24.610 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RectViewManager
2022-02-03 10:40:24.612 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextViewManager
2022-02-03 10:40:24.614 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TSpanViewManager
2022-02-03 10:40:24.615 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextPathViewManager
2022-02-03 10:40:24.616 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ImageViewManager
2022-02-03 10:40:24.621 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ClipPathViewManager
2022-02-03 10:40:24.648 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$DefsViewManager
2022-02-03 10:40:24.660 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$UseViewManager
2022-02-03 10:40:24.668 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$SymbolManager
2022-02-03 10:40:24.674 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LinearGradientManager
2022-02-03 10:40:24.681 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RadialGradientManager
2022-02-03 10:40:24.684 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PatternManager
2022-02-03 10:40:24.692 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MaskManager
2022-02-03 10:40:24.696 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ForeignObjectManager
2022-02-03 10:40:24.705 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MarkerManager
2022-02-03 10:40:24.707 15399-15528/com.tcgportfolioreact W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.SvgViewManager
2022-02-03 10:40:24.972 15399-15528/com.tcgportfolioreact D/SoLoader: About to load: libyoga.so
2022-02-03 10:40:24.979 15399-15528/com.tcgportfolioreact D/SoLoader: libyoga.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:24.979 15399-15528/com.tcgportfolioreact D/SoLoader: libyoga.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:24.979 15399-15528/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libyoga.so
2022-02-03 10:40:24.982 15399-15528/com.tcgportfolioreact D/SoLoader: Loaded: libyoga.so
2022-02-03 10:40:25.613 15399-15528/com.tcgportfolioreact I/flipper: flipper: FlipperClient::addPlugin Fresco
2022-02-03 10:40:25.827 15399-15527/com.tcgportfolioreact D/SoLoader: About to load: libreactnativeblob.so
2022-02-03 10:40:25.829 15399-15527/com.tcgportfolioreact D/SoLoader: libreactnativeblob.so not found on /data/data/com.tcgportfolioreact/lib-main
2022-02-03 10:40:25.830 15399-15527/com.tcgportfolioreact D/SoLoader: libreactnativeblob.so found on /data/app/~~3KKwE-1xBiR440tBkDVM3w==/com.tcgportfolioreact-jwV_EsFmIa9lAvBuTRWskg==/lib/x86
2022-02-03 10:40:25.830 15399-15527/com.tcgportfolioreact D/SoLoader: Not resolving dependencies for libreactnativeblob.so
2022-02-03 10:40:25.833 15399-15527/com.tcgportfolioreact D/SoLoader: Loaded: libreactnativeblob.so
thomasmso commented 2 years ago

Hi - which libraries in specific did you have to comment out to let the Android debugger screen work?

ushmau5 commented 2 years ago

I have a file that encapsulates all of your ad logic like so;

// react
import React from 'react';
import {Platform, StyleSheet, View} from 'react-native';

// libraries
//@ts-ignore
import AppLovinMAX from 'react-native-applovin-max';

// local
import {colours} from 'src/styles';

AppLovinMAX.initialize('XXXXXX', () => {
  // SDK is initialized, start loading ads
});

const BANNER_AD_UNIT_ID = Platform.select({
  android: '12345',
  ios: '12345',
});

const BannerAd = () => (
  <View style={styles.container}>
    <AppLovinMAX.AdView adUnitId={BANNER_AD_UNIT_ID} adFormat={AppLovinMAX.AdFormat.BANNER} style={styles.banner} />
  </View>
);

const styles = StyleSheet.create({
  banner: {
    // Set background color for banners to be fully functional
    backgroundColor: colours.darkBg,
    position: 'relative',
    width: '100%',
    height: AppLovinMAX.isTablet() ? 90 : 50,
  },
  container: {
    alignItems: 'center',
    paddingBottom: 10,
  },
});

export default BannerAd;

If I comment out imports for this file in my codebase everything works fine.

The issue is something to do with this library import AppLovinMAX from 'react-native-applovin-max';

The keys and ad id's have been omitted for security purposes.

thomasmso commented 2 years ago

Thank you for the info - we can investigate this a little, but this is the first time that this particular issue has been raised with us.

a26364177 commented 2 years ago

same here

alhiwatan commented 1 year ago

This is because the banner is attached before the AppLovinMAX initialization. Please load the banner after the AppLovinMAX initialization.