Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unresolved reference: ReactNativeBlobUtil since 0.21.1 #394

Closed
Relax594 opened this issue Dec 16, 2024 · 13 comments
Closed

Unresolved reference: ReactNativeBlobUtil since 0.21.1 #394

Relax594 opened this issue Dec 16, 2024 · 13 comments

Comments

@Relax594
Copy link

Relax594 commented Dec 16, 2024

Using Self-Signed SSL Server doesn't seem to be working anymore after updating to 0.21.1. Been using 0.19.4 before and it was running just fine.

React Native: 0.75.4
React-Native-Blob-Util: 0.21.1

When trying to run Android debug, following errors occur.

Errors:

Unresolved reference: ReactNativeBlobUtil
Unresolved reference: ReactNativeBlobUtilUtils

Reverting to 0.19.4 builds the App just fine again.

MainApplication.kt

package de.xxx.xxx

import android.app.Application
import com.facebook.react.PackageList
import com.facebook.react.ReactApplication
import com.facebook.react.ReactHost
import com.facebook.react.ReactNativeHost
import com.facebook.react.ReactPackage
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
import com.facebook.react.defaults.DefaultReactNativeHost
import com.facebook.soloader.SoLoader
import java.security.cert.CertificateException
import java.security.cert.X509Certificate
import javax.net.ssl.X509TrustManager
import com.ReactNativeBlobUtil.ReactNativeBlobUtilUtils
 
class MainApplication : Application(), ReactApplication {
 
  override val reactNativeHost: ReactNativeHost =
      object : DefaultReactNativeHost(this) {
        override fun getPackages(): List<ReactPackage> =
            PackageList(this).packages.apply {
              // Packages that cannot be autolinked yet can be added manually here, for example:
              // add(MyReactNativePackage())
            }
 
        override fun getJSMainModuleName(): String = "index"
 
        override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
 
        override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
        override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
      }
 
  override val reactHost: ReactHost
    get() = getDefaultReactHost(applicationContext, reactNativeHost)
 
  override fun onCreate() {
    super.onCreate()
    SoLoader.init(this, false)
    ReactNativeBlobUtilUtils.sharedTrustManager = object : X509TrustManager {
        override fun checkClientTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
        }

        override fun checkServerTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
        }

        override fun getAcceptedIssuers(): Array<java.security.cert.X509Certificate> {
            return arrayOf()
        }
    }
    if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
      // If you opted-in for the New Architecture, we load the native entry point for this app.
      load()
    }
  }
}
@RonRadtke
Copy link
Owner

@javache are you aware of any problems here with the new extended Baseclass?
Thsat's the only change I can imagine that broke something here.

@javache
Copy link

javache commented Dec 16, 2024

BaseReactPackage was introduced in RN 0.74 and hasn't changed significantly since - you'll want to bump your min version, but that doesn't seem to be the problem here.

@RonRadtke
Copy link
Owner

Have to try it in a base project then - sounds strange.
is it working normally without th custom trustManager?

@Relax594
Copy link
Author

Relax594 commented Dec 17, 2024

Is it working normally without th custom trustManager?

It successfully builds then, yes.

However, there is a crash on startup with "Cannot read property 'getConstants' of null" here

0.19.11 builds just fine without crash on startup.

@RonRadtke
Copy link
Owner

I am working on reproducing it and seeing what's wrong

@LeunensMichiel
Copy link

However, there is a crash on startup with "Cannot read property 'getConstants' of null" here

Experiencing the same issue on Expo 52 with React Native 76. Can confirm downgrading works for me too

@RonRadtke
Copy link
Owner

Seems like the autolinking broke...
But still not sure why exactly

@RonRadtke
Copy link
Owner

RonRadtke commented Dec 17, 2024

That's the cause of it:
react-native-community/cli#2563

So nothing on my side, but still nasty...

So there are basically 3 solutions:

  1. See if you manage to update the cli to the patched version
  2. Fix the cli manually by editing the file: @react-native-community\cli-platform-android\build\config\findPackageClassName.js as shown in the linked merge. Basically you just have to adjsut the regex at the end of the file. And afterwards you must clear android/build
  3. downgrade this library until a fixed version of RN is available and you can upgrade
  4. Downgrade to 0.19.1, build once, copy the section for this lib in android/build/generated/autolinking.json, upgrade, build once, replace the section in the file. From now on it should work.

But tbh. downgrade ist probably the best solution till RN released a fixed version

@Relax594
Copy link
Author

Thank you for investigating @RonRadtke! Lets wait for RN to fix it.

@RonRadtke
Copy link
Owner

Thank you for investigating @RonRadtke! Lets wait for RN to fix it.

I am in contact with RN devs there

RonRadtke pushed a commit that referenced this issue Dec 18, 2024
@RonRadtke
Copy link
Owner

@Relax594 I just found a work-around to trick autolinking. It's released as a new version

@RonRadtke
Copy link
Owner

I close the issue since we have a workaround live

@ahsan-fidify
Copy link

@RonRadtke I'm still facing the issue in latest version 0.21.2. My react native version is 0.75.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants