Build issue in android - quickblox

BaseDialogActivity
error: cannot access Player
class file for com.google.android.exoplayer2.Player not found
BaseDialogActivity
error: cannot access Player class file for
com.google.android.exoplayer2.Player not found

Related

OSError: cannot load library 'libxcb.dll': error 0x7e

I tried to run a python program on the PyQt5 framework but it's giving me .dll file errors.
I've installed tools to fix it but it's still giving me this error :
OSError: cannot load library 'libxcb.dll': error 0x7e
I have already installed all these tools:
**Uniconvertor-2.0rc5-win64_headless.msi
GTK+ for Windows Runtime Environment Installer**
it always gives me this error "OSError: cannot load library 'libxcb.dll': error 0x7e".
Is there any other way to fix this error?

Unable to build APK file on Jenkins (react native)

I'm trying to integrate my react native project with Jenkins and i have successfully integrate my repository.
Unit tests are executing fine and gives positive result by using npm test but when i tried to build an apk file by using npm run build-android-dev_windows it gives following error. Can someone help on this?
:app:mergeDebugResourcesAAPT err(Facade for 2089038429) : No Delegate set : lost message:\\?\C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-23.0.1.aar\0f905b376ce921568ac300b16c931219\res\drawable-xhdpi\abc_list_longpressed_holo.9.png ERROR: Unable to open PNG file
AAPT err(Facade for 2089038429) : No Delegate set : lost message:\\?\C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-23.0.1.aar\0f905b376ce921568ac300b16c931219\res\drawable-hdpi\abc_list_divider_mtrl_alpha.9.png ERROR: Unable to open PNG file
AAPT err(Facade for 2089038429) : No Delegate set : lost message:\\?\C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-23.0.1.aar\0f905b376ce921568ac300b16c931219\res\drawable-mdpi\abc_spinner_mtrl_am_alpha.9.png ERROR: Unable to open PNG file
AAPT err(Facade for 2089038429) : No Delegate set : lost message:\\?\C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\support-compat-26.1.0.aar\007e2a245d6f6256c0c6fa8758345ca4\res\drawable-mdpi-v4\notification_bg_normal.9.png ERROR: Unable to open PNG file

AAPT: error: resource string not found react native

I am trying to build a react native app with facebook login.
As facebook suggests I have created two resources string string/facebook_app_id and string/fb_login_protocol_scheme and include it in Manifest file.
But when I try to build app I get these errors
AAPT: error: resource string/facebook_app_id (aka package.name:string/facebook_app_id) not found.
AAPT: error: resource string/fb_login_protocol_scheme (aka package.name:string/fb_login_protocol_scheme) not found.

Retrieving the COM class factory for component with CLSID {4C2901D1-5354-11D4-A6F9-00508B4ACA2C} failed due to the following error: 80040154

I was trying to execute an executable, but got error message:
System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {4C2901D1-5354-11D4-A6F9-00508B4ACA2C} failed due to the following error: 80040154.
this exe comes along with 4 dll files in its own folder:
ATTPRV32.dll
Csta32.dll
Interop.AXS_INPROCLib.dll
Microsoft.VisualBasic.PowerPacks.Vs.dll
I've tried to register each of these dll files but got the same error message:
.DLL was loaded, but the DllRegisterServer entry point was not found
It means the class: 4C2901D1-5354-11D4-A6F9-00508B4ACA2C isnt in the registry plain and simple.
See more here...
System.Runtime.InteropServices.COMException (0x80040154):

Retrieving COM class factory ... failed error 80040154

I have an old VB.Net application using Interop.ebCryptLib.dll that I couldn't get to work. I get the following error:
Retrieving COM class factory for component with CLSID {...} failed due to the following error: 80040154
I've searched for the error online and tried the following:
Register the dll using regsvr32 but I get the error "entry point was not found"
I tried recompiling the project and set the platform to x86 but still get the same error.
Is there any other suggestion I can try? This is an old application developed by another person. I do have access to the code and am unable to get it to work properly.
Was able to resolve this by finding the original ebCrypt.dll online. Thanks for the help #HansPassant