|
Post by beyons on Mar 31, 2022 9:03:53 GMT
Hello, where can I find the list of all the extensions that we can use in the build.yaml
|
|
|
Post by beyons on Apr 1, 2022 8:18:06 GMT
my problem is with GPS capabilites
when i use Geolocation.longitude or any Geolocatiuon methods i have this error in my rholog.txt
APP| const_missing: Geolocation
04-01 09:14:10.928 12653 13186 I APP : I 04/01/2022 09:14:10:928 b48fdcc0 APP| Application initialize failed: #<NameError: uninitialized constant AppApplication::Geolocation>;Trace: lib/rho/rho.rb:1242:in `const_missing'
|
|
|
Post by egghead on Apr 1, 2022 11:36:23 GMT
Would like to point out that the API Summary has still not been updated. NdefMessage, NfcManager, NdefRecord etc. are supported for Android, but not shown as such. Just a heads-up. Thanks
|
|
|
Post by beyons on Apr 1, 2022 12:24:57 GMT
But i don't understand why geolocation didn' work i have added GPS capabilities to build .yaml
|
|
|
Post by Alex Epifanov on Apr 1, 2022 13:31:56 GMT
Would like to point out that the API Summary has still not been updated. NdefMessage, NfcManager, NdefRecord etc. are supported for Android, but not shown as such. Just a heads-up. Thanks Thanks for pointing out. We'll look at this.
|
|
|
Post by Alex Epifanov on Apr 1, 2022 13:33:59 GMT
But i don't understand why geolocation didn' work i have added GPS capabilities to build .yaml Can you share your build.yml and rholog.txt?
|
|
|
Post by beyons on Apr 1, 2022 14:47:10 GMT
## Note: sdk is full path to Rhodes root. If not defined - automatically find latest installed Rhodes gem
#sdk: "C:/RhoMobileSuite7.4.0/ruby/lib/ruby/gems/2.5.0/gems/rhodes-7.4.0"
sdkversion: "7.4.0"
name: "RubyApps"
version: 1.0
vendor: "rhomobile"
## Note: rho_app_id send to RhoConnect server for identify application (used in multi-push configuration only)
## we recommend make it same with BundleIdentifier
rho_app_id: "com.rhomobile.helloword"
build: "debug"
applog: "rholog.txt"
minify:
js: true
css: true
exclude_dirs:
- js
obfuscate:
js: true
css: true
exclude_dirs:
- jqmobile
- jquery
- jqtouch
- feather
- mui-0.10.3
- phonon-1.5.0
# enable encrypt of database
#encrypt_database: 1
# enable encryption of bundle by AES (only for iOS and Adnroid)
# key should be generated by this command:
# $ rake build:bundle:generate_AES_key
encrypt_files_key: "9kefijsPZjfOHDWNhpKiiq3bbewg5rgv83Hb/qMAQSw="
encrypt_file_extensions:
- html
- js
- css
- iseq
## Note: enbale it for use new style of iOS top status bar(battery info, etc.) - status bar is transparency and over application window
#iphone_use_new_ios7_status_bar_style: 1
## Note: enable this for force iOS full screen (top status bar with battery info etc. is hidden)
#iphone_full_screen: 1
## Note: set this to 0 for remove title bar of Android application
## also setup "full_screen" in rhoconfig.txt
#android_title: 0
## Note: enable specific device capabilities for aplication
#capabilities:
## allows use of audio hardware (record audio, modify audio settings)
#- audio
## allows use of hardware camera
#- camera
## allows use of geo location service
#- gps
## allows read device network state (connected/disconnected)
#- network_state
## allow make calls/read phone state
#- phone
## allow read/modify personal information and contacts
#- pim
## allows use of PUSH on device
#- push
## allows use of hardware vibration mechanism
#- vibrate
## allows use of bluetooth hardware
#- bluetooth
## allows access to default device calendar
#- calendar
## allows writing to the SD card on Android devices
#- sdcard
## add UIWebView code to project - now UIWebView deprecated by Apple - You can not submit application with UIWebView to AppStore !
## You can select type of WebView in rhoconfig.txt - see ios_use_WKWebView option
#- ios_uiwebview
## iOS do not support direct(intercept by application's code) http/https request processing in WKWebView
## add this capability for add some code with support this feature by some "unofficial" method.
## set ios_direct_local_requests = 1 in rhoconfig.txt for use this code
#- ios_wkwebview_http_direct_processing
iphone:
configuration: "Release"
sdk: "latest"
## emulatortarget can be "iphone", "ipad" or UUID or Name of already exist simulator
#emulatortarget: iphone
## Note: sdk can be 3 predefined value : latest, latest_simulator, latest_device
## simulator or device detect by rake command for "rake run:iphone" is simulator, for "rake device:iphone:production" is device
## sdk also can be defined exactly like: iphonesimulator10.2 or iphoneos10.2
ARCHS_simulator:
## parameters for override ARHCS option when build XCode projects
#ARCHS_simulator : ["i386", "x86_64"]
#ARCHS_device : ["arm64", "arm64e", "armv7", "armv7s"]
#leave one architecture for decrease build time during development
- x86_64
ARCHS_device:
## Note: Provisioning
## There are two provisioning type for modern XCode: Automatic and Manual
## development_team must be configured for any type provisioning
## you see team code by run this command:
## $ security find-identity -p codesigning -v
## you will see list of certificates and you should copy code from "iPhone Distribution" line like this (code is PNQRMU3LPM):
## 5) D6D5EE35B3F8D9C04E85C7015539F04B38403DA3 "iPhone Distribution: Vasya Pupkin (PNQRMU3LPM)"
##
## Note: This is Automatic provisioning configuration:
#provisioning_style: Automatic
#development_team: "PNQRMU3LPM"
##
## Note: This is Manual provisioning configuration:
## provisionprofile can be defined as name or UUID - if you defined provisionprofile then codesignidentity defined automatically if you not defined it in this build.yml
#provisionprofile: "Current WildCart 05"
#provisioning_style: Manual
#development_team: "PNQRMU3LPM"
#codesignidentity: "iPhone Developer"
##
#entitlements:
- arm64
BundleIdentifier: "com.rhomobile.helloword"
## Note: Specifies the URL schemes the app is able to call using Rho.System.runApplication
#ApplicationQueriesSchemes: ['scheme1', 'scheme2']
## Note: Specifies list of HTTP domains for connect from application
#http_connection_domains: ['domain1.com', 'domain2.org']
## Note: Specify remove of Info.plist keys - use this if you need to remove some keys from Info.plist
## This example remove two keys with unsupported screen orientation
#info_plist_data_remove:
#- UISupportedInterfaceOrientations: ['UIInterfaceOrientationLandscapeLeft', 'UIInterfaceOrientationLandscapeRight']
## Note: Specifies set/modify of Info.plist keys with content(hash) - all of this items will be apply to final Info.plist of application. You can specify any Ino.plist data in this parameter.
## This example allow all HTTP connections in application:
#info_plist_data:
# NSAppTransportSecurity:
# NSAllowsArbitraryLoads: true
## if you use "barcode" extension on iOS, you can switch barcode recognize engine: APPLE_BARCODE_ENGINE(default), ZXING, ZBAR
#barcode_engine: APPLE_BARCODE_ENGINE
## control of bitcode generations - true by default, but you can disable it by set false
## disable it for decrease build time during development
BundleURLScheme: "helloword"
enable_bitcode: false
uwp:
productid: "c42d2320-829b-013a-2899-18c04de2baac"
target: "ARM"
android:
abis:
- arm
- aarch64
logcatFilter: "APP:I StrictMode:I DEBUG:I *:E"
minSDK: 24
extensions:
- hardwarekeys
- screenorientation
- sensor
- websocket
- signature
- audiocapture
- mediacapture
- printing
- mediaplayer
- coreapi
- rho-javascript
- json
- thread
- devicesecurity
- nfc
- gmaps
- json
- uri
- zlib
- net-http
- Bluetooth
- clipboard
- fileutils
#manifest_template: 'AndroidManifest.erb'
version: "7.0"
android_title: 0
build_bundle: 1
mapping: true
#specifies compile SDK version ( 9 corresponds to API 28). If not specified then latest available API level will be used.
#version: 9
capabilities:
- vibrate
- hardware_acceleration
#targetSDK: 28
## Note: in order to simplify debugging only app messages and system channels with priority informative and higher, and any errors are enabled by default
linux:
## Note: setup android_title to 0 for remove default window titlebar in Android application
#android_title: 0
wm:
#linux build section
extensions:
- webkit
win32:
#sdk: "MC3000c50b (ARMV4I)"
#sdk: "Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
deployqt: 1
deploymsvc: 1
msvc: 2017
sailfish:
configuration: "Release"
target: "arm"
target_sdk: "SailfishOS-2.1.4.13-armv7hl"
build_threads: 1
enable_web_engine: false
device:
type: "real"
device_name: "INOI R7 (ARM)"
user: "nemo"
key: "C:/SailfishOS/vmshare/ssh/private_keys/INOI_R7_(ARM)/nemo"
password: 123
host: "192.168.2.15"
extensions:
- mediacapture
- barcode
- signature
- rhoconnect-client
- serialport
extensions:
rhobundle:
exclude_items:
- thumb.db
capabilities:
- gps
- camera
- phone
- calendar
- network_state
- sdcard
- pim
- hardware_acceleration
- bluetooth
|
|
|
Post by beyons on Apr 1, 2022 14:47:57 GMT
--------- beginning of crash
03-31 18:35:58.080 28732 28732 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.080 28732 28732 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.080 28732 28732 F DEBUG : Revision: '0'
03-31 18:35:58.080 28732 28732 F DEBUG : ABI: 'arm64'
03-31 18:35:58.081 28732 28732 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.081 28732 28732 F DEBUG : pid: 1155, tid: 17224, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.081 28732 28732 F DEBUG : uid: 1021
03-31 18:35:58.081 28732 28732 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.091 28732 28732 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.091 28732 28732 F DEBUG : x0 0000000000000000 x1 0000000000004348 x2 0000000000000006 x3 0000007dff8cb270
03-31 18:35:58.091 28732 28732 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.091 28732 28732 F DEBUG : x8 00000000000000f0 x9 94c6abe5d7925fe5 x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.091 28732 28732 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 e3fc380000000000
03-31 18:35:58.091 28732 28732 F DEBUG : x16 0000007e83be4948 x17 0000007e83bc2300 x18 0000007dfec42000 x19 0000000000000483
03-31 18:35:58.091 28732 28732 F DEBUG : x20 0000000000004348 x21 00000000ffffffff x22 0000005795357df0 x23 0000007dff8ce000
03-31 18:35:58.091 28732 28732 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 0000007e0305b792
03-31 18:35:58.091 28732 28732 F DEBUG : x28 0000000000000012 x29 0000007dff8cb2f0
03-31 18:35:58.091 28732 28732 F DEBUG : lr 0000007e83b71cb8 sp 0000007dff8cb250 pc 0000007e83b71ce4 pst 0000000000000000
03-31 18:35:58.134 28732 28732 F DEBUG : backtrace:
03-31 18:35:58.135 28732 28732 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.137 28732 28732 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.137 28732 28732 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.138 28732 28732 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.138 28732 28732 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #07 pc 00000000000524c0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getMeasurements(qc_loc_fw::LOWIRequest*, qc_loc_fw::LOWIWifiDriverInterface::eListenMode)+928) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #08 pc 00000000000940c4 /vendor/bin/lowi-server (qc_loc_fw::LOWIROMEWifiDriver::getMeasurements(qc_loc_fw::LOWIRequest*, qc_loc_fw::LOWIWifiDriverInterface::eListenMode)+1496) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #09 pc 000000000004f074 /vendor/bin/lowi-server (qc_loc_fw::LOWIScanResultReceiver::run()+784) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #10 pc 000000000007faa4 /vendor/bin/lowi-server (qc_loc_fw::ThreadImpl::thread_func(void*) (.cfi)+116) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.138 28732 28732 F DEBUG : #11 pc 00000000000f4074 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.138 28732 28732 F DEBUG : #12 pc 000000000008ec24 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.515 28742 28742 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.515 28742 28742 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.515 28742 28742 F DEBUG : Revision: '0'
03-31 18:35:58.515 28742 28742 F DEBUG : ABI: 'arm64'
03-31 18:35:58.515 28742 28742 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.515 28742 28742 F DEBUG : pid: 28738, tid: 28738, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.515 28742 28742 F DEBUG : uid: 1021
03-31 18:35:58.515 28742 28742 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.515 28742 28742 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.516 28742 28742 F DEBUG : x0 0000000000000000 x1 0000000000007042 x2 0000000000000006 x3 0000007fddcbd610
03-31 18:35:58.516 28742 28742 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.516 28742 28742 F DEBUG : x8 00000000000000f0 x9 3cc878520ad5feec x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.516 28742 28742 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 fffffffffff00000
03-31 18:35:58.516 28742 28742 F DEBUG : x16 0000007992d00948 x17 0000007992cde300 x18 0000007993e42000 x19 0000000000007042
03-31 18:35:58.516 28742 28742 F DEBUG : x20 0000000000007042 x21 00000000ffffffff x22 0000005da774ddf0 x23 00000079931a6000
03-31 18:35:58.516 28742 28742 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 0000007911e4d792
03-31 18:35:58.516 28742 28742 F DEBUG : x28 0000000000000012 x29 0000007fddcbd690
03-31 18:35:58.516 28742 28742 F DEBUG : lr 0000007992c8dcb8 sp 0000007fddcbd5f0 pc 0000007992c8dce4 pst 0000000000000000
03-31 18:35:58.521 28742 28742 F DEBUG : backtrace:
03-31 18:35:58.522 28742 28742 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.522 28742 28742 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.522 28742 28742 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.522 28742 28742 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #07 pc 0000000000099108 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiScanner::lowi_proc_req_passive_scan_with_live_meas(int, unsigned int, unsigned int, int, int*, int*, int, int*, qc_loc_fw::LOWIRequest*)+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #08 pc 0000000000050cf0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getCacheMeasurements()+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #09 pc 0000000000046e24 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::isWifiEnabled()+5560) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #10 pc 0000000000037c40 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::_init()+2184) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #11 pc 00000000000724f8 /vendor/bin/lowi-server (qc_loc_fw::MqClientControllerBase::init()+2608) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #12 pc 0000000000034490 /vendor/bin/lowi-server (main.cfi+836) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.522 28742 28742 F DEBUG : #13 pc 0000000000088170 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+108) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.589 28749 28749 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.590 28749 28749 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.590 28749 28749 F DEBUG : Revision: '0'
03-31 18:35:58.590 28749 28749 F DEBUG : ABI: 'arm64'
03-31 18:35:58.590 28749 28749 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.590 28749 28749 F DEBUG : pid: 28745, tid: 28745, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.590 28749 28749 F DEBUG : uid: 1021
03-31 18:35:58.591 28749 28749 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.591 28749 28749 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.591 28749 28749 F DEBUG : x0 0000000000000000 x1 0000000000007049 x2 0000000000000006 x3 0000007feb4ff6a0
03-31 18:35:58.591 28749 28749 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.591 28749 28749 F DEBUG : x8 00000000000000f0 x9 adb9beaa03a92282 x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.591 28749 28749 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 fffffffffff00000
03-31 18:35:58.591 28749 28749 F DEBUG : x16 00000077c8384948 x17 00000077c8362300 x18 00000077c9088000 x19 0000000000007049
03-31 18:35:58.591 28749 28749 F DEBUG : x20 0000000000007049 x21 00000000ffffffff x22 0000005c865f0df0 x23 00000077c89fc000
03-31 18:35:58.591 28749 28749 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 000000774764d792
03-31 18:35:58.591 28749 28749 F DEBUG : x28 0000000000000012 x29 0000007feb4ff720
03-31 18:35:58.591 28749 28749 F DEBUG : lr 00000077c8311cb8 sp 0000007feb4ff680 pc 00000077c8311ce4 pst 0000000000000000
03-31 18:35:58.596 28749 28749 F DEBUG : backtrace:
03-31 18:35:58.597 28749 28749 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.597 28749 28749 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.597 28749 28749 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.597 28749 28749 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #07 pc 0000000000099108 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiScanner::lowi_proc_req_passive_scan_with_live_meas(int, unsigned int, unsigned int, int, int*, int*, int, int*, qc_loc_fw::LOWIRequest*)+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #08 pc 0000000000050cf0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getCacheMeasurements()+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #09 pc 0000000000046e24 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::isWifiEnabled()+5560) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #10 pc 0000000000037c40 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::_init()+2184) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #11 pc 00000000000724f8 /vendor/bin/lowi-server (qc_loc_fw::MqClientControllerBase::init()+2608) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #12 pc 0000000000034490 /vendor/bin/lowi-server (main.cfi+836) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.597 28749 28749 F DEBUG : #13 pc 0000000000088170 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+108) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.672 28761 28761 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.672 28761 28761 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.672 28761 28761 F DEBUG : Revision: '0'
03-31 18:35:58.672 28761 28761 F DEBUG : ABI: 'arm64'
03-31 18:35:58.672 28761 28761 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.672 28761 28761 F DEBUG : pid: 28754, tid: 28754, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.673 28761 28761 F DEBUG : uid: 1021
03-31 18:35:58.673 28761 28761 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.673 28761 28761 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.673 28761 28761 F DEBUG : x0 0000000000000000 x1 0000000000007052 x2 0000000000000006 x3 0000007fcaa056d0
03-31 18:35:58.673 28761 28761 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.673 28761 28761 F DEBUG : x8 00000000000000f0 x9 460c479efe650a31 x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.673 28761 28761 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 fffffffffff00000
03-31 18:35:58.673 28761 28761 F DEBUG : x16 00000079895dd948 x17 00000079895bb300 x18 000000798ac1e000 x19 0000000000007052
03-31 18:35:58.673 28761 28761 F DEBUG : x20 0000000000007052 x21 00000000ffffffff x22 00000058574b9df0 x23 000000798a1ca000
03-31 18:35:58.673 28761 28761 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 0000007908e4d792
03-31 18:35:58.673 28761 28761 F DEBUG : x28 0000000000000012 x29 0000007fcaa05750
03-31 18:35:58.673 28761 28761 F DEBUG : lr 000000798956acb8 sp 0000007fcaa056b0 pc 000000798956ace4 pst 0000000000000000
03-31 18:35:58.681 28761 28761 F DEBUG : backtrace:
03-31 18:35:58.681 28761 28761 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.681 28761 28761 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.681 28761 28761 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.681 28761 28761 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #07 pc 0000000000099108 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiScanner::lowi_proc_req_passive_scan_with_live_meas(int, unsigned int, unsigned int, int, int*, int*, int, int*, qc_loc_fw::LOWIRequest*)+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #08 pc 0000000000050cf0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getCacheMeasurements()+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #09 pc 0000000000046e24 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::isWifiEnabled()+5560) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.681 28761 28761 F DEBUG : #10 pc 0000000000037c40 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::_init()+2184) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.682 28761 28761 F DEBUG : #11 pc 00000000000724f8 /vendor/bin/lowi-server (qc_loc_fw::MqClientControllerBase::init()+2608) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.682 28761 28761 F DEBUG : #12 pc 0000000000034490 /vendor/bin/lowi-server (main.cfi+836) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.682 28761 28761 F DEBUG : #13 pc 0000000000088170 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+108) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.758 28771 28771 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.758 28771 28771 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.758 28771 28771 F DEBUG : Revision: '0'
03-31 18:35:58.758 28771 28771 F DEBUG : ABI: 'arm64'
03-31 18:35:58.758 28771 28771 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.758 28771 28771 F DEBUG : pid: 28764, tid: 28764, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.758 28771 28771 F DEBUG : uid: 1021
03-31 18:35:58.758 28771 28771 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.758 28771 28771 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.758 28771 28771 F DEBUG : x0 0000000000000000 x1 000000000000705c x2 0000000000000006 x3 0000007fec03f750
03-31 18:35:58.758 28771 28771 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.758 28771 28771 F DEBUG : x8 00000000000000f0 x9 e35c72d8be467dfe x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.758 28771 28771 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 fffffffffff00000
03-31 18:35:58.758 28771 28771 F DEBUG : x16 0000007e53541948 x17 0000007e5351f300 x18 0000007e54796000 x19 000000000000705c
03-31 18:35:58.758 28771 28771 F DEBUG : x20 000000000000705c x21 00000000ffffffff x22 0000005e35c4ddf0 x23 0000007e53d79000
03-31 18:35:58.759 28771 28771 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 0000007dd2a4d792
03-31 18:35:58.759 28771 28771 F DEBUG : x28 0000000000000012 x29 0000007fec03f7d0
03-31 18:35:58.759 28771 28771 F DEBUG : lr 0000007e534cecb8 sp 0000007fec03f730 pc 0000007e534cece4 pst 0000000000000000
03-31 18:35:58.764 28771 28771 F DEBUG : backtrace:
03-31 18:35:58.764 28771 28771 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.764 28771 28771 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.765 28771 28771 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.765 28771 28771 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #07 pc 0000000000099108 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiScanner::lowi_proc_req_passive_scan_with_live_meas(int, unsigned int, unsigned int, int, int*, int*, int, int*, qc_loc_fw::LOWIRequest*)+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #08 pc 0000000000050cf0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getCacheMeasurements()+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #09 pc 0000000000046e24 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::isWifiEnabled()+5560) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #10 pc 0000000000037c40 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::_init()+2184) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #11 pc 00000000000724f8 /vendor/bin/lowi-server (qc_loc_fw::MqClientControllerBase::init()+2608) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #12 pc 0000000000034490 /vendor/bin/lowi-server (main.cfi+836) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.765 28771 28771 F DEBUG : #13 pc 0000000000088170 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+108) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.831 28778 28778 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-31 18:35:58.831 28778 28778 F DEBUG : Build fingerprint: 'Nokia/Deadpool_00WW/DPL_sprout:11/RKQ1.200928.002/00WW_3_23A:user/release-keys'
03-31 18:35:58.831 28778 28778 F DEBUG : Revision: '0'
03-31 18:35:58.831 28778 28778 F DEBUG : ABI: 'arm64'
03-31 18:35:58.832 28778 28778 F DEBUG : Timestamp: 2022-03-31 18:35:58+0100
03-31 18:35:58.832 28778 28778 F DEBUG : pid: 28774, tid: 28774, name: lowi-server >>> lowi-server <<<
03-31 18:35:58.832 28778 28778 F DEBUG : uid: 1021
03-31 18:35:58.832 28778 28778 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
03-31 18:35:58.832 28778 28778 F DEBUG : Abort message: 'ubsan: mul-overflow'
03-31 18:35:58.832 28778 28778 F DEBUG : x0 0000000000000000 x1 0000000000007066 x2 0000000000000006 x3 0000007fedb8f940
03-31 18:35:58.832 28778 28778 F DEBUG : x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 0000000000000010
03-31 18:35:58.832 28778 28778 F DEBUG : x8 00000000000000f0 x9 4d2c061999a83eea x10 0000000000000000 x11 ffffffc0ffffffdf
03-31 18:35:58.832 28778 28778 F DEBUG : x12 0000000000000001 x13 0000000000000050 x14 fffffffffc000000 x15 fffffffffff00000
03-31 18:35:58.832 28778 28778 F DEBUG : x16 000000723ad87948 x17 000000723ad65300 x18 000000723bbda000 x19 0000000000007066
03-31 18:35:58.832 28778 28778 F DEBUG : x20 0000000000007066 x21 00000000ffffffff x22 0000005d99360df0 x23 000000723b990000
03-31 18:35:58.832 28778 28778 F DEBUG : x24 0000000000000001 x25 0000000000000000 x26 000000000000000d x27 00000071ba64d792
03-31 18:35:58.832 28778 28778 F DEBUG : x28 0000000000000012 x29 0000007fedb8f9c0
03-31 18:35:58.832 28778 28778 F DEBUG : lr 000000723ad14cb8 sp 0000007fedb8f920 pc 000000723ad14ce4 pst 0000000000000000
03-31 18:35:58.837 28778 28778 F DEBUG : backtrace:
03-31 18:35:58.837 28778 28778 F DEBUG : #00 pc 000000000008cce4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: ec8adfedf6298eb6091840951b081632)
03-31 18:35:58.838 28778 28778 F DEBUG : #01 pc 000000000003407c /vendor/bin/lowi-server (abort_with_message(char const*)+20) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #02 pc 00000000000340d0 /vendor/bin/lowi-server (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #03 pc 000000000009f1ac /vendor/bin/lowi-server (print_bss_handler(nl_msg*, void*) (.cfi)+8860) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #04 pc 0000000000010a28 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs_report+860) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.838 28778 28778 F DEBUG : #05 pc 0000000000010bb0 /apex/com.android.vndk.v30/lib64/libnl.so (nl_recvmsgs+8) (BuildId: ccc65d60baa6fb65873c9d2566af00b3)
03-31 18:35:58.838 28778 28778 F DEBUG : #06 pc 0000000000099a78 /vendor/bin/lowi-server (lowi_proc_iwmm_req_passive_scan_nl(int, unsigned int, int, int*, int*, int, qc_loc_fw::LOWIRequest*)+904) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #07 pc 0000000000099108 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiScanner::lowi_proc_req_passive_scan_with_live_meas(int, unsigned int, unsigned int, int, int*, int*, int, int*, qc_loc_fw::LOWIRequest*)+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #08 pc 0000000000050cf0 /vendor/bin/lowi-server (qc_loc_fw::LOWIWifiDriverInterface::getCacheMeasurements()+120) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #09 pc 0000000000046e24 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::isWifiEnabled()+5560) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #10 pc 0000000000037c40 /vendor/bin/lowi-server (qc_loc_fw::LOWIController::_init()+2184) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #11 pc 00000000000724f8 /vendor/bin/lowi-server (qc_loc_fw::MqClientControllerBase::init()+2608) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #12 pc 0000000000034490 /vendor/bin/lowi-server (main.cfi+836) (BuildId: e396bcf723a52ef792300f43c7afbe87)
03-31 18:35:58.838 28778 28778 F DEBUG : #13 pc 0000000000088170 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+108) (BuildId: ec8adfedf6298eb6091840951b081632)
--------- beginning of system
--------- beginning of main
04-01 12:48:32.329 6201 6201 I APP : I 04/01/2022 12:48:32:329 c3eeb4f8 WebViewSingleton| Proxy bypass policy: 1
04-01 12:48:32.462 6201 6201 I APP : I 04/01/2022 12:48:32:462 c3eeb4f8 RhodesApplication| Initialized
04-01 12:48:33.093 6201 6201 I APP : I 04/01/2022 12:48:33:092 c3eeb4f8 RhodesActivity| Config path: /storage/emulated/0/Android/data/com.rhomobile.rubyapps/Config.xml
04-01 12:48:33.094 6201 6201 I APP : I 04/01/2022 12:48:33:093 c3eeb4f8 RhodesActivity| Loading Config.xml from resources
04-01 12:48:33.096 6201 6201 I APP : W 04/01/2022 12:48:33:096 c3eeb4f8 RhodesActivity| Error loading RhoElements configuraiton (IllegalArgumentException): Cannot get com.rhomobile.rhodes.R$raw.config
04-01 12:48:33.109 6201 6201 I APP : I 04/01/2022 12:48:33:107 c3eeb4f8 RhoExtManagerImpl| Creating Google web view !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
04-01 12:48:34.854 6201 6201 I APP : I 04/01/2022 12:48:34:854 c3eeb4f8 GoogleWebView| Initialize Google WEbView staff
04-01 12:48:34.888 6201 6201 I APP : I 04/01/2022 12:48:34:888 c3eeb4f8 GoogleWebView| Adding new JS interface: __rhoNativeApi
04-01 12:48:34.892 6201 6201 I APP : I 04/01/2022 12:48:34:892 c3eeb4f8 WebViewSingleton| Set config initially: true
04-01 12:48:34.893 6201 6201 I APP : I 04/01/2022 12:48:34:893 c3eeb4f8 GoogleWebView| applyWebSettings
04-01 12:48:34.893 6201 6201 I APP : I 04/01/2022 12:48:34:893 c3eeb4f8 GoogleWebView| Web settings is applying now >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
04-01 12:48:34.895 6201 6201 I APP : I 04/01/2022 12:48:34:895 c3eeb4f8 GoogleWebView| Enabling third-party cookies
04-01 12:48:34.897 6201 6201 I APP : I 04/01/2022 12:48:34:897 c3eeb4f8 GoogleWebView| Enabling third-party cookies done
04-01 12:48:34.899 6201 6201 I APP : I 04/01/2022 12:48:34:899 c3eeb4f8 WebSettingsProvider| Set web plugins state 'ON'
04-01 12:48:34.907 6201 6201 I APP : I 04/01/2022 12:48:34:906 c3eeb4f8 WebSettingsProvider| Allow universal access from file URL
04-01 12:48:34.935 6201 6201 I APP : I 04/01/2022 12:48:34:935 c3eeb4f8 RhodesApplication| New UiState: MainActivityCreated
04-01 12:48:35.023 6201 6201 I APP : I 04/01/2022 12:48:35:023 c3eeb4f8 RhodesApplication| New UiState: MainActivityStarted
04-01 12:48:35.037 6201 6201 I APP : I 04/01/2022 12:48:35:037 c3eeb4f8 SplashScreen| Process config: zoom
04-01 12:48:35.038 6201 6201 I APP : I 04/01/2022 12:48:35:038 c3eeb4f8 SplashScreen| Scale type: zoom
04-01 12:48:35.038 6201 6201 I APP : I 04/01/2022 12:48:35:038 c3eeb4f8 SplashScreen| Process config: delay=3
04-01 12:48:35.038 6201 6201 I APP : I 04/01/2022 12:48:35:038 c3eeb4f8 SplashScreen| Looking for start page source
04-01 12:48:35.039 6201 6201 I APP : I 04/01/2022 12:48:35:039 c3eeb4f8 SplashScreen| Loading image try to open from resources !!!
04-01 12:48:35.055 6201 6201 I APP : I 04/01/2022 12:48:35:054 c3eeb4f8 SplashScreen| Loading image from resource R.drawable.loading !
04-01 12:48:35.057 6201 6201 I APP : I 04/01/2022 12:48:35:057 c3eeb4f8 SplashScreen| Done
04-01 12:48:35.064 6201 6201 I APP : I 04/01/2022 12:48:35:064 c3eeb4f8 RhodesApplication| New UiState: MainActivitiResumed
04-01 12:48:35.135 6201 6201 I APP : E 04/01/2022 12:48:35:135 c3eeb4f8 RhodesService| Resources of icon not found!!!
04-01 12:48:35.149 6201 6201 I APP : I 04/01/2022 12:48:35:148 c3eeb4f8 LocalFileProvider| Revoke URI permissions: content://com.rhomobile.rubyapps
04-01 12:48:35.151 6201 6201 I APP : I 04/01/2022 12:48:35:151 c3eeb4f8 Rhodes| Loading...
04-01 12:48:35.171 6201 6201 I APP : I 04/01/2022 12:48:35:171 c3eeb4f8 RhodesApp| Trying to get free listening port.
04-01 12:48:35.173 6201 6457 I APP : I 04/01/2022 12:48:35:171 b6517cc0 AppCallbacks| Starting main routine...
04-01 12:48:35.174 6201 6201 I APP : I 04/01/2022 12:48:35:173 c3eeb4f8 RhodesApp| Trying to bind of 0 port...
04-01 12:48:35.176 6201 6201 I APP : I 04/01/2022 12:48:35:174 c3eeb4f8 RhodesApp| Got port to bind on: 38287
04-01 12:48:35.177 6201 6457 I APP : I 04/01/2022 12:48:35:176 b6517cc0 AppCallbacks| ThreadQueue blocked for 4294967295 seconds...
04-01 12:48:35.177 6201 6201 I APP : I 04/01/2022 12:48:35:176 c3eeb4f8 RhodesApp| Free listening port: 38287
04-01 12:48:35.177 6201 6201 I APP : I 04/01/2022 12:48:35:177 c3eeb4f8 RhodesApp| Trying to get free listening port.
04-01 12:48:35.177 6201 6201 I APP : I 04/01/2022 12:48:35:177 c3eeb4f8 RhodesApp| Trying to bind of 0 port...
04-01 12:48:35.177 6201 6201 I APP : I 04/01/2022 12:48:35:177 c3eeb4f8 RhodesApp| Got port to bind on: 38809
04-01 12:48:35.177 6201 6201 I APP : I 04/01/2022 12:48:35:177 c3eeb4f8 RhodesApp| Free Node.js listening port: 38809
04-01 12:48:35.222 6201 6201 I APP : I 04/01/2022 12:48:35:222 c3eeb4f8 RhodesApp| callAppActiveCallback
04-01 12:48:35.223 6201 6485 I APP : I 04/01/2022 12:48:35:222 b5419cc0 RhodesApp| Starting RhodesApp main routine...
04-01 12:48:35.223 6201 6201 I APP : I 04/01/2022 12:48:35:222 c3eeb4f8 AppCallbacks| addCommand: APP-ACTIVATED
04-01 12:48:35.224 6201 6457 I APP : I 04/01/2022 12:48:35:223 b6517cc0 AppCallbacks| APP-ACTIVATED is received ++++++++++++++++++++++++++++
04-01 12:48:35.224 6201 6201 I APP : I 04/01/2022 12:48:35:224 c3eeb4f8 AppActivated| Cannot commit now, application will be activated when started.
04-01 12:48:35.224 6201 6201 I APP : I 04/01/2022 12:48:35:224 c3eeb4f8 RhodesApplication| New AppState: Undefined
04-01 12:48:35.228 6201 6457 I APP : I 04/01/2022 12:48:35:224 b6517cc0 AppCallbacks| Received command APP-ACTIVATED which is greater than expected (LOCAL-SERVER-STARTED) - postpone it
04-01 12:48:35.229 6201 6457 I APP : I 04/01/2022 12:48:35:229 b6517cc0 AppCallbacks| ThreadQueue blocked for 4294967295 seconds...
04-01 12:48:35.236 6201 6201 I APP : I 04/01/2022 12:48:35:235 c3eeb4f8 RhodesService| handleCommand: startId=1, source=com.rhomobile.rhodes.BaseActivity
04-01 12:48:35.261 6201 6201 I APP : I 04/01/2022 12:48:35:261 c3eeb4f8 AppCallbacks| addCommand: UI-CREATED
04-01 12:48:35.262 6201 6457 I APP : I 04/01/2022 12:48:35:261 b6517cc0 AppCallbacks| UI-CREATED is received ++++++++++++++++++++++++++++
04-01 12:48:35.262 6201 6457 I APP : I 04/01/2022 12:48:35:262 b6517cc0 AppCallbacks| m_uistate: 0
04-01 12:48:35.263 6201 6457 I APP : I 04/01/2022 12:48:35:262 b6517cc0 AppCallbacks| Received command UI-CREATED which is greater than expected (LOCAL-SERVER-STARTED) - postpone it
04-01 12:48:35.263 6201 6457 I APP : I 04/01/2022 12:48:35:263 b6517cc0 AppCallbacks| ThreadQueue blocked for 4294967295 seconds...
04-01 12:48:35.268 6201 6201 I APP : I 04/01/2022 12:48:35:262 c3eeb4f8 GoogleWebView| Setting RhoWebChromeClient and RhoWebViewClient
04-01 12:48:35.360 6201 6485 I APP : I 04/01/2022 12:48:35:360 b5419cc0 RUBY szRoot: | /data/user/0/com.rhomobile.rubyapps/rhodata/
04-01 12:48:35.360 6201 6485 I APP : I 04/01/2022 12:48:35:360 b5419cc0 RUBY PATHS: | /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.361 6201 6485 I APP : I 04/01/2022 12:48:35:361 b5419cc0 RUBY PATHS: | /data/user/0/com.rhomobile.rubyapps/rhodata/apps
04-01 12:48:35.361 6201 6485 I APP : I 04/01/2022 12:48:35:361 b5419cc0 RUBY PATHS: | /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app
04-01 12:48:35.393 6201 6485 I APP : I 04/01/2022 12:48:35:393 b5419cc0 RhoRuby| Init_RhoBlobs: /data/user/0/com.rhomobile.rubyapps/rhodata/db/db-files
04-01 12:48:35.462 6201 6485 I APP : I 04/01/2022 12:48:35:462 b5419cc0 RhoRuby| find_file: fname: RhoSystemApi
04-01 12:48:35.462 6201 6485 I APP : I 04/01/2022 12:48:35:462 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.463 6201 6485 I APP : I 04/01/2022 12:48:35:463 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSystemApi.iseq
04-01 12:48:35.470 6201 6485 I APP : I 04/01/2022 12:48:35:470 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSystemApi.iseq.encrypted
04-01 12:48:35.471 6201 6485 I APP : I 04/01/2022 12:48:35:470 b5419cc0 RhoRuby| require_compiled: RhoSystemApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSystemApi.iseq.encrypted
04-01 12:48:35.473 6201 6485 I APP : I 04/01/2022 12:48:35:473 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSystemApi.iseq.encrypted
04-01 12:48:35.634 6201 6485 I APP : I 04/01/2022 12:48:35:632 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.635 6201 6485 I APP : I 04/01/2022 12:48:35:635 b5419cc0 RhoRuby| find_file: fname: RhoApplicationApi
04-01 12:48:35.636 6201 6485 I APP : I 04/01/2022 12:48:35:635 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.636 6201 6485 I APP : I 04/01/2022 12:48:35:636 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoApplicationApi.iseq
04-01 12:48:35.637 6201 6485 I APP : I 04/01/2022 12:48:35:637 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoApplicationApi.iseq.encrypted
04-01 12:48:35.637 6201 6485 I APP : I 04/01/2022 12:48:35:637 b5419cc0 RhoRuby| require_compiled: RhoApplicationApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoApplicationApi.iseq.encrypted
04-01 12:48:35.639 6201 6485 I APP : I 04/01/2022 12:48:35:639 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoApplicationApi.iseq.encrypted
04-01 12:48:35.656 6201 6485 I APP : I 04/01/2022 12:48:35:655 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.657 6201 6485 I APP : I 04/01/2022 12:48:35:657 b5419cc0 RhoRuby| find_file: fname: RhoNetworkApi
04-01 12:48:35.657 6201 6485 I APP : I 04/01/2022 12:48:35:657 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.657 6201 6485 I APP : I 04/01/2022 12:48:35:657 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNetworkApi.iseq
04-01 12:48:35.659 6201 6485 I APP : I 04/01/2022 12:48:35:658 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNetworkApi.iseq.encrypted
04-01 12:48:35.659 6201 6485 I APP : I 04/01/2022 12:48:35:659 b5419cc0 RhoRuby| require_compiled: RhoNetworkApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNetworkApi.iseq.encrypted
04-01 12:48:35.661 6201 6485 I APP : I 04/01/2022 12:48:35:661 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNetworkApi.iseq.encrypted
04-01 12:48:35.678 6201 6485 I APP : I 04/01/2022 12:48:35:678 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.684 6201 6485 I APP : I 04/01/2022 12:48:35:684 b5419cc0 RhoRuby| find_file: fname: RhoDatabaseApi
04-01 12:48:35.684 6201 6485 I APP : I 04/01/2022 12:48:35:684 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.703 6201 6485 I APP : I 04/01/2022 12:48:35:685 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoDatabaseApi.iseq
04-01 12:48:35.704 6201 6485 I APP : I 04/01/2022 12:48:35:704 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoDatabaseApi.iseq.encrypted
04-01 12:48:35.704 6201 6485 I APP : I 04/01/2022 12:48:35:704 b5419cc0 RhoRuby| require_compiled: RhoDatabaseApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoDatabaseApi.iseq.encrypted
04-01 12:48:35.706 6201 6485 I APP : I 04/01/2022 12:48:35:706 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoDatabaseApi.iseq.encrypted
04-01 12:48:35.740 6201 6485 I APP : I 04/01/2022 12:48:35:740 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.769 6201 6485 I APP : I 04/01/2022 12:48:35:768 b5419cc0 RhoRuby| find_file: fname: RhoLogApi
04-01 12:48:35.769 6201 6485 I APP : I 04/01/2022 12:48:35:769 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.769 6201 6485 I APP : I 04/01/2022 12:48:35:769 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoLogApi.iseq
04-01 12:48:35.775 6201 6485 I APP : I 04/01/2022 12:48:35:775 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoLogApi.iseq.encrypted
04-01 12:48:35.775 6201 6485 I APP : I 04/01/2022 12:48:35:775 b5419cc0 RhoRuby| require_compiled: RhoLogApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoLogApi.iseq.encrypted
04-01 12:48:35.777 6201 6485 I APP : I 04/01/2022 12:48:35:777 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoLogApi.iseq.encrypted
04-01 12:48:35.779 6201 6485 I APP : I 04/01/2022 12:48:35:779 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.781 6201 6485 I APP : I 04/01/2022 12:48:35:781 b5419cc0 RhoRuby| find_file: fname: RhoWebViewApi
04-01 12:48:35.782 6201 6485 I APP : I 04/01/2022 12:48:35:781 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.782 6201 6485 I APP : I 04/01/2022 12:48:35:782 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoWebViewApi.iseq
04-01 12:48:35.783 6201 6485 I APP : I 04/01/2022 12:48:35:783 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoWebViewApi.iseq.encrypted
04-01 12:48:35.783 6201 6485 I APP : I 04/01/2022 12:48:35:783 b5419cc0 RhoRuby| require_compiled: RhoWebViewApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoWebViewApi.iseq.encrypted
04-01 12:48:35.785 6201 6485 I APP : I 04/01/2022 12:48:35:785 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoWebViewApi.iseq.encrypted
04-01 12:48:35.789 6201 6485 I APP : I 04/01/2022 12:48:35:789 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.794 6201 6485 I APP : I 04/01/2022 12:48:35:794 b5419cc0 RhoRuby| find_file: fname: RhoNativeToolbarApi
04-01 12:48:35.794 6201 6485 I APP : I 04/01/2022 12:48:35:794 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.794 6201 6485 I APP : I 04/01/2022 12:48:35:794 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeToolbarApi.iseq
04-01 12:48:35.796 6201 6485 I APP : I 04/01/2022 12:48:35:795 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeToolbarApi.iseq.encrypted
04-01 12:48:35.796 6201 6485 I APP : I 04/01/2022 12:48:35:796 b5419cc0 RhoRuby| require_compiled: RhoNativeToolbarApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeToolbarApi.iseq.encrypted
04-01 12:48:35.798 6201 6485 I APP : I 04/01/2022 12:48:35:797 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeToolbarApi.iseq.encrypted
04-01 12:48:35.802 6201 6485 I APP : I 04/01/2022 12:48:35:802 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.838 6201 6485 I APP : I 04/01/2022 12:48:35:838 b5419cc0 RhoRuby| find_file: fname: RhoNativeTabbarApi
04-01 12:48:35.838 6201 6485 I APP : I 04/01/2022 12:48:35:838 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.839 6201 6485 I APP : I 04/01/2022 12:48:35:838 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeTabbarApi.iseq
04-01 12:48:35.840 6201 6485 I APP : I 04/01/2022 12:48:35:840 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeTabbarApi.iseq.encrypted
04-01 12:48:35.864 6201 6485 I APP : I 04/01/2022 12:48:35:840 b5419cc0 RhoRuby| require_compiled: RhoNativeTabbarApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeTabbarApi.iseq.encrypted
04-01 12:48:35.867 6201 6485 I APP : I 04/01/2022 12:48:35:866 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNativeTabbarApi.iseq.encrypted
04-01 12:48:35.874 6201 6485 I APP : I 04/01/2022 12:48:35:873 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.875 6201 6485 I APP : I 04/01/2022 12:48:35:875 b5419cc0 RhoRuby| find_file: fname: RhoNotificationApi
04-01 12:48:35.877 6201 6485 I APP : I 04/01/2022 12:48:35:876 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.877 6201 6485 I APP : I 04/01/2022 12:48:35:877 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNotificationApi.iseq
04-01 12:48:35.881 6201 6485 I APP : I 04/01/2022 12:48:35:881 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNotificationApi.iseq.encrypted
04-01 12:48:35.881 6201 6485 I APP : I 04/01/2022 12:48:35:881 b5419cc0 RhoRuby| require_compiled: RhoNotificationApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNotificationApi.iseq.encrypted
04-01 12:48:35.883 6201 6485 I APP : I 04/01/2022 12:48:35:883 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoNotificationApi.iseq.encrypted
04-01 12:48:35.888 6201 6485 I APP : I 04/01/2022 12:48:35:888 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:35.907 6201 6485 I APP : I 04/01/2022 12:48:35:907 b5419cc0 RhoRuby| find_file: fname: RhoTimerApi
04-01 12:48:35.907 6201 6485 I APP : I 04/01/2022 12:48:35:907 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:35.908 6201 6485 I APP : I 04/01/2022 12:48:35:907 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoTimerApi.iseq
04-01 12:48:35.909 6201 6485 I APP : I 04/01/2022 12:48:35:909 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoTimerApi.iseq.encrypted
04-01 12:48:35.913 6201 6485 I APP : I 04/01/2022 12:48:35:912 b5419cc0 RhoRuby| require_compiled: RhoTimerApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoTimerApi.iseq.encrypted
04-01 12:48:35.915 6201 6485 I APP : I 04/01/2022 12:48:35:914 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoTimerApi.iseq.encrypted
04-01 12:48:35.917 6201 6485 I APP : I 04/01/2022 12:48:35:916 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.010 6201 6485 I APP : I 04/01/2022 12:48:36:010 b5419cc0 RhoRuby| find_file: fname: RhoSignatureApi
04-01 12:48:36.010 6201 6485 I APP : I 04/01/2022 12:48:36:010 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.011 6201 6485 I APP : I 04/01/2022 12:48:36:010 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSignatureApi.iseq
04-01 12:48:36.012 6201 6485 I APP : I 04/01/2022 12:48:36:012 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSignatureApi.iseq.encrypted
04-01 12:48:36.012 6201 6485 I APP : I 04/01/2022 12:48:36:012 b5419cc0 RhoRuby| require_compiled: RhoSignatureApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSignatureApi.iseq.encrypted
04-01 12:48:36.014 6201 6485 I APP : I 04/01/2022 12:48:36:014 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoSignatureApi.iseq.encrypted
04-01 12:48:36.021 6201 6485 I APP : I 04/01/2022 12:48:36:020 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.051 6201 6485 I APP : I 04/01/2022 12:48:36:051 b5419cc0 RhoRuby| find_file: fname: RhoCameraApi
04-01 12:48:36.052 6201 6485 I APP : I 04/01/2022 12:48:36:052 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.052 6201 6485 I APP : I 04/01/2022 12:48:36:052 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoCameraApi.iseq
04-01 12:48:36.053 6201 6485 I APP : I 04/01/2022 12:48:36:053 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoCameraApi.iseq.encrypted
04-01 12:48:36.054 6201 6485 I APP : I 04/01/2022 12:48:36:053 b5419cc0 RhoRuby| require_compiled: RhoCameraApi, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoCameraApi.iseq.encrypted
04-01 12:48:36.063 6201 6485 I APP : I 04/01/2022 12:48:36:055 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/RhoCameraApi.iseq.encrypted
04-01 12:48:36.075 6201 6485 I APP : I 04/01/2022 12:48:36:075 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.076 6201 6485 I APP : I 04/01/2022 12:48:36:076 b5419cc0 MediacaptureInit.cpp: 17| Init_Mediacapture_extension Loading Videocapture extension
04-01 12:48:36.151 6201 6485 I APP : I 04/01/2022 12:48:36:150 b5419cc0 RhoRuby| find_file: fname: rhoframework
04-01 12:48:36.151 6201 6485 I APP : I 04/01/2022 12:48:36:151 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.151 6201 6485 I APP : I 04/01/2022 12:48:36:151 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhoframework.iseq
04-01 12:48:36.152 6201 6485 I APP : I 04/01/2022 12:48:36:152 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhoframework.iseq.encrypted
04-01 12:48:36.153 6201 6485 I APP : I 04/01/2022 12:48:36:152 b5419cc0 RhoRuby| require_compiled: rhoframework, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhoframework.iseq.encrypted
04-01 12:48:36.154 6201 6485 I APP : I 04/01/2022 12:48:36:154 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhoframework.iseq.encrypted
04-01 12:48:36.165 6201 6485 I APP : I 04/01/2022 12:48:36:165 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.166 6201 6485 I APP : I 04/01/2022 12:48:36:166 b5419cc0 APP| lib/rhoframework.rb:88: warning: already initialized constant Thread::MUTEX_FOR_THREAD_EXCLUSIVE
04-01 12:48:36.166 6201 6485 I APP : I 04/01/2022 12:48:36:166 b5419cc0 APP| <internal:prelude>:4: warning: previous definition of MUTEX_FOR_THREAD_EXCLUSIVE was here
04-01 12:48:36.166 6201 6485 I APP : I 04/01/2022 12:48:36:166 b5419cc0 RhoRuby| find_file: fname: rational
04-01 12:48:36.167 6201 6485 I APP : I 04/01/2022 12:48:36:167 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.167 6201 6485 I APP : I 04/01/2022 12:48:36:167 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rational.iseq
04-01 12:48:36.168 6201 6485 I APP : I 04/01/2022 12:48:36:168 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rational.iseq.encrypted
04-01 12:48:36.169 6201 6485 I APP : I 04/01/2022 12:48:36:168 b5419cc0 RhoRuby| require_compiled: rational, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rational.iseq.encrypted
04-01 12:48:36.171 6201 6485 I APP : I 04/01/2022 12:48:36:171 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rational.iseq.encrypted
04-01 12:48:36.173 6201 6485 I APP : I 04/01/2022 12:48:36:173 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.173 6201 6485 I APP : I 04/01/2022 12:48:36:173 b5419cc0 RhoRuby| find_file: fname: json
04-01 12:48:36.174 6201 6485 I APP : I 04/01/2022 12:48:36:173 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.174 6201 6485 I APP : I 04/01/2022 12:48:36:174 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json.iseq
04-01 12:48:36.175 6201 6485 I APP : I 04/01/2022 12:48:36:175 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json.iseq.encrypted
04-01 12:48:36.176 6201 6485 I APP : I 04/01/2022 12:48:36:175 b5419cc0 RhoRuby| require_compiled: json, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json.iseq.encrypted
04-01 12:48:36.178 6201 6485 I APP : I 04/01/2022 12:48:36:177 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json.iseq.encrypted
04-01 12:48:36.179 6201 6485 I APP : I 04/01/2022 12:48:36:179 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.179 6201 6485 I APP : I 04/01/2022 12:48:36:179 b5419cc0 RhoRuby| find_file: fname: json/common
04-01 12:48:36.179 6201 6485 I APP : I 04/01/2022 12:48:36:179 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.180 6201 6485 I APP : I 04/01/2022 12:48:36:179 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/common.iseq
04-01 12:48:36.181 6201 6485 I APP : I 04/01/2022 12:48:36:181 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/common.iseq.encrypted
04-01 12:48:36.181 6201 6485 I APP : I 04/01/2022 12:48:36:181 b5419cc0 RhoRuby| require_compiled: json/common, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/common.iseq.encrypted
04-01 12:48:36.184 6201 6485 I APP : I 04/01/2022 12:48:36:183 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/common.iseq.encrypted
04-01 12:48:36.204 6201 6485 I APP : I 04/01/2022 12:48:36:204 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.204 6201 6485 I APP : I 04/01/2022 12:48:36:204 b5419cc0 RhoRuby| find_file: fname: json/version
04-01 12:48:36.205 6201 6485 I APP : I 04/01/2022 12:48:36:204 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.205 6201 6485 I APP : I 04/01/2022 12:48:36:205 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/version.iseq
04-01 12:48:36.207 6201 6485 I APP : I 04/01/2022 12:48:36:206 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/version.iseq.encrypted
04-01 12:48:36.208 6201 6485 I APP : I 04/01/2022 12:48:36:207 b5419cc0 RhoRuby| require_compiled: json/version, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/version.iseq.encrypted
04-01 12:48:36.213 6201 6485 I APP : I 04/01/2022 12:48:36:213 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/version.iseq.encrypted
04-01 12:48:36.215 6201 6485 I APP : I 04/01/2022 12:48:36:215 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.217 6201 6485 I APP : I 04/01/2022 12:48:36:217 b5419cc0 RhoRuby| find_file: fname: json/pure
04-01 12:48:36.217 6201 6485 I APP : I 04/01/2022 12:48:36:217 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.218 6201 6485 I APP : I 04/01/2022 12:48:36:218 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure.iseq
04-01 12:48:36.219 6201 6485 I APP : I 04/01/2022 12:48:36:219 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure.iseq.encrypted
04-01 12:48:36.219 6201 6485 I APP : I 04/01/2022 12:48:36:219 b5419cc0 RhoRuby| require_compiled: json/pure, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure.iseq.encrypted
04-01 12:48:36.221 6201 6485 I APP : I 04/01/2022 12:48:36:221 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure.iseq.encrypted
04-01 12:48:36.222 6201 6201 I APP : I 04/01/2022 12:48:36:222 c3eeb4f8 ConnectionChangeReceiver| LOGGER: Network status change, connected = true
04-01 12:48:36.222 6201 6201 I APP : E 04/01/2022 12:48:36:222 c3eeb4f8 RhodesAppJNI| nativeNotify
04-01 12:48:36.222 6201 6201 I APP : E 04/01/2022 12:48:36:222 c3eeb4f8 RhodesApp| enter notifyReceiver
04-01 12:48:36.222 6201 6201 I APP : E 04/01/2022 12:48:36:222 c3eeb4f8 RhodesApp| calling onNetworkStatusChanged
04-01 12:48:36.223 6201 6201 I APP : I 04/01/2022 12:48:36:223 c3eeb4f8 RhodesActivity| New start parameters:
04-01 12:48:36.224 6201 6201 I APP : I 04/01/2022 12:48:36:224 c3eeb4f8 RhodesApp| New start params:
04-01 12:48:36.232 6201 6485 I APP : I 04/01/2022 12:48:36:232 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.232 6201 6485 I APP : I 04/01/2022 12:48:36:232 b5419cc0 RhoRuby| find_file: fname: json/pure/generator
04-01 12:48:36.232 6201 6485 I APP : I 04/01/2022 12:48:36:232 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.233 6201 6485 I APP : I 04/01/2022 12:48:36:232 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure/generator.iseq
04-01 12:48:36.234 6201 6485 I APP : I 04/01/2022 12:48:36:234 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure/generator.iseq.encrypted
04-01 12:48:36.234 6201 6485 I APP : I 04/01/2022 12:48:36:234 b5419cc0 RhoRuby| require_compiled: json/pure/generator, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure/generator.iseq.encrypted
04-01 12:48:36.236 6201 6485 I APP : I 04/01/2022 12:48:36:236 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/json/pure/generator.iseq.encrypted
04-01 12:48:36.272 6201 6485 I APP : I 04/01/2022 12:48:36:271 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.281 6201 6485 I APP : I 04/01/2022 12:48:36:281 b5419cc0 RhoRuby| find_file: fname: _socket
04-01 12:48:36.282 6201 6485 I APP : I 04/01/2022 12:48:36:281 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.282 6201 6485 I APP : I 04/01/2022 12:48:36:282 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/_socket.iseq
04-01 12:48:36.288 6201 6485 I APP : I 04/01/2022 12:48:36:285 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/_socket.iseq.encrypted
04-01 12:48:36.289 6201 6485 I APP : I 04/01/2022 12:48:36:289 b5419cc0 RhoRuby| require_compiled: _socket, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/_socket.iseq.encrypted
04-01 12:48:36.293 6201 6485 I APP : I 04/01/2022 12:48:36:293 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/_socket.iseq.encrypted
04-01 12:48:36.361 6201 6485 I APP : I 04/01/2022 12:48:36:361 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.361 6201 6485 I APP : I 04/01/2022 12:48:36:361 b5419cc0 RhoRuby| find_file: fname: io/wait
04-01 12:48:36.362 6201 6485 I APP : I 04/01/2022 12:48:36:362 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.364 6201 6485 I APP : I 04/01/2022 12:48:36:362 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/io/wait.iseq
04-01 12:48:36.365 6201 6485 I APP : I 04/01/2022 12:48:36:365 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/io/wait.iseq.encrypted
04-01 12:48:36.366 6201 6485 I APP : I 04/01/2022 12:48:36:365 b5419cc0 RhoRuby| require_compiled: io/wait, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/io/wait.iseq.encrypted
04-01 12:48:36.369 6201 6485 I APP : I 04/01/2022 12:48:36:368 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/io/wait.iseq.encrypted
04-01 12:48:36.370 6201 6485 I APP : I 04/01/2022 12:48:36:370 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.372 6201 6485 I APP : I 04/01/2022 12:48:36:371 b5419cc0 RhoRuby| find_file: fname: rho/rhoapplication
04-01 12:48:36.372 6201 6485 I APP : I 04/01/2022 12:48:36:372 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.372 6201 6485 I APP : I 04/01/2022 12:48:36:372 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoapplication.iseq
04-01 12:48:36.373 6201 6485 I APP : I 04/01/2022 12:48:36:373 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoapplication.iseq.encrypted
04-01 12:48:36.374 6201 6485 I APP : I 04/01/2022 12:48:36:373 b5419cc0 RhoRuby| require_compiled: rho/rhoapplication, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoapplication.iseq.encrypted
04-01 12:48:36.376 6201 6485 I APP : I 04/01/2022 12:48:36:375 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoapplication.iseq.encrypted
04-01 12:48:36.402 6201 6485 I APP : I 04/01/2022 12:48:36:402 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.402 6201 6485 I APP : I 04/01/2022 12:48:36:402 b5419cc0 RhoRuby| find_file: fname: rholang/localization_simplified
04-01 12:48:36.403 6201 6485 I APP : I 04/01/2022 12:48:36:402 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.403 6201 6485 I APP : I 04/01/2022 12:48:36:403 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/localization_simplified.iseq
04-01 12:48:36.404 6201 6485 I APP : I 04/01/2022 12:48:36:404 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/localization_simplified.iseq.encrypted
04-01 12:48:36.404 6201 6485 I APP : I 04/01/2022 12:48:36:404 b5419cc0 RhoRuby| require_compiled: rholang/localization_simplified, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/localization_simplified.iseq.encrypted
04-01 12:48:36.406 6201 6485 I APP : I 04/01/2022 12:48:36:406 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/localization_simplified.iseq.encrypted
04-01 12:48:36.435 6201 6485 I APP : I 04/01/2022 12:48:36:435 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.436 6201 6485 I APP : I 04/01/2022 12:48:36:436 b5419cc0 RhoRuby| find_file: fname: rho/rhomsg
04-01 12:48:36.436 6201 6485 I APP : I 04/01/2022 12:48:36:436 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.436 6201 6485 I APP : I 04/01/2022 12:48:36:436 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhomsg.iseq
04-01 12:48:36.438 6201 6485 I APP : I 04/01/2022 12:48:36:437 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhomsg.iseq.encrypted
04-01 12:48:36.439 6201 6485 I APP : I 04/01/2022 12:48:36:438 b5419cc0 RhoRuby| require_compiled: rho/rhomsg, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhomsg.iseq.encrypted
04-01 12:48:36.440 6201 6485 I APP : I 04/01/2022 12:48:36:440 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhomsg.iseq.encrypted
04-01 12:48:36.442 6201 6485 I APP : I 04/01/2022 12:48:36:442 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.442 6201 6485 I APP : I 04/01/2022 12:48:36:442 b5419cc0 RhoRuby| find_file: fname: rho/rhotabbar
04-01 12:48:36.443 6201 6485 I APP : I 04/01/2022 12:48:36:443 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.443 6201 6485 I APP : I 04/01/2022 12:48:36:443 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotabbar.iseq
04-01 12:48:36.446 6201 6485 I APP : I 04/01/2022 12:48:36:446 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotabbar.iseq.encrypted
04-01 12:48:36.447 6201 6485 I APP : I 04/01/2022 12:48:36:446 b5419cc0 RhoRuby| require_compiled: rho/rhotabbar, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotabbar.iseq.encrypted
04-01 12:48:36.449 6201 6485 I APP : I 04/01/2022 12:48:36:449 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotabbar.iseq.encrypted
04-01 12:48:36.454 6201 6485 I APP : I 04/01/2022 12:48:36:454 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.455 6201 6485 I APP : I 04/01/2022 12:48:36:455 b5419cc0 RhoRuby| find_file: fname: rho/rhotoolbar
04-01 12:48:36.455 6201 6485 I APP : I 04/01/2022 12:48:36:455 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.455 6201 6485 I APP : I 04/01/2022 12:48:36:455 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotoolbar.iseq
04-01 12:48:36.457 6201 6485 I APP : I 04/01/2022 12:48:36:457 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotoolbar.iseq.encrypted
04-01 12:48:36.457 6201 6485 I APP : I 04/01/2022 12:48:36:457 b5419cc0 RhoRuby| require_compiled: rho/rhotoolbar, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotoolbar.iseq.encrypted
04-01 12:48:36.459 6201 6485 I APP : I 04/01/2022 12:48:36:458 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhotoolbar.iseq.encrypted
04-01 12:48:36.462 6201 6485 I APP : I 04/01/2022 12:48:36:461 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.462 6201 6485 I APP : I 04/01/2022 12:48:36:462 b5419cc0 APP| Current locale: ; Country code:
04-01 12:48:36.463 6201 6485 I APP : I 04/01/2022 12:48:36:463 b5419cc0 APP| Locilized file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_
04-01 12:48:36.464 6201 6485 I APP : I 04/01/2022 12:48:36:464 b5419cc0 APP| Could not find resources for locale: fr;file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_
04-01 12:48:36.465 6201 6485 I APP : I 04/01/2022 12:48:36:465 b5419cc0 APP| Load english resources.
04-01 12:48:36.465 6201 6485 I APP : I 04/01/2022 12:48:36:465 b5419cc0 RhoRuby| find_file: fname: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en
04-01 12:48:36.466 6201 6485 I APP : I 04/01/2022 12:48:36:465 b5419cc0 RhoRuby| find_file: res: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en.iseq
04-01 12:48:36.466 6201 6485 I APP : I 04/01/2022 12:48:36:466 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en.iseq.encrypted
04-01 12:48:36.467 6201 6485 I APP : I 04/01/2022 12:48:36:466 b5419cc0 RhoRuby| require_compiled: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en.iseq.encrypted
04-01 12:48:36.468 6201 6485 I APP : I 04/01/2022 12:48:36:468 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/lang_en.iseq.encrypted
04-01 12:48:36.472 6201 6485 I APP : I 04/01/2022 12:48:36:472 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.473 6201 6485 I APP : I 04/01/2022 12:48:36:473 b5419cc0 APP| Locilized file: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/lang/lang_
04-01 12:48:36.474 6201 6485 I APP : I 04/01/2022 12:48:36:474 b5419cc0 APP| Could not find resources for locale: fr;file: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/lang/lang_
04-01 12:48:36.475 6201 6485 I APP : I 04/01/2022 12:48:36:475 b5419cc0 APP| Locilized file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_
04-01 12:48:36.477 6201 6485 I APP : I 04/01/2022 12:48:36:477 b5419cc0 APP| Could not find resources for locale: fr;file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_
04-01 12:48:36.479 6201 6485 I APP : I 04/01/2022 12:48:36:478 b5419cc0 APP| Load english resources.
04-01 12:48:36.479 6201 6485 I APP : I 04/01/2022 12:48:36:479 b5419cc0 RhoRuby| find_file: fname: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en
04-01 12:48:36.479 6201 6485 I APP : I 04/01/2022 12:48:36:479 b5419cc0 RhoRuby| find_file: res: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en.iseq
04-01 12:48:36.481 6201 6485 I APP : I 04/01/2022 12:48:36:480 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en.iseq.encrypted
04-01 12:48:36.481 6201 6485 I APP : I 04/01/2022 12:48:36:481 b5419cc0 RhoRuby| require_compiled: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en.iseq.encrypted
04-01 12:48:36.483 6201 6485 I APP : I 04/01/2022 12:48:36:483 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhoerror_en.iseq.encrypted
04-01 12:48:36.487 6201 6485 I APP : I 04/01/2022 12:48:36:487 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.488 6201 6485 I APP : I 04/01/2022 12:48:36:487 b5419cc0 APP| Locilized file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_
04-01 12:48:36.489 6201 6485 I APP : I 04/01/2022 12:48:36:489 b5419cc0 APP| Could not find resources for locale: fr;file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_
04-01 12:48:36.490 6201 6485 I APP : I 04/01/2022 12:48:36:490 b5419cc0 APP| Load english resources.
04-01 12:48:36.490 6201 6485 I APP : I 04/01/2022 12:48:36:490 b5419cc0 RhoRuby| find_file: fname: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en
04-01 12:48:36.490 6201 6485 I APP : I 04/01/2022 12:48:36:490 b5419cc0 RhoRuby| find_file: res: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en.iseq
04-01 12:48:36.491 6201 6485 I APP : I 04/01/2022 12:48:36:491 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en.iseq.encrypted
04-01 12:48:36.492 6201 6485 I APP : I 04/01/2022 12:48:36:491 b5419cc0 RhoRuby| require_compiled: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en.iseq.encrypted
04-01 12:48:36.493 6201 6485 I APP : I 04/01/2022 12:48:36:493 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rholang/rhomsg_en.iseq.encrypted
04-01 12:48:36.495 6201 6485 I APP : I 04/01/2022 12:48:36:495 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.496 6201 6485 I APP : I 04/01/2022 12:48:36:495 b5419cc0 RhoRuby| find_file: fname: indifferent_access
04-01 12:48:36.496 6201 6485 I APP : I 04/01/2022 12:48:36:496 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.496 6201 6485 I APP : I 04/01/2022 12:48:36:496 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/indifferent_access.iseq
04-01 12:48:36.497 6201 6485 I APP : I 04/01/2022 12:48:36:497 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/indifferent_access.iseq.encrypted
04-01 12:48:36.497 6201 6485 I APP : I 04/01/2022 12:48:36:497 b5419cc0 RhoRuby| require_compiled: indifferent_access, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/indifferent_access.iseq.encrypted
04-01 12:48:36.499 6201 6485 I APP : I 04/01/2022 12:48:36:498 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/indifferent_access.iseq.encrypted
04-01 12:48:36.508 6201 6485 I APP : I 04/01/2022 12:48:36:507 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.508 6201 6485 I APP : I 04/01/2022 12:48:36:508 b5419cc0 RhoRuby| find_file: fname: rho/rhosupport
04-01 12:48:36.508 6201 6485 I APP : I 04/01/2022 12:48:36:508 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.509 6201 6485 I APP : I 04/01/2022 12:48:36:509 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhosupport.iseq
04-01 12:48:36.510 6201 6485 I APP : I 04/01/2022 12:48:36:510 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhosupport.iseq.encrypted
04-01 12:48:36.510 6201 6485 I APP : I 04/01/2022 12:48:36:510 b5419cc0 RhoRuby| require_compiled: rho/rhosupport, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhosupport.iseq.encrypted
04-01 12:48:36.512 6201 6485 I APP : I 04/01/2022 12:48:36:512 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhosupport.iseq.encrypted
04-01 12:48:36.529 6201 6485 I APP : I 04/01/2022 12:48:36:529 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.531 6201 6485 I APP : I 04/01/2022 12:48:36:530 b5419cc0 RhoRuby| find_file: fname: rho/rhocontroller
04-01 12:48:36.531 6201 6485 I APP : I 04/01/2022 12:48:36:531 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.531 6201 6485 I APP : I 04/01/2022 12:48:36:531 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhocontroller.iseq
04-01 12:48:36.536 6201 6485 I APP : I 04/01/2022 12:48:36:532 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhocontroller.iseq.encrypted
04-01 12:48:36.536 6201 6485 I APP : I 04/01/2022 12:48:36:536 b5419cc0 RhoRuby| require_compiled: rho/rhocontroller, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhocontroller.iseq.encrypted
04-01 12:48:36.538 6201 6485 I APP : I 04/01/2022 12:48:36:537 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhocontroller.iseq.encrypted
04-01 12:48:36.552 6201 6485 I APP : I 04/01/2022 12:48:36:551 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.552 6201 6485 I APP : I 04/01/2022 12:48:36:552 b5419cc0 RhoRuby| find_file: fname: rho/render
04-01 12:48:36.552 6201 6485 I APP : I 04/01/2022 12:48:36:552 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.553 6201 6485 I APP : I 04/01/2022 12:48:36:552 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/render.iseq
04-01 12:48:36.555 6201 6485 I APP : I 04/01/2022 12:48:36:554 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/render.iseq.encrypted
04-01 12:48:36.555 6201 6485 I APP : I 04/01/2022 12:48:36:555 b5419cc0 RhoRuby| require_compiled: rho/render, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/render.iseq.encrypted
04-01 12:48:36.557 6201 6485 I APP : I 04/01/2022 12:48:36:557 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/render.iseq.encrypted
04-01 12:48:36.586 6201 6485 I APP : I 04/01/2022 12:48:36:586 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.586 6201 6485 I APP : I 04/01/2022 12:48:36:586 b5419cc0 RhoRuby| find_file: fname: rho/rho
04-01 12:48:36.587 6201 6485 I APP : I 04/01/2022 12:48:36:587 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.587 6201 6485 I APP : I 04/01/2022 12:48:36:587 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rho.iseq
04-01 12:48:36.588 6201 6485 I APP : I 04/01/2022 12:48:36:588 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rho.iseq.encrypted
04-01 12:48:36.588 6201 6485 I APP : I 04/01/2022 12:48:36:588 b5419cc0 RhoRuby| require_compiled: rho/rho, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rho.iseq.encrypted
04-01 12:48:36.590 6201 6485 I APP : I 04/01/2022 12:48:36:589 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rho.iseq.encrypted
04-01 12:48:36.676 6201 6485 I APP : I 04/01/2022 12:48:36:676 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.676 6201 6485 I APP : I 04/01/2022 12:48:36:676 b5419cc0 RhoRuby| find_file: fname: rho/rhoerror
04-01 12:48:36.676 6201 6485 I APP : I 04/01/2022 12:48:36:676 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.677 6201 6485 I APP : I 04/01/2022 12:48:36:676 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoerror.iseq
04-01 12:48:36.678 6201 6485 I APP : I 04/01/2022 12:48:36:678 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoerror.iseq.encrypted
04-01 12:48:36.678 6201 6485 I APP : I 04/01/2022 12:48:36:678 b5419cc0 RhoRuby| require_compiled: rho/rhoerror, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoerror.iseq.encrypted
04-01 12:48:36.680 6201 6485 I APP : I 04/01/2022 12:48:36:680 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoerror.iseq.encrypted
04-01 12:48:36.683 6201 6485 I APP : I 04/01/2022 12:48:36:682 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.683 6201 6485 I APP : I 04/01/2022 12:48:36:683 b5419cc0 RhoRuby| find_file: fname: rhodes
04-01 12:48:36.683 6201 6485 I APP : I 04/01/2022 12:48:36:683 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.683 6201 6485 I APP : I 04/01/2022 12:48:36:683 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhodes.iseq
04-01 12:48:36.684 6201 6485 I APP : I 04/01/2022 12:48:36:684 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhodes.iseq.encrypted
04-01 12:48:36.685 6201 6485 I APP : I 04/01/2022 12:48:36:684 b5419cc0 RhoRuby| require_compiled: rhodes, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhodes.iseq.encrypted
04-01 12:48:36.687 6201 6485 I APP : I 04/01/2022 12:48:36:686 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhodes.iseq.encrypted
04-01 12:48:36.689 6201 6485 I APP : I 04/01/2022 12:48:36:689 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.690 6201 6485 I APP : I 04/01/2022 12:48:36:690 b5419cc0 APP| Looking for RhoConnectClient
04-01 12:48:36.691 6201 6485 I APP : I 04/01/2022 12:48:36:691 b5419cc0 APP| RhoConnectClient not found ( #<NameError: uninitialized constant Rho::RhoConnectClient> ). Defining stub module
04-01 12:48:36.693 6201 6485 I APP : I 04/01/2022 12:48:36:693 b5419cc0 RhoRuby| find_file: fname: rho/rhoviewhelpers
04-01 12:48:36.693 6201 6485 I APP : I 04/01/2022 12:48:36:693 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.693 6201 6485 I APP : I 04/01/2022 12:48:36:693 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoviewhelpers.iseq
04-01 12:48:36.695 6201 6485 I APP : I 04/01/2022 12:48:36:694 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoviewhelpers.iseq.encrypted
04-01 12:48:36.695 6201 6485 I APP : I 04/01/2022 12:48:36:695 b5419cc0 RhoRuby| require_compiled: rho/rhoviewhelpers, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoviewhelpers.iseq.encrypted
04-01 12:48:36.696 6201 6485 I APP : I 04/01/2022 12:48:36:696 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhoviewhelpers.iseq.encrypted
04-01 12:48:36.707 6201 6485 I APP : I 04/01/2022 12:48:36:706 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.707 6201 6485 I APP : I 04/01/2022 12:48:36:707 b5419cc0 RhoRuby| find_file: fname: rho
04-01 12:48:36.707 6201 6485 I APP : I 04/01/2022 12:48:36:707 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.708 6201 6485 I APP : I 04/01/2022 12:48:36:707 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho.iseq
04-01 12:48:36.709 6201 6485 I APP : I 04/01/2022 12:48:36:708 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho.iseq.encrypted
04-01 12:48:36.709 6201 6485 I APP : I 04/01/2022 12:48:36:709 b5419cc0 RhoRuby| require_compiled: rho, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho.iseq.encrypted
04-01 12:48:36.710 6201 6485 I APP : I 04/01/2022 12:48:36:710 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho.iseq.encrypted
04-01 12:48:36.711 6201 6485 I APP : I 04/01/2022 12:48:36:711 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.712 6201 6485 I APP : I 04/01/2022 12:48:36:711 b5419cc0 APP| RHOSTUDIO_REMOTE_DEBUG=false
04-01 12:48:36.712 6201 6485 I APP : I 04/01/2022 12:48:36:712 b5419cc0 APP| RHOSTUDIO_REMOTE_HOST=
04-01 12:48:36.712 6201 6485 I APP : I 04/01/2022 12:48:36:712 b5419cc0 APP| RHOSTUDIO_REMOTE_PATH=
04-01 12:48:36.712 6201 6485 I APP : I 04/01/2022 12:48:36:712 b5419cc0 APP| RHO loaded
04-01 12:48:36.713 6201 6485 I APP : I 04/01/2022 12:48:36:713 b5419cc0 APP| Calling RHO.initialize , use_new_orm: 0
04-01 12:48:36.713 6201 6485 I APP : I 04/01/2022 12:48:36:713 b5419cc0 APP| MZV_DEBUG: we are in use_new_orm false false
04-01 12:48:36.716 6201 6485 I APP : I 04/01/2022 12:48:36:716 b5419cc0 DB| Open DB: /data/user/0/com.rhomobile.rubyapps/rhodata/db/syncdbapp.sqlite
04-01 12:48:36.718 6201 6485 I APP : I 04/01/2022 12:48:36:718 b5419cc0 DB| bRhoReset: false
04-01 12:48:36.719 6201 6485 I APP : I 04/01/2022 12:48:36:719 b5419cc0 DB| bAppReset: false
04-01 12:48:36.719 6201 6485 I APP : I 04/01/2022 12:48:36:719 b5419cc0 DB| bDbFormatChanged: false
04-01 12:48:36.732 6201 6485 I APP : I 04/01/2022 12:48:36:732 b5419cc0 DB| Open DB: /data/user/0/com.rhomobile.rubyapps/rhodata/db/syncdbuser.sqlite
04-01 12:48:36.734 6201 6485 I APP : I 04/01/2022 12:48:36:734 b5419cc0 DB| bRhoReset: false
04-01 12:48:36.734 6201 6485 I APP : I 04/01/2022 12:48:36:734 b5419cc0 DB| bAppReset: false
04-01 12:48:36.734 6201 6485 I APP : I 04/01/2022 12:48:36:734 b5419cc0 DB| bDbFormatChanged: false
04-01 12:48:36.738 6201 6485 I APP : I 04/01/2022 12:48:36:738 b5419cc0 DB| Open DB: /data/user/0/com.rhomobile.rubyapps/rhodata/db/syncdblocal.sqlite
04-01 12:48:36.740 6201 6485 I APP : I 04/01/2022 12:48:36:740 b5419cc0 DB| bRhoReset: false
04-01 12:48:36.740 6201 6485 I APP : I 04/01/2022 12:48:36:740 b5419cc0 DB| bAppReset: false
04-01 12:48:36.741 6201 6485 I APP : I 04/01/2022 12:48:36:740 b5419cc0 DB| bDbFormatChanged: false
04-01 12:48:36.744 6201 6485 I APP : I 04/01/2022 12:48:36:744 b5419cc0 RhoRuby| find_file: fname: rhom
04-01 12:48:36.744 6201 6485 I APP : I 04/01/2022 12:48:36:744 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.745 6201 6485 I APP : I 04/01/2022 12:48:36:745 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom.iseq
04-01 12:48:36.746 6201 6485 I APP : I 04/01/2022 12:48:36:746 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom.iseq.encrypted
04-01 12:48:36.746 6201 6485 I APP : I 04/01/2022 12:48:36:746 b5419cc0 RhoRuby| require_compiled: rhom, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom.iseq.encrypted
04-01 12:48:36.747 6201 6485 I APP : I 04/01/2022 12:48:36:747 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom.iseq.encrypted
04-01 12:48:36.748 6201 6485 I APP : I 04/01/2022 12:48:36:748 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.748 6201 6485 I APP : I 04/01/2022 12:48:36:748 b5419cc0 RhoRuby| find_file: fname: rhom/rhom
04-01 12:48:36.749 6201 6485 I APP : I 04/01/2022 12:48:36:748 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.749 6201 6485 I APP : I 04/01/2022 12:48:36:749 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom.iseq
04-01 12:48:36.750 6201 6485 I APP : I 04/01/2022 12:48:36:750 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom.iseq.encrypted
04-01 12:48:36.750 6201 6485 I APP : I 04/01/2022 12:48:36:750 b5419cc0 RhoRuby| require_compiled: rhom/rhom, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom.iseq.encrypted
04-01 12:48:36.752 6201 6485 I APP : I 04/01/2022 12:48:36:752 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom.iseq.encrypted
04-01 12:48:36.770 6201 6485 I APP : I 04/01/2022 12:48:36:770 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.770 6201 6485 I APP : I 04/01/2022 12:48:36:770 b5419cc0 RhoRuby| find_file: fname: rhom/rhom_object_factory
04-01 12:48:36.770 6201 6485 I APP : I 04/01/2022 12:48:36:770 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.771 6201 6485 I APP : I 04/01/2022 12:48:36:771 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object_factory.iseq
04-01 12:48:36.772 6201 6485 I APP : I 04/01/2022 12:48:36:772 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object_factory.iseq.encrypted
04-01 12:48:36.772 6201 6485 I APP : I 04/01/2022 12:48:36:772 b5419cc0 RhoRuby| require_compiled: rhom/rhom_object_factory, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object_factory.iseq.encrypted
04-01 12:48:36.774 6201 6485 I APP : I 04/01/2022 12:48:36:774 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object_factory.iseq.encrypted
04-01 12:48:36.900 6201 6485 I APP : I 04/01/2022 12:48:36:900 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.902 6201 6485 I APP : I 04/01/2022 12:48:36:902 b5419cc0 RhoRuby| find_file: fname: rhom/rhom_object
04-01 12:48:36.902 6201 6485 I APP : I 04/01/2022 12:48:36:902 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.902 6201 6485 I APP : I 04/01/2022 12:48:36:902 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object.iseq
04-01 12:48:36.904 6201 6485 I APP : I 04/01/2022 12:48:36:903 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object.iseq.encrypted
04-01 12:48:36.904 6201 6485 I APP : I 04/01/2022 12:48:36:904 b5419cc0 RhoRuby| require_compiled: rhom/rhom_object, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object.iseq.encrypted
04-01 12:48:36.905 6201 6485 I APP : I 04/01/2022 12:48:36:905 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_object.iseq.encrypted
04-01 12:48:36.909 6201 6485 I APP : I 04/01/2022 12:48:36:909 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.910 6201 6485 I APP : I 04/01/2022 12:48:36:909 b5419cc0 RhoRuby| find_file: fname: rhom/rhom_model
04-01 12:48:36.910 6201 6485 I APP : I 04/01/2022 12:48:36:910 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.910 6201 6485 I APP : I 04/01/2022 12:48:36:910 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_model.iseq
04-01 12:48:36.911 6201 6485 I APP : I 04/01/2022 12:48:36:911 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_model.iseq.encrypted
04-01 12:48:36.912 6201 6485 I APP : I 04/01/2022 12:48:36:911 b5419cc0 RhoRuby| require_compiled: rhom/rhom_model, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_model.iseq.encrypted
04-01 12:48:36.915 6201 6485 I APP : I 04/01/2022 12:48:36:914 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_model.iseq.encrypted
04-01 12:48:36.929 6201 6485 I APP : I 04/01/2022 12:48:36:929 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.931 6201 6485 I APP : I 04/01/2022 12:48:36:931 b5419cc0 RhoRuby| find_file: fname: rhom/rhom_source
04-01 12:48:36.931 6201 6485 I APP : I 04/01/2022 12:48:36:931 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.931 6201 6485 I APP : I 04/01/2022 12:48:36:931 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_source.iseq
04-01 12:48:36.933 6201 6485 I APP : I 04/01/2022 12:48:36:932 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_source.iseq.encrypted
04-01 12:48:36.933 6201 6485 I APP : I 04/01/2022 12:48:36:933 b5419cc0 RhoRuby| require_compiled: rhom/rhom_source, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_source.iseq.encrypted
04-01 12:48:36.935 6201 6485 I APP : I 04/01/2022 12:48:36:935 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rhom/rhom_source.iseq.encrypted
04-01 12:48:36.946 6201 6485 I APP : I 04/01/2022 12:48:36:945 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.948 6201 6485 I APP : I 04/01/2022 12:48:36:948 b5419cc0 GeoLocation| Creating singleton instance.
04-01 12:48:36.948 6201 6485 I APP : I 04/01/2022 12:48:36:948 b5419cc0 RhodesApp| RhoRubyInitApp...
04-01 12:48:36.948 6201 6485 I APP : I 04/01/2022 12:48:36:948 b5419cc0 APP| init_app
04-01 12:48:36.948 6201 6485 I APP : I 04/01/2022 12:48:36:948 b5419cc0 RhoRuby| find_file: fname: application
04-01 12:48:36.949 6201 6485 I APP : I 04/01/2022 12:48:36:949 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.949 6201 6485 I APP : I 04/01/2022 12:48:36:949 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/application.iseq
04-01 12:48:36.950 6201 6485 I APP : I 04/01/2022 12:48:36:949 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/apps
04-01 12:48:36.950 6201 6485 I APP : I 04/01/2022 12:48:36:950 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/application.iseq
04-01 12:48:36.951 6201 6485 I APP : I 04/01/2022 12:48:36:951 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app
04-01 12:48:36.951 6201 6485 I APP : I 04/01/2022 12:48:36:951 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/application.iseq
04-01 12:48:36.953 6201 6485 I APP : I 04/01/2022 12:48:36:953 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/application.iseq.encrypted
04-01 12:48:36.953 6201 6485 I APP : I 04/01/2022 12:48:36:953 b5419cc0 RhoRuby| require_compiled: application, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/application.iseq.encrypted
04-01 12:48:36.955 6201 6485 I APP : I 04/01/2022 12:48:36:955 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/apps/app/application.iseq.encrypted
04-01 12:48:36.967 6201 6485 I APP : I 04/01/2022 12:48:36:967 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:36.967 6201 6485 I APP : I 04/01/2022 12:48:36:967 b5419cc0 RhoRuby| find_file: fname: rho/rhobluetooth
04-01 12:48:36.967 6201 6485 I APP : I 04/01/2022 12:48:36:967 b5419cc0 RhoRuby| find_file: check dir /data/user/0/com.rhomobile.rubyapps/rhodata/lib
04-01 12:48:36.968 6201 6485 I APP : I 04/01/2022 12:48:36:967 b5419cc0 RhoRuby| find_file: check file: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhobluetooth.iseq
04-01 12:48:36.969 6201 6485 I APP : I 04/01/2022 12:48:36:969 b5419cc0 RhoRuby| find_file: RhoPreparePath: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhobluetooth.iseq.encrypted
04-01 12:48:36.970 6201 6485 I APP : I 04/01/2022 12:48:36:969 b5419cc0 RhoRuby| require_compiled: rho/rhobluetooth, full path: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhobluetooth.iseq.encrypted
04-01 12:48:36.971 6201 6485 I APP : I 04/01/2022 12:48:36:971 b5419cc0 RhoRuby| loadISeqFromFile: /data/user/0/com.rhomobile.rubyapps/rhodata/lib/rho/rhobluetooth.iseq.encrypted
04-01 12:48:36.987 6201 6485 I APP : I 04/01/2022 12:48:36:986 b5419cc0 RhoRuby| require_compiled: Loaded file encoded in ASCII
04-01 12:48:37.001 6201 6201 I APP : I 04/01/2022 12:48:37:001 c3eeb4f8 RhoBluetoothManager| make IRhoBluetoothManager instance
04-01 12:48:37.007 6201 6201 I APP : I 04/01/2022 12:48:37:007 c3eeb4f8 RhoBluetoothManagerNew| RhoBluetoothManagerNew()
04-01 12:48:37.007 6201 6201 I APP : I 04/01/2022 12:48:37:007 c3eeb4f8 RhoBluetoothManagerNew| init()
04-01 12:48:37.010 6201 6201 I APP : I 04/01/2022 12:48:37:010 c3eeb4f8 RhoBluetoothManagerNew| sharedInstance - found Bluetooth feature in device !
04-01 12:48:37.019 6201 6201 I APP : I 04/01/2022 12:48:37:019 c3eeb4f8 RhoBluetoothManagerNew| sharedInstance - Bluetooth permission is active !
04-01 12:48:37.020 6201 6201 I APP : I 04/01/2022 12:48:37:019 c3eeb4f8 RhoBluetoothManagerNew| bluetooth is enabled
04-01 12:48:37.021 6201 6201 I APP : I 04/01/2022 12:48:37:021 c3eeb4f8 RhoBluetoothManagerNew| setupSession()
04-01 12:48:37.041 6201 6201 I APP : I 04/01/2022 12:48:37:041 c3eeb4f8 RhoBluetoothManagerNew| Bluetooth device name = Nokia 3.2
04-01 12:48:37.048 6201 6527 I APP : I 04/01/2022 12:48:37:048 2de4dcc0 Start ruby thread for testing| Log thread
04-01 12:48:37.049 6201 6485 I APP : I 04/01/2022 12:48:37:048 b5419cc0 available| Bluetooth
04-01 12:48:37.049 6201 6485 I APP : I 04/01/2022 12:48:37:049 b5419cc0 RhoBluetoothManagerNew| get_device_name() : Nokia 3.2
04-01 12:48:37.050 6201 6485 I APP : I 04/01/2022 12:48:37:050 b5419cc0 Nokia 3.2| Bluetooth device name
04-01 12:48:37.051 6201 6485 I APP : I 04/01/2022 12:48:37:051 b5419cc0 APP| const_missing: Geolocation
04-01 12:48:37.052 6201 6485 I APP : I 04/01/2022 12:48:37:052 b5419cc0 APP| Application initialize failed: #<NameError: uninitialized constant AppApplication::Geolocation>;Trace: lib/rho/rho.rb:1242:in `const_missing'
04-01 12:48:37.052 6201 6485 I APP : apps/app/application.rb:27:in `initialize'
04-01 12:48:37.052 6201 6485 I APP : lib/rho/rho.rb:204:in `new'
04-01 12:48:37.052 6201 6485 I APP : lib/rho/rho.rb:204:in `get_app'
04-01 12:48:37.052 6201 6485 I APP : lib/rho/rho.rb:128:in `init_app'
|
|
|
Post by beyons on Apr 1, 2022 14:49:21 GMT
i have another question about nativetoolbar how can i change the backgroundcolor of this bar like this didn't work
Rho.NativeToolbar.create([
{
label: "Home",
action: Rho.Application.startURI
},
{
label : "Our webSite",
action : "http://"
},
{
label : "Contact Us",
action : "http://"
}
],{
background:"0xFFFFFF"
});
|
|
|
Post by Alex Epifanov on Apr 4, 2022 14:04:02 GMT
beyons, have you tried to move usage from application.rb to controllers? > 04-01 12:48:37.052 6201 6485 I APP : apps/app/application.rb:27:in `initialize' maybe API is not initialized full at the point of app initialization. Also try adding 'gps' capability to Android section of your build.yml
|
|
|
Post by Alex Epifanov on Apr 5, 2022 14:59:11 GMT
beyons please also mind case sensivity use GeoLocation, not Geolocation
|
|