realm / realm-js

Realm is a mobile database: an alternative to SQLite & key-value stores
https://realm.io
Apache License 2.0
5.62k stars 558 forks source link

only Android: Cannot access realm that has been closed(realm react) #4816

Closed fukemy closed 1 year ago

fukemy commented 1 year ago

How frequently does the bug occur?

All the time

Description

RealmContext.js

import { ContactInfo, Room, RoomBackground, RoomDetail, RoomMessage, Summary } from "../database/RealmSchemas"
import { Realm, createRealmContext } from '@realm/react'

const config = {
    schema: [Room.schema, 
        ContactInfo.schema, 
        RoomDetail.schema, 
        RoomBackground.schema, 
        Summary.schema, 
        RoomMessage.schema],
}

export default createRealmContext(config)

Other class

import RealmContext from '../../context/RealmContext'
const { useRealm, useQuery } = RealmContext
export class....{
    const realm = useRealm()
    ... get data....

Stacktrace & log output

ReactNativeJS: { [Error: Cannot access realm that has been closed.

Can you reproduce the bug?

Yes, always

Reproduction Steps

as Description Define realm context get Realm instance => const { useRealm } = realmContext create realm => const realm = useRealm() query data

Version

"realm": "^10.18.0", "@realm/react": "^0.3.0",

What SDK flavour are you using?

Local Database only

Are you using encryption?

No, not using encryption

Platform OS and version(s)

Android simulator sdk 30

Build environment

Which debugger for React Native: .. npm -v not ok Use npm v8.18.0 node -v not ok Use node v17.9.1 (current: v17.8.0)

Cocoapods version

android problem

fukemy commented 1 year ago

@kneth @alazier @tgoyne @blagoev @appden @kraenhansen @fealebenpae @takameyer @tomduncalf @nhachicha @bdash can someone help?

kneth commented 1 year ago

@fukemy Since you can reproduce it, can you create a simple RN project and share it with us?

fukemy commented 1 year ago

thanks, i will try to make a small project to reproduce

fukemy commented 1 year ago

hi @kneth , I tried to create small project to reproduce the problem, but it's working fine :/, now i can not find the problem.

Did realm support to enable logging, like webrtc log verbose, debug,... ??

fukemy commented 1 year ago

I really dont know the problem. Even Im already follow the guide: https://www.mongodb.com/docs/realm/sdk/react-native/use-realm-react/

Here is my AppJS:

import RealmContext from './context/RealmContext'

const {  RealmProvider } = RealmContext

export default function App() {
return (
    <RealmProvider>
...
</RealmProvider>
takameyer commented 1 year ago

@fukemy That code looks fine. I'm going to follow up with some questions.

Can you try and implement the fallback property on the RealmProvider? This makes sure the children are not rendered until the realm context is set. The following example should suffice:

return (
    <RealmProvider fallback={() => null}>
...
</RealmProvider>

Are you using realm in any other way outside of the useRealm hook? If you, for example, open and close a realm within a useEffect then this would also close the realm returned from the useRealm hook.

fukemy commented 1 year ago

hi @takameyer , thanks for your response, im sure that I am not using open() or close() method anywhere, all i did is following the guide: https://www.mongodb.com/docs/realm/sdk/react-native/use-realm-react/ The main problem is my realm working normal in IOS, only fail in Android with this error.

My company laptop is only used for IOS, i will feedback to you after 4,5 hours more. I can debug android in my home only

takameyer commented 1 year ago

Can you share your package.json? There may be conflicting dependencies

fukemy commented 1 year ago

ok bro, it's my package.json:

{
  "name": "vedaxlink",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "android release": "react-native run-android --variant=release",
    "ios": "react-native run-ios",
    "iosip8": "react-native run-ios --simulator 'iPhone 8'",
    "iosip8p": "react-native run-ios --simulator 'iPhone 8 Plus'",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint ."
  },
  "dependencies": {
    "@expo/react-native-action-sheet": "^3.13.0",
    "@freakycoder/react-native-bounceable": "^0.2.5",
    "@freakycoder/react-native-multiple-select": "^0.3.0",
    "@freakycoder/react-native-progressive-fast-image": "^0.2.5",
    "@gorhom/bottom-sheet": "^4.4.2",
    "@react-native-async-storage/async-storage": "^1.17.7",
    "@react-native-community/hooks": "^2.8.1",
    "@react-native-community/slider": "^4.2.2",
    "@react-native-masked-view/masked-view": "^0.2.6",
    "@react-native-segmented-control/segmented-control": "^2.4.0",
    "@react-navigation/bottom-tabs": "^6.3.1",
    "@react-navigation/material-bottom-tabs": "^6.2.1",
    "@react-navigation/native": "^6.0.10",
    "@react-navigation/native-stack": "^6.6.1",
    "@realm/react": "^0.3.2",
    "@sishuguojixuefu/react-native-office-viewer": "^0.0.5",
    "assert": "^1.5.0",
    "axios": "^0.26.1",
    "browserify-zlib": "^0.1.4",
    "buffer": "^4.9.2",
    "console-browserify": "^1.2.0",
    "constants-browserify": "^1.0.0",
    "crypto-js": "^3.3.0",
    "dns.js": "^1.0.1",
    "domain-browser": "^1.2.0",
    "events": "^1.1.1",
    "expo-keep-awake": "^10.2.0",
    "get-audio-duration": "^3.1.0",
    "gradient-parser": "^1.0.2",
    "https-browserify": "^0.0.1",
    "ios": "^0.0.1",
    "moment": "^2.29.3",
    "path-browserify": "^0.0.0",
    "process": "^0.11.10",
    "punycode": "^1.4.1",
    "querystring-es3": "^0.2.1",
    "react": "17.0.2",
    "react-native": "^0.68.0",
    "react-native-actions-sheet": "^0.7.1",
    "react-native-aes-crypto": "^2.1.0",
    "react-native-animatable": "^1.3.3",
    "react-native-animated-hide-view": "^1.0.0",
    "react-native-animated-nav-tab-bar": "^3.1.8",
    "react-native-animated-spinkit": "^1.5.2",
    "react-native-animation-layout": "^0.0.13",
    "react-native-app-auth": "^6.4.3",
    "react-native-audio-record": "^0.2.2",
    "react-native-autogrow-textinput": "^5.4.0",
    "react-native-base64": "^0.2.1",
    "react-native-blurhash": "^1.1.10",
    "react-native-bouncy-checkbox": "^2.1.13",
    "react-native-calendars": "^1.1285.0",
    "react-native-chart-kit": "^6.12.0",
    "react-native-chunk-upload": "^2.0.3",
    "react-native-circle-reveal-view": "^0.0.2",
    "react-native-collapsible-toolbar": "^0.1.2",
    "react-native-context-menu-view": "^1.5.2",
    "react-native-controlled-mentions": "^3.0.0-alpha.1",
    "react-native-create-thumbnail": "^1.5.1",
    "react-native-device-info": "^9.0.2",
    "react-native-dialog": "^9.2.2",
    "react-native-doc-viewer": "^2.7.8",
    "react-native-document-picker": "^8.1.1",
    "react-native-dynamic-search-bar": "^2.0.2",
    "react-native-elements": "^3.4.2",
    "react-native-emoji-board": "^1.2.1",
    "react-native-emoji-selector": "^0.2.0",
    "react-native-event-bus": "^1.0.0",
    "react-native-fast-image": "^8.5.11",
    "react-native-file-viewer": "^2.1.5",
    "react-native-fs": "^2.20.0",
    "react-native-gesture-handler": "^2.5.0",
    "react-native-get-random-values": "^1.8.0",
    "react-native-gifted-chat": "^0.16.3",
    "react-native-haptic-feedback": "^1.13.1",
    "react-native-http": "github:tradle/react-native-http#834492d",
    "react-native-icon-action-sheet": "^0.0.6",
    "react-native-icon-badge": "^1.1.3",
    "react-native-image-crop-picker": "^0.37.3",
    "react-native-image-keyboard": "^2.2.0",
    "react-native-image-modal": "^2.0.4",
    "react-native-image-progress": "^1.2.0",
    "react-native-image-viewing": "^0.2.2",
    "react-native-ios-context-menu": "^1.12.0",
    "react-native-janus": "^0.0.1",
    "react-native-keep-screen-on": "^1.2.0",
    "react-native-keyboard-area": "^1.0.5",
    "react-native-keyboard-aware-scrollview": "^2.1.0",
    "react-native-keyboard-input": "^6.0.2",
    "react-native-keyboard-spacer": "^0.4.1",
    "react-native-keyboard-tracking-view": "^5.7.0",
    "react-native-level-fs": "^3.0.1",
    "react-native-lightbox-v2": "^0.9.0",
    "react-native-linear-gradient": "^2.5.6",
    "react-native-localize": "^2.2.1",
    "react-native-mmkv": "^2.4.3",
    "react-native-modalize": "^2.0.13",
    "react-native-multi-selectbox": "^1.5.0",
    "react-native-no-lag-text-input": "^1.1.0",
    "react-native-ntl-document-camera": "^1.0.2",
    "react-native-os": "^1.2.6",
    "react-native-pager-view": "^6.0.0-rc.2",
    "react-native-paper": "^4.12.0",
    "react-native-platform-searchbar": "^1.2.3",
    "react-native-portalize": "^1.0.7",
    "react-native-progress": "^5.0.0",
    "react-native-radio-buttons-group": "^2.2.11",
    "react-native-randombytes": "^3.6.1",
    "react-native-reanimated": "^2.9.0",
    "react-native-rectangle-scanner": "^1.0.10",
    "react-native-render-html": "^6.3.4",
    "react-native-safe-area-context": "^3.4.1",
    "react-native-screens": "^3.13.1",
    "react-native-segmented-control-tab": "^4.0.0",
    "react-native-select-dropdown": "^2.0.4",
    "react-native-share": "^7.6.4",
    "react-native-slider": "^0.11.0",
    "react-native-sound": "^0.11.2",
    "react-native-spinkit": "^1.5.1",
    "react-native-splash-screen": "^3.3.0",
    "react-native-sticky-keyboard-accessory": "^0.1.3",
    "react-native-svg": "^12.3.0",
    "react-native-swipe-item": "^0.6.1",
    "react-native-swipe-list-view": "^3.2.9",
    "react-native-system-navigation-bar": "^1.0.4",
    "react-native-system-setting": "^1.7.6",
    "react-native-text-gradient": "^0.1.7",
    "react-native-text-size": "^4.0.0-rc.1",
    "react-native-toast-message": "^2.1.5",
    "react-native-track-player": "^2.1.3",
    "react-native-typing-animation": "^0.1.7",
    "react-native-user-avatar": "^1.0.8",
    "react-native-uuid": "^2.0.1",
    "react-native-vector-icons": "^9.1.0",
    "react-native-video": "^5.2.0",
    "react-native-video-player": "^0.12.0",
    "react-native-view-overflow": "^0.0.5",
    "react-native-view-pdf": "^0.13.2",
    "react-native-view-shot": "^3.3.0",
    "react-native-webrtc": "^1.100.1",
    "react-native-webview": "^11.22.2",
    "react-redux": "^8.0.2",
    "react-signalr": "^0.2.11",
    "readable-stream": "^1.0.33",
    "realm": "^10.19.5",
    "redux": "^4.2.0",
    "rn-android-keyboard-adjust": "^2.0.0",
    "rn-fetch-blob": "^0.12.0",
    "rn-id-blurview": "^1.2.2",
    "rrule": "^2.7.1",
    "sharingan-rn-modal-dropdown": "^1.4.0",
    "stream-browserify": "^1.0.0",
    "string_decoder": "^0.10.31",
    "thenby": "^1.3.4",
    "timers-browserify": "^1.4.2",
    "tty-browserify": "^0.0.0",
    "url": "^0.10.3",
    "use-memo-one": "^1.1.2",
    "util": "^0.10.4",
    "vm-browserify": "^0.0.4"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9",
    "@babel/runtime": "^7.12.5",
    "@react-native-community/eslint-config": "^2.0.0",
    "@types/react-native-vector-icons": "^6.4.10",
    "babel-jest": "^26.6.3",
    "eslint": "^7.32.0",
    "jest": "^26.6.3",
    "metro-react-native-babel-preset": "^0.67.0",
    "react-test-renderer": "17.0.2"
  },
  "jest": {
    "preset": "react-native"
  },
  "react-native": {
    "zlib": "browserify-zlib",
    "console": "console-browserify",
    "constants": "constants-browserify",
    "crypto": "react-native-crypto",
    "dns": "dns.js",
    "net": "react-native-tcp",
    "domain": "domain-browser",
    "http": "react-native-http",
    "https": "https-browserify",
    "os": "react-native-os",
    "path": "path-browserify",
    "querystring": "querystring-es3",
    "fs": "react-native-level-fs",
    "_stream_transform": "readable-stream/transform",
    "_stream_readable": "readable-stream/readable",
    "_stream_writable": "readable-stream/writable",
    "_stream_duplex": "readable-stream/duplex",
    "_stream_passthrough": "readable-stream/passthrough",
    "dgram": "react-native-udp",
    "stream": "stream-browserify",
    "timers": "timers-browserify",
    "tty": "tty-browserify",
    "vm": "vm-browserify",
    "tls": false
  },
  "browser": {
    "zlib": "browserify-zlib",
    "console": "console-browserify",
    "constants": "constants-browserify",
    "crypto": "react-native-crypto",
    "dns": "dns.js",
    "net": "react-native-tcp",
    "domain": "domain-browser",
    "http": "react-native-http",
    "https": "https-browserify",
    "os": "react-native-os",
    "path": "path-browserify",
    "querystring": "querystring-es3",
    "fs": "react-native-level-fs",
    "_stream_transform": "readable-stream/transform",
    "_stream_readable": "readable-stream/readable",
    "_stream_writable": "readable-stream/writable",
    "_stream_duplex": "readable-stream/duplex",
    "_stream_passthrough": "readable-stream/passthrough",
    "dgram": "react-native-udp",
    "stream": "stream-browserify",
    "timers": "timers-browserify",
    "tty": "tty-browserify",
    "vm": "vm-browserify",
    "tls": false
  }
}
takameyer commented 1 year ago
"react-native-reanimated": "^2.9.0",

This is not compatible with Realm v10 on Android. We have a release candidate for v11.

Can you try:

npm install realm@11.0.0-rc.0
fukemy commented 1 year ago

ok i will try and feedback u later bro

fukemy commented 1 year ago

Hi bro, im install realm@11.0.0-rc.0, but got this error when run android

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle. ERROR ReferenceError: Can't find variable: Realm

Can u help i tried to switch back to v10 and it working again

fukemy commented 1 year ago

i checked in Android Studio and see the Realm library Ảnh chụp Màn hình 2022-08-23 lúc 20 12 47 And the version realm@11.0.0-rc.0 work normally with IOS

fukemy commented 1 year ago

here is full of log

 BUNDLE  ./index.js 

 WARN  `new NativeEventEmitter()` was called with a non-null argument without the required `addListener` method.
 WARN  `new NativeEventEmitter()` was called with a non-null argument without the required `removeListeners` method.
 WARN  ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'.
 WARN  Require cycle: node_modules/react-native/Libraries/Network/fetch.js -> node_modules/whatwg-fetch/dist/fetch.umd.js -> node_modules/react-native/Libraries/Network/fetch.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.
 ERROR  ReferenceError: Can't find variable: Realm
 ERROR  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.
fukemy commented 1 year ago

here is installed package Ảnh chụp Màn hình 2022-08-23 lúc 20 26 01

fukemy commented 1 year ago

here is the first class of my screen( as first class call to Realm queryDb)

import RealmContext from '../../context/RealmContext'
const { useRealm } = RealmContext

export const RecentlyScreen = ({ navigation }) => {

  const realm = useRealm()

  const _getRoomListFromDb = () => {
    try{
      console.log('before _getRoomListFromDb', realm)
      const roomDb = realm.objects('Room')
      console.log('roomDb', roomDb)
      if(roomDb != null){
        const roomValue = roomDb.map(r => JSON.parse(r.value))
        const finalVal = sortRoom(roomValue)
        console.log('finalVal', finalVal.map(f => f.RoomName))
        if (finalVal.length > 0) {
          setRoomList([...finalVal])
        }
      }
    }catch(error){
      console.log('_getRoomListFromDb', error)
    }
}

then after downgrade version i got other error, please see the log below:

'before _getRoomListFromDb', {}
2022-08-23 20:51:58.016 9161-9215/com.vedaxlink I/ReactNativeJS: 'roomDb', { '0': [Error],
      '1': [Error],
      '2': [Error],
      '3': [Error],
      '4': [Error],
      '5': [Error],
      '6': [Error],
      '7': [Error],
      '8': [Error],
      '9': [Error],
      '10': [Error],
      '11': [Error],
      '12': [Error],
      '13': [Error],
      '14': [Error],
      '15': [Error] }
2022-08-23 20:51:58.016 9161-9215/com.vedaxlink I/ReactNativeJS: '_getRoomListFromDb', { [SyntaxError: JSON Parse error: Unexpected identifier "undefined"]
      line: 221349,
      column: 30,
      sourceURL: 'http://localhost:8081/index.bundle?platform=android&dev=true&minify=false&app=com.vedaxlink&modulesOnly=false&runModule=true' }
2022-08-23 20:51:58.116 9161-9236/com.vedaxlink D/SoLoader: libimagepipeline.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 20:51:58.116 9161-9236/com.vedaxlink D/SoLoader: libimagepipeline.so found on /data/app/~~1CXJjB8e2g7VtQvW2YLGlA==/com.vedaxlink-URa176LTj6Oo-NOtVHS-jQ==/lib/arm64
2022-08-23 20:51:58.116 9161-9236/com.vedaxlink D/SoLoader: Not resolving dependencies for libimagepipeline.so
2022-08-23 20:51:58.264 9161-9215/com.vedaxlink I/ReactNativeJS: [2022-08-23T13:51:58.264Z] Information: Using HubProtocol 'json'.
2022-08-23 20:51:58.295 9161-9220/com.vedaxlink A/libc: Fatal signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x721fbefee8 in tid 9220 (HeapHelper), pid 9161 (com.vedaxlink)
takameyer commented 1 year ago

After doing an install of v11 you will have to do a clean build of android:

cd android
./gradlew clean

Can you try that and let us know if it works?

fukemy commented 1 year ago

i got back to first error, the app stuck in splashscreen

Ảnh chụp Màn hình 2022-08-23 lúc 21 13 12 here is full log from metro:

Last login: Tue Aug 23 20:00:23 on ttys004
/Users/vedax/Desktop/VedaxLink/node_modules/react-native/scripts/launchPackager.command ; exit;
vedax@Mac-mini-cua-Company ~ % /Users/vedax/Desktop/VedaxLink/node_modules/react-native/scripts/launchPackager.command ; exit;

                        #######                       
                   ################                   
                #########     #########               
            #########             ##########          
        #########        ######        #########      
       ##########################################     
      #####      #####################       #####    
      #####          ##############          #####    
      #####    ###       ######       ###    #####    
      #####    #######            #######    #####    
      #####    ###########    ###########    #####    
      #####    ##########################    #####    
      #####    ##########################    #####    
      #####      ######################     ######    
       ######        #############        #######     
         #########        ####       #########        
              #########          #########            
                  ######### #########                 
                       #########                      

                    Welcome to Metro!
              Fast - Scalable - Integrated

To reload the app press "r"
To open developer menu press "d"

watchman warning:  Recrawled this watch 9 times, most recently because:
MustScanSubDirs UserDroppedTo resolve, please review the information on
https://facebook.github.io/watchman/docs/troubleshooting.html#recrawl
To clear this warning, run:
`watchman watch-del '/Users/vedax/Desktop/VedaxLink' ; watchman watch-project '/Users/vedax/Desktop/VedaxLink'`

Recrawled this watch 9 times, most recently because:
MustScanSubDirs UserDroppedTo resolve, please review the information on
https://facebook.github.io/watchman/docs/troubleshooting.html#recrawl
To clear this warning, run:
`watchman watch-del '/Users/vedax/Desktop/VedaxLink' ; watchman watch-project '/Users/vedax/Desktop/VedaxLink'`

 BUNDLE  ./index.js 

 WARN  `new NativeEventEmitter()` was called with a non-null argument without the required `addListener` method.
 WARN  `new NativeEventEmitter()` was called with a non-null argument without the required `removeListeners` method.
 WARN  ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'.
 WARN  Require cycle: node_modules/react-native/Libraries/Network/fetch.js -> node_modules/whatwg-fetch/dist/fetch.umd.js -> node_modules/react-native/Libraries/Network/fetch.js

Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.
 ERROR  ReferenceError: Can't find variable: Realm
 ERROR  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.
 ERROR  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.

here is full log from android studio:

2022-08-23 21:12:28.980 11937-11937/? I/com.vedaxlink: Late-enabling -Xcheck:jni
2022-08-23 21:12:29.012 11937-11937/? I/com.vedaxlink: Unquickening 12 vdex files!
2022-08-23 21:12:28.980 11937-11937/? I/com.vedaxlink: Late-enabling -Xcheck:jni
2022-08-23 21:12:29.012 11937-11937/? I/com.vedaxlink: Unquickening 12 vdex files!
2022-08-23 21:12:28.980 11937-11937/? I/com.vedaxlink: Late-enabling -Xcheck:jni
2022-08-23 21:12:29.012 11937-11937/? I/com.vedaxlink: Unquickening 12 vdex files!
2022-08-23 21:12:30.351 11937-11937/com.vedaxlink D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2022-08-23 21:12:30.353 11937-11937/com.vedaxlink D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2022-08-23 21:12:30.470 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: locked dso store /data/user/0/com.vedaxlink/lib-main
2022-08-23 21:12:30.478 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: deps mismatch on deps store: regenerating
2022-08-23 21:12:30.479 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: so store dirty: regenerating
2022-08-23 21:12:30.686 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libbutter.so: deferring to libdir
2022-08-23 21:12:30.686 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libc++_shared.so: deferring to libdir
2022-08-23 21:12:30.688 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libevent-2.1.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libevent_core-2.1.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libevent_extra-2.1.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libfabricjni.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libfb.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libfbjni.so: deferring to libdir
2022-08-23 21:12:30.690 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libflipper.so: deferring to libdir
2022-08-23 21:12:30.691 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libfolly_futures.so: deferring to libdir
2022-08-23 21:12:30.691 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libfolly_json.so: deferring to libdir
2022-08-23 21:12:30.691 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libgifimage.so: deferring to libdir
2022-08-23 21:12:30.691 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libglog.so: deferring to libdir
2022-08-23 21:12:30.691 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libglog_init.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libimagepipeline.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjingle_peerconnection_so.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjniPdfium.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjsc.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjscexecutor.so: deferring to libdir
2022-08-23 21:12:30.693 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjsi.so: deferring to libdir
2022-08-23 21:12:30.694 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjsijniprofiler.so: deferring to libdir
2022-08-23 21:12:30.694 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libjsinspector.so: deferring to libdir
2022-08-23 21:12:30.694 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/liblogger.so: deferring to libdir
2022-08-23 21:12:30.694 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libmapbufferjni.so: deferring to libdir
2022-08-23 21:12:30.695 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libmodft2.so: deferring to libdir
2022-08-23 21:12:30.695 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libmodpdfium.so: deferring to libdir
2022-08-23 21:12:30.695 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libmodpng.so: deferring to libdir
2022-08-23 21:12:30.695 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libnative-filters.so: deferring to libdir
2022-08-23 21:12:30.696 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libnative-imagetranscoder.so: deferring to libdir
2022-08-23 21:12:30.696 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libopencv_java3.so: deferring to libdir
2022-08-23 21:12:30.696 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_codegen_rncore.so: deferring to libdir
2022-08-23 21:12:30.696 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_config.so: deferring to libdir
2022-08-23 21:12:30.696 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_debug.so: deferring to libdir
2022-08-23 21:12:30.697 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_nativemodule_core.so: deferring to libdir
2022-08-23 21:12:30.697 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_animations.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_attributedstring.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_componentregistry.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_core.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_debug.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_graphics.so: deferring to libdir
2022-08-23 21:12:30.698 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_imagemanager.so: deferring to libdir
2022-08-23 21:12:30.700 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_leakchecker.so: deferring to libdir
2022-08-23 21:12:30.701 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_mapbuffer.so: deferring to libdir
2022-08-23 21:12:30.701 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_mounting.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_runtimescheduler.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_scheduler.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_telemetry.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_templateprocessor.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_textlayoutmanager.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_render_uimanager.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreact_utils.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreactnativeblob.so: deferring to libdir
2022-08-23 21:12:30.702 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreactnativejni.so: deferring to libdir
2022-08-23 21:12:30.703 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreactnativemmkv.so: deferring to libdir
2022-08-23 21:12:30.703 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreactnativeutilsjni.so: deferring to libdir
2022-08-23 21:12:30.703 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreactperfloggerjni.so: deferring to libdir
2022-08-23 21:12:30.703 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librealm.so: deferring to libdir
2022-08-23 21:12:30.703 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libreanimated.so: deferring to libdir
2022-08-23 21:12:30.704 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librrc_image.so: deferring to libdir
2022-08-23 21:12:30.704 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librrc_root.so: deferring to libdir
2022-08-23 21:12:30.705 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librrc_text.so: deferring to libdir
2022-08-23 21:12:30.705 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librrc_unimplementedview.so: deferring to libdir
2022-08-23 21:12:30.705 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/librrc_view.so: deferring to libdir
2022-08-23 21:12:30.705 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libruntimeexecutor.so: deferring to libdir
2022-08-23 21:12:30.705 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libturbomodulejsijni.so: deferring to libdir
2022-08-23 21:12:30.706 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libucrop.so: deferring to libdir
2022-08-23 21:12:30.706 11937-11937/com.vedaxlink D/ApkSoSource: not allowing consideration of lib/arm64-v8a/libyoga.so: deferring to libdir
2022-08-23 21:12:30.707 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: regenerating DSO store com.facebook.soloader.ApkSoSource
2022-08-23 21:12:30.708 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: Finished regenerating DSO store com.facebook.soloader.ApkSoSource
2022-08-23 21:12:30.710 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: starting syncer worker
2022-08-23 21:12:30.739 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.vedaxlink/lib-main (from syncer thread)
2022-08-23 21:12:30.739 11937-11937/com.vedaxlink V/fb-UnpackingSoSource: not releasing dso store lock for /data/user/0/com.vedaxlink/lib-main (syncer thread started)
2022-08-23 21:12:30.782 11937-11937/com.vedaxlink D/SoLoader: libjscexecutor.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:30.782 11937-11937/com.vedaxlink D/SoLoader: libjscexecutor.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:30.782 11937-11937/com.vedaxlink D/SoLoader: Not resolving dependencies for libjscexecutor.so
2022-08-23 21:12:30.835 11937-11937/com.vedaxlink D/JavaScriptCore.Version: 250230.2.1
2022-08-23 21:12:31.060 11937-11967/com.vedaxlink D/SoLoader: libfbjni.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:31.060 11937-11967/com.vedaxlink D/SoLoader: libfbjni.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:31.060 11937-11967/com.vedaxlink D/SoLoader: Not resolving dependencies for libfbjni.so
2022-08-23 21:12:31.064 11937-11967/com.vedaxlink D/SoLoader: libflipper.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:31.064 11937-11967/com.vedaxlink D/SoLoader: libflipper.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:31.064 11937-11967/com.vedaxlink D/SoLoader: Not resolving dependencies for libflipper.so
2022-08-23 21:12:31.163 11937-11937/com.vedaxlink W/com.vedaxlink: Accessing hidden field Landroid/view/View;->mKeyedTags:Landroid/util/SparseArray; (greylist, reflection, allowed)
2022-08-23 21:12:31.165 11937-11937/com.vedaxlink W/com.vedaxlink: Accessing hidden field Landroid/view/View;->mListenerInfo:Landroid/view/View$ListenerInfo; (greylist, reflection, allowed)
2022-08-23 21:12:31.165 11937-11937/com.vedaxlink W/com.vedaxlink: Accessing hidden field Landroid/view/View$ListenerInfo;->mOnClickListener:Landroid/view/View$OnClickListener; (greylist, reflection, allowed)
2022-08-23 21:12:31.181 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin Inspector
2022-08-23 21:12:31.181 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin React
2022-08-23 21:12:31.184 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin Databases
2022-08-23 21:12:31.186 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin Preferences
2022-08-23 21:12:31.186 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin CrashReporter
2022-08-23 21:12:31.189 11937-11937/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin Network
2022-08-23 21:12:31.203 11937-11966/com.vedaxlink W/System.err: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
2022-08-23 21:12:31.204 11937-11983/com.vedaxlink D/libEGL: loaded /vendor/lib64/egl/libEGL_emulation.so
2022-08-23 21:12:31.204 11937-11966/com.vedaxlink W/System.err: SLF4J: Defaulting to no-operation (NOP) logger implementation
2022-08-23 21:12:31.204 11937-11966/com.vedaxlink W/System.err: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
2022-08-23 21:12:31.207 11937-11983/com.vedaxlink D/libEGL: loaded /vendor/lib64/egl/libGLESv1_CM_emulation.so
2022-08-23 21:12:31.214 11937-11983/com.vedaxlink D/libEGL: loaded /vendor/lib64/egl/libGLESv2_emulation.so
2022-08-23 21:12:31.484 11937-11937/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2022-08-23 21:12:31.484 11937-11937/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2022-08-23 21:12:31.523 11937-11981/com.vedaxlink D/HostConnection: HostConnection::get() New Host Connection established 0xb400007319ab4610, tid 11981
2022-08-23 21:12:31.529 11937-11981/com.vedaxlink 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_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer ANDROID_EMU_vulkan_ignored_handles ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_vulkan_free_memory_sync ANDROID_EMU_vulkan_shader_float16_int8 ANDROID_EMU_vulkan_async_queue_submit ANDROID_EMU_sync_buffer_data 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-08-23 21:12:31.539 11937-11981/com.vedaxlink W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
2022-08-23 21:12:31.546 11937-11981/com.vedaxlink D/EGL_emulation: eglCreateContext: 0xb400007309b623a0: maj 3 min 0 rcv 3
2022-08-23 21:12:31.561 11937-11981/com.vedaxlink D/EGL_emulation: eglMakeCurrent: 0xb400007309b623a0: ver 3 0 (tinfo 0xb4000072a9b28e00) (first time)
2022-08-23 21:12:31.614 11937-11981/com.vedaxlink I/Gralloc4: mapper 4.x is not supported
2022-08-23 21:12:31.615 11937-11981/com.vedaxlink D/HostConnection: createUnique: call
2022-08-23 21:12:31.615 11937-11981/com.vedaxlink D/HostConnection: HostConnection::get() New Host Connection established 0xb400007319ab7f10, tid 11981
2022-08-23 21:12:31.615 11937-11981/com.vedaxlink D/goldfish-address-space: allocate: Ask for block of size 0x100
2022-08-23 21:12:31.615 11937-11981/com.vedaxlink D/goldfish-address-space: allocate: ioctl allocate returned offset 0x1dfff8000 size 0x8000
2022-08-23 21:12:31.618 11937-11981/com.vedaxlink 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_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer ANDROID_EMU_vulkan_ignored_handles ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_vulkan_free_memory_sync ANDROID_EMU_vulkan_shader_float16_int8 ANDROID_EMU_vulkan_async_queue_submit ANDROID_EMU_sync_buffer_data 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-08-23 21:12:31.747 11937-11937/com.vedaxlink W/unknown:ReactNative: Packager connection already open, nooping.
2022-08-23 21:12:32.431 11937-11970/com.vedaxlink D/SoLoader: libreactnativejni.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:32.431 11937-11970/com.vedaxlink D/SoLoader: libreactnativejni.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:32.431 11937-11970/com.vedaxlink D/SoLoader: Not resolving dependencies for libreactnativejni.so
2022-08-23 21:12:36.083 11937-11990/com.vedaxlink V/AsyncStorageExpoMigration: No scoped database found
2022-08-23 21:12:36.098 11937-11990/com.vedaxlink D/InstallReferrerState: FEATURE_NOT_SUPPORTED
2022-08-23 21:12:36.116 11937-11990/com.vedaxlink I/TetheringManager: registerTetheringEventCallback:com.vedaxlink
2022-08-23 21:12:36.137 11937-11990/com.vedaxlink I/org.webrtc.Logging: NativeLibrary: Loading native library: jingle_peerconnection_so
2022-08-23 21:12:36.137 11937-11990/com.vedaxlink I/org.webrtc.Logging: LibraryLoader: Loading library: jingle_peerconnection_so
2022-08-23 21:12:36.143 11937-11990/com.vedaxlink I/org.webrtc.Logging: PeerConnectionFactory: PeerConnectionFactory was initialized without an injected Loggable. Any existing Loggable will be deleted.
2022-08-23 21:12:36.145 11937-11990/com.vedaxlink D/HostConnection: HostConnection::get() New Host Connection established 0xb400007319ab7cd0, tid 11990
2022-08-23 21:12:36.148 11937-11990/com.vedaxlink 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_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer ANDROID_EMU_vulkan_ignored_handles ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_vulkan_free_memory_sync ANDROID_EMU_vulkan_shader_float16_int8 ANDROID_EMU_vulkan_async_queue_submit ANDROID_EMU_sync_buffer_data 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-08-23 21:12:36.148 11937-11990/com.vedaxlink I/org.webrtc.Logging: EglBase14Impl: Using OpenGL ES version 2
2022-08-23 21:12:36.149 11937-11990/com.vedaxlink D/EGL_emulation: eglCreateContext: 0xb400007309b2bd40: maj 3 min 0 rcv 3
2022-08-23 21:12:36.190 11937-11990/com.vedaxlink I/org.webrtc.Logging: WebRtcAudioManagerExternal: Sample rate is set to 44100 Hz
2022-08-23 21:12:36.191 11937-11990/com.vedaxlink I/org.webrtc.Logging: WebRtcAudioManagerExternal: Sample rate is set to 44100 Hz
2022-08-23 21:12:36.192 11937-11990/com.vedaxlink I/org.webrtc.Logging: JavaAudioDeviceModule: createAudioDeviceModule
2022-08-23 21:12:36.192 11937-11990/com.vedaxlink I/org.webrtc.Logging: JavaAudioDeviceModule: HW NS will not be used.
2022-08-23 21:12:36.193 11937-11990/com.vedaxlink I/org.webrtc.Logging: JavaAudioDeviceModule: HW AEC will not be used.
2022-08-23 21:12:36.195 11937-11990/com.vedaxlink I/org.webrtc.Logging: WebRtcAudioEffectsExternal: ctor@[name=create_react_context, id=1130]
2022-08-23 21:12:36.195 11937-11990/com.vedaxlink I/org.webrtc.Logging: WebRtcAudioRecordExternal: ctor@[name=create_react_context, id=1130]
2022-08-23 21:12:36.196 11937-11990/com.vedaxlink I/org.webrtc.Logging: WebRtcAudioTrackExternal: ctor@[name=create_react_context, id=1130]
2022-08-23 21:12:36.269 11937-11995/com.vedaxlink I/org.webrtc.Logging: PeerConnectionFactory: onWorkerThreadReady
2022-08-23 21:12:36.269 11937-11994/com.vedaxlink I/org.webrtc.Logging: PeerConnectionFactory: onNetworkThreadReady
2022-08-23 21:12:36.269 11937-11996/com.vedaxlink I/org.webrtc.Logging: PeerConnectionFactory: onSignalingThreadReady
2022-08-23 21:12:36.273 11937-11990/com.vedaxlink I/CameraManagerGlobal: Connecting to camera service
2022-08-23 21:12:36.293 11937-11990/com.vedaxlink D/com.oney.WebRTCModule.WebRTCModule: Creating video capturer using Camera2 API.
2022-08-23 21:12:36.340 11937-11990/com.vedaxlink W/unknown:ReactContext: initializeMessageQueueThreads() is called.
2022-08-23 21:12:36.352 11937-11937/com.vedaxlink W/unknown:ReactNative: Packager connection already open, nooping.
2022-08-23 21:12:36.499 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager
2022-08-23 21:12:36.505 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode
2022-08-23 21:12:36.512 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager
2022-08-23 21:12:36.515 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager
2022-08-23 21:12:36.517 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager
2022-08-23 21:12:36.520 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode
2022-08-23 21:12:36.523 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager
2022-08-23 21:12:36.532 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager
2022-08-23 21:12:36.534 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode
2022-08-23 21:12:36.535 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager
2022-08-23 21:12:36.541 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode
2022-08-23 21:12:36.541 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager
2022-08-23 21:12:36.544 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager
2022-08-23 21:12:36.546 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode
2022-08-23 21:12:36.548 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager
2022-08-23 21:12:36.551 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager
2022-08-23 21:12:36.554 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode
2022-08-23 21:12:36.555 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager
2022-08-23 21:12:36.555 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode
2022-08-23 21:12:36.557 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager
2022-08-23 21:12:36.565 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode
2022-08-23 21:12:36.583 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager
2022-08-23 21:12:36.587 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode
2022-08-23 21:12:36.595 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager
2022-08-23 21:12:36.601 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager
2022-08-23 21:12:36.603 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode
2022-08-23 21:12:36.606 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager
2022-08-23 21:12:36.608 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.slider.ReactSliderManager
2022-08-23 21:12:36.614 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.slider.ReactSliderManager$ReactSliderShadowNode
2022-08-23 21:12:36.615 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class org.reactnative.maskedview.RNCMaskedViewManager
2022-08-23 21:12:36.616 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.mrousavy.blurhash.BlurhashViewManager
2022-08-23 21:12:36.617 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.mpiannucci.reactnativecontextmenu.ContextMenuManager
2022-08-23 21:12:36.619 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.dylanvann.fastimage.FastImageViewManager
2022-08-23 21:12:36.625 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager
2022-08-23 21:12:36.634 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager
2022-08-23 21:12:36.637 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnimagekeyboard.ReactMediaInputManager
2022-08-23 21:12:36.641 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativeioscontextmenu.IosContextMenuViewManager
2022-08-23 21:12:36.649 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager
2022-08-23 21:12:36.651 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativepagerview.PagerViewViewManager
2022-08-23 21:12:36.666 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rectanglescanner.RNRectangleScannerManager
2022-08-23 21:12:36.677 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager
2022-08-23 21:12:36.681 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager
2022-08-23 21:12:36.685 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewShadowNode
2022-08-23 21:12:36.687 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager
2022-08-23 21:12:36.691 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager
2022-08-23 21:12:36.699 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager
2022-08-23 21:12:36.700 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager
2022-08-23 21:12:36.702 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager
2022-08-23 21:12:36.702 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.SearchBarManager
2022-08-23 21:12:36.712 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.react.rnspinkit.RNSpinkit
2022-08-23 21:12:36.714 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$GroupViewManager
2022-08-23 21:12:36.718 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RenderableShadowNode
2022-08-23 21:12:36.719 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PathViewManager
2022-08-23 21:12:36.729 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$CircleViewManager
2022-08-23 21:12:36.730 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$EllipseViewManager
2022-08-23 21:12:36.732 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LineViewManager
2022-08-23 21:12:36.733 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RectViewManager
2022-08-23 21:12:36.734 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextViewManager
2022-08-23 21:12:36.735 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TSpanViewManager
2022-08-23 21:12:36.735 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextPathViewManager
2022-08-23 21:12:36.736 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ImageViewManager
2022-08-23 21:12:36.738 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ClipPathViewManager
2022-08-23 21:12:36.739 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$DefsViewManager
2022-08-23 21:12:36.740 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$UseViewManager
2022-08-23 21:12:36.742 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$SymbolManager
2022-08-23 21:12:36.747 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LinearGradientManager
2022-08-23 21:12:36.748 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RadialGradientManager
2022-08-23 21:12:36.749 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PatternManager
2022-08-23 21:12:36.751 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MaskManager
2022-08-23 21:12:36.752 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ForeignObjectManager
2022-08-23 21:12:36.754 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MarkerManager
2022-08-23 21:12:36.760 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.SvgViewManager
2022-08-23 21:12:36.761 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class iyegoroff.RNTextGradient.Linear.RNLinearTextGradientManager
2022-08-23 21:12:36.762 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class iyegoroff.RNTextGradient.Linear.RNShadowLinearTextGradient
2022-08-23 21:12:36.763 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class iyegoroff.RNTextGradient.Linear.RNVirtualLinearTextGradientManager
2022-08-23 21:12:36.765 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class iyegoroff.RNTextGradient.Linear.RNVirtualShadowLinearTextGradient
2022-08-23 21:12:36.766 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.brentvatne.react.ReactVideoViewManager
2022-08-23 21:12:36.767 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.entria.views.RNViewOverflowManager
2022-08-23 21:12:36.768 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rumax.reactnative.pdfviewer.PDFViewManager
2022-08-23 21:12:36.769 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.oney.WebRTCModule.RTCVideoViewManager
2022-08-23 21:12:36.770 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.webview.RNCWebViewManager
2022-08-23 21:12:36.786 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.blurview.BlurViewModule
2022-08-23 21:12:36.788 11937-12000/com.vedaxlink W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.wix.reactnativekeyboardinput.CustomKeyboardRootViewManager
2022-08-23 21:12:36.810 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden field Ljava/lang/reflect/Field;->accessFlags:I (greylist, reflection, allowed)
2022-08-23 21:12:36.815 11937-12000/com.vedaxlink W/unknown:ReactContext: initializeMessageQueueThreads() is called.
2022-08-23 21:12:36.820 11937-12000/com.vedaxlink D/SoLoader: libyoga.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:36.820 11937-12000/com.vedaxlink D/SoLoader: libyoga.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:36.820 11937-12000/com.vedaxlink D/SoLoader: Not resolving dependencies for libyoga.so
2022-08-23 21:12:36.930 11937-12000/com.vedaxlink I/flipper: flipper: FlipperClient::addPlugin Fresco
2022-08-23 21:12:37.640 11937-11999/com.vedaxlink D/SoLoader: libreactnativeblob.so not found on /data/data/com.vedaxlink/lib-main
2022-08-23 21:12:37.640 11937-11999/com.vedaxlink D/SoLoader: libreactnativeblob.so found on /data/app/~~hai9b91e3xiVoyA2DMmCyQ==/com.vedaxlink-8O1J3HlOBEvqFNWnuchOlw==/lib/arm64
2022-08-23 21:12:37.640 11937-11999/com.vedaxlink D/SoLoader: Not resolving dependencies for libreactnativeblob.so
2022-08-23 21:12:37.681 11937-11999/com.vedaxlink W/ReactNativeJS: `new NativeEventEmitter()` was called with a non-null argument without the required `addListener` method.
2022-08-23 21:12:37.682 11937-11999/com.vedaxlink W/ReactNativeJS: `new NativeEventEmitter()` was called with a non-null argument without the required `removeListeners` method.
2022-08-23 21:12:37.683 11937-12000/com.vedaxlink I/WebViewFactory: Loading com.google.android.webview version 91.0.4472.114 (code 447211484)
2022-08-23 21:12:37.690 11937-12000/com.vedaxlink I/com.vedaxlink: The ClassLoaderContext is a special shared library.
2022-08-23 21:12:37.694 11937-12000/com.vedaxlink D/nativeloader: classloader namespace configured for unbundled product apk. library_path=/product/app/WebViewGoogle64/lib/arm64:/product/app/WebViewGoogle64/WebViewGoogle64.apk!/lib/arm64-v8a:/product/app/TrichromeLibrary64/TrichromeLibrary64.apk!/lib/arm64-v8a:/product/lib64:/system/product/lib64
2022-08-23 21:12:37.758 11937-12000/com.vedaxlink I/com.vedaxlink: The ClassLoaderContext is a special shared library.
2022-08-23 21:12:37.761 11937-12000/com.vedaxlink D/nativeloader: classloader namespace configured for unbundled product apk. library_path=/product/app/WebViewGoogle64/lib/arm64:/product/app/WebViewGoogle64/WebViewGoogle64.apk!/lib/arm64-v8a:/product/app/TrichromeLibrary64/TrichromeLibrary64.apk!/lib/arm64-v8a:/product/lib64:/system/product/lib64
2022-08-23 21:12:37.845 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/os/Trace;->isTagEnabled(J)Z (greylist, reflection, allowed)
2022-08-23 21:12:37.845 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/os/Trace;->traceBegin(JLjava/lang/String;)V (greylist, reflection, allowed)
2022-08-23 21:12:37.845 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/os/Trace;->traceEnd(J)V (greylist, reflection, allowed)
2022-08-23 21:12:37.845 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/os/Trace;->asyncTraceBegin(JLjava/lang/String;I)V (greylist, reflection, allowed)
2022-08-23 21:12:37.845 11937-12000/com.vedaxlink W/com.vedaxlink: Accessing hidden method Landroid/os/Trace;->asyncTraceEnd(JLjava/lang/String;I)V (greylist, reflection, allowed)
2022-08-23 21:12:37.866 11937-12013/com.vedaxlink I/cr_VariationsUtils: Failed reading seed file "/data/user/0/com.vedaxlink/app_webview/variations_seed_new"
2022-08-23 21:12:37.867 11937-12013/com.vedaxlink I/cr_VariationsUtils: Failed reading seed file "/data/user/0/com.vedaxlink/app_webview/variations_seed"
2022-08-23 21:12:37.867 11937-12013/com.vedaxlink I/cr_VariationsUtils: Requesting new seed from IVariationsSeedServer
2022-08-23 21:12:37.888 11937-12000/com.vedaxlink I/cr_LibraryLoader: Loaded native library version number "91.0.4472.114"
2022-08-23 21:12:37.895 11937-12000/com.vedaxlink I/cr_CachingUmaRecorder: Flushed 5 samples from 5 histograms.
2022-08-23 21:12:38.157 11937-11999/com.vedaxlink W/ReactNativeJS: ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'.
2022-08-23 21:12:38.205 11937-11999/com.vedaxlink W/ReactNativeJS: Require cycle: node_modules/react-native/Libraries/Network/fetch.js -> node_modules/whatwg-fetch/dist/fetch.umd.js -> node_modules/react-native/Libraries/Network/fetch.js

    Require cycles are allowed, but can result in uninitialized values. Consider refactoring to remove the need for a cycle.
2022-08-23 21:12:38.220 11937-11999/com.vedaxlink E/ReactNativeJS: ReferenceError: Can't find variable: Realm
2022-08-23 21:12:38.250 11937-11999/com.vedaxlink E/ReactNativeJS: 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.
2022-08-23 21:12:38.346 11937-11937/com.vedaxlink W/unknown:ReactContext: initializeMessageQueueThreads() is called.
2022-08-23 21:12:38.348 11937-11999/com.vedaxlink E/ReactNativeJS: 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.
takameyer commented 1 year ago

Try clearing all caches:

rm -rf node_modules
npm cache clean -f
watchman watch-del-all
rm -rf $TMPDIR/metro*
rm -rf $TMPDIR/react-native*
npm install

Start the react native bundler with clean cache:

npx react-native start --reset-cache

Then do the clean android build step i gave you earlier. Let me know if this works :)

fukemy commented 1 year ago

Hi bro, i follow all the step but it's not working, still the error: Can't find variable: Realm


vedax@Mac-mini-cua-Company VedaxLink % rm -rf node_modules
vedax@Mac-mini-cua-Company VedaxLink % npm cache clean -f
npm WARN using --force Recommended protections disabled.
vedax@Mac-mini-cua-Company VedaxLink % watchman watch-del-all
{
    "version": "2022.03.21.00",
    "roots": [
        "/Users/vedax/Desktop/VedaxLink",
        "/Users/vedax/Desktop/TestReact",
        "/Users/vedax"
    ]
}
vedax@Mac-mini-cua-Company VedaxLink % 
rm -rf $TMPDIR/metro*
vedax@Mac-mini-cua-Company VedaxLink % rm -rf $TMPDIR/react-native*
zsh: no matches found: /var/folders/8x/g9z5th311jq00tjgd53dhxsr0000gn/T//react-native*
vedax@Mac-mini-cua-Company VedaxLink % npm install
vedax@Mac-mini-cua-Company VedaxLink % cd android 
vedax@Mac-mini-cua-Company android % ./gradlew clean
vedax@Mac-mini-cua-Company VedaxLink % npx react-native start --reset-cache

vedax@Mac-mini-cua-Company VedaxLink % npx react-native start --reset-cache

                        #######                       
                   ################                   
                #########     #########               
            #########             ##########          
        #########        ######        #########      
       ##########################################     
      #####      #####################       #####    
      #####          ##############          #####    
      #####    ###       ######       ###    #####    
      #####    #######            #######    #####    
      #####    ###########    ###########    #####    
      #####    ##########################    #####    
      #####    ##########################    #####    
      #####      ######################     ######    
       ######        #############        #######     
         #########        ####       #########        
              #########          #########            
                  ######### #########                 
                       #########                      

warning: the transform cache was reset.

vedax@Mac-mini-cua-Company VedaxLink % npm run android --reset-cache
fukemy commented 1 year ago

i tried to install v11 on my other small project, then it run without problem? May be it's conflict with other lib?

takameyer commented 1 year ago

v11 should not have a conflict with any libraries. Are you also using @realm/react v3.2.0?

fukemy commented 1 year ago

yes bro Im using @realm/react v3.2.0

takameyer commented 1 year ago

Just a hunch, in the code where you import Realm, can you change that to import from realm instead of @realm/react? Perhaps the bundler is having a conflict there.

import {Realm} from "@realm/react"
//change to
import {Realm} from "realm"
fukemy commented 1 year ago

Im tried to modify 2 times:

-First split Realm into Realm package

import { createRealmContext } from '@realm/react'
import {Realm} from "realm"

Above code is from RealmContext.js, but still not working for Android, still last error message

Screen Shot 2022-08-24 at 14 09 04

fukemy commented 1 year ago

I didn't import Realm any where in my project, because Im using Realm React, after wrap my App by RealmProvider. I removed all code related to useRealm(), and still got this problem.

fukemy commented 1 year ago

Screen Shot 2022-08-24 at 14 20 12 i tried to un-wrap my App with RealmProvider but not working, same error log

fukemy commented 1 year ago

Screen Shot 2022-08-24 at 14 30 58 I removed all related to import RealmContext then the app run normally Here is class RealmContext:

import { ContactInfo, Room, RoomBackground, RoomDetail, RoomMessage, Summary } from "../database/RealmSchemas"
import { createRealmContext } from '@realm/react'

const config = {
    schema: [Room.schema, 
        ContactInfo.schema, 
        RoomDetail.schema, 
        RoomBackground.schema, 
        Summary.schema, 
        RoomMessage.schema],
};

export default createRealmContext(config);
fukemy commented 1 year ago

Ahh, i found the problem, the scheme class does not contain import Realm, but I dont know why IOS does not make crash, only Android. Im really thanks you for your help Here is my RealmSchema: Screen Shot 2022-08-24 at 14 34 21

takameyer commented 1 year ago

@fukemy Interesting find. Realm is for the most part written in c++ and is provided as an extension to the javascript engine. Therefore once the application is compiled, Realm exists in the global scope. I think on iOS it just accidentally worked, as it was using the Realm global. Just a theory. I'll bring this up with my team.

Happy it's working for you now!

fukemy commented 1 year ago

Hi bro, i still have problem, when using Android Studio and hit Run, I still got this error: IMG_1588 But when using visual studio and run npm run android the app work normally, can u tell me the problem? I dont know why, even im clean and re-build again using android studio

2022-08-24 14:51:29.013 4038-6591/com.vedaxlink E/ReactNativeJS: ReferenceError: Can't find variable: Realm
2022-08-24 14:51:29.031 4038-6591/com.vedaxlink E/ReactNativeJS: 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.
2022-08-24 14:51:29.038 4038-6592/com.vedaxlink E/unknown:ReactNative: Exception in native call
    com.facebook.react.common.JavascriptException: ReferenceError: Can't find variable: Realm, stack:
    <unknown>@595:869
    h@2:1585
    <unknown>@594:110
    h@2:1585
    <unknown>@582:7011
    h@2:1585
    <unknown>@568:2393
    h@2:1585
    <unknown>@402:8437
    h@2:1585
    <unknown>@6:53
    h@2:1585
    d@2:958
    global code@3000:3

        at com.facebook.react.modules.core.ExceptionsManagerModule.reportException(ExceptionsManagerModule.java:72)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:372)
        at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:188)
        at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
        at android.os.Handler.handleCallback(Handler.java:938)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:27)
        at android.os.Looper.loop(Looper.java:246)
        at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:228)
        at java.lang.Thread.run(Thread.java:923)
2022-08-24 14:51:29.048 4038-6592/com.vedaxlink E/unknown:ReactNative: Exception in native call
    com.facebook.react.common.JavascriptException: Invariant Violation: Module AppRegistry is not
wahas-mughal commented 1 year ago
"react-native-reanimated": "^2.9.0",

This is not compatible with Realm v10 on Android. We have a release candidate for v11.

Can you try:

npm install realm@11.0.0-rc.0

Thanks solved the issue, I had realm 10.20.0-beta.5 and react-native-reanimated 2.5.0