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: facebook #353

Closed
1 of 2 tasks
dhananjayspeed opened this issue Jan 23, 2023 · 13 comments
Closed
1 of 2 tasks

Unresolved reference: facebook #353

dhananjayspeed opened this issue Jan 23, 2023 · 13 comments
Labels
bug Something isn't working

Comments

@dhananjayspeed
Copy link

Description

Unable to create native module and android studio showing error "Unresolved reference: facebook"

Packages

  • create-react-native-library
  • react-native-builder-bob

Selected options

Execution failed for task ':generateDebugRFile'.

Could not resolve all files for configuration ':debugCompileClasspath'.
Could not find com.facebook.react:react-native:.
Required by:
project :

Link to repro

No response

Environment

System:
OS: macOS 13.0.1
CPU: (8) x64 Apple M1
Memory: 27.35 MB / 16.00 GB
Shell: 5.8.1 - /bin/zsh
Binaries:
Node: 14.17.6 - /usr/local/bin/node
Yarn: 1.22.19 - /usr/local/bin/yarn
npm: 9.1.1 - /usr/local/bin/npm
Watchman: Not Found
Managers:
CocoaPods: 1.11.3 - /usr/local/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 22.2, iOS 16.2, macOS 13.1, tvOS 16.1, watchOS 9.1
Android SDK: Not Found
IDEs:
Android Studio: 2021.3 AI-213.7172.25.2113.9123335
Xcode: 14.2/14C18 - /usr/bin/xcodebuild
Languages:
Java: 15.0.2 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.1 => 0.71.1
react-native-macos: Not Found

@dhananjayspeed dhananjayspeed added the bug Something isn't working label Jan 23, 2023
@babeone
Copy link

babeone commented Feb 7, 2023

I have the same issue, any solution? Thanks :)

@Sunbreak
Copy link
Contributor

Probably duplicate of #361, fixed by #362

Try add + back

   // For < 0.71, this will be from the local maven repo
   // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
   //noinspection GradleDynamicVersion
-  implementation "com.facebook.react:react-native"
+  implementation "com.facebook.react:react-native:+"

@chandreshgroww
Copy link

@Sunbreak tried your approach of adding + but it is not working, still getting unresolved reference: facebook

I have built a clean project from create-react-native-library@latest, any suggestions?

@Sunbreak
Copy link
Contributor

@Sunbreak tried your approach of adding + but it is not working, still getting unresolved reference: facebook

I have built a clean project from create-react-native-library@latest, any suggestions?

Could you share you clean project?

@chandreshgroww
Copy link

@Sunbreak I haven't done any modification in the project created from npx create-react-native-library@latest my-lib

and performed yarn

then opened the android folder present in root (not in example folder)

and it shows unresolved reference: facebook

@Sunbreak
Copy link
Contributor

@Sunbreak I haven't done any modification in the project created from npx create-react-native-library@latest my-lib

and performed yarn

then opened the android folder present in root (not in example folder)

and it shows unresolved reference: facebook

Could you shared you code?

Different environment would use different version of create-react-native-library and generate different yarn.lock, especially react-native version

I've got 3 macOS, 1 Linux and 1 Windows PC. None of them use the same version of Nodejs/create-react-native-library/react-antive version when calling npx create-react-native-library@latest my-lib

@RalissonMattias
Copy link

I was getting the same issue so I used this com.facebook.react:react-android:+ instead of com.facebook.react:react-native:+. Detail, my React Native version is 0.71.3

@Sunbreak
Copy link
Contributor

I was getting the same issue so I used this com.facebook.react:react-android:+ instead of com.facebook.react:react-native:+. Detail, my React Native version is 0.71.3

Yep. That's the point.

Summary

Fix #361 which is introduced by 4eff3eb

According to outage postmortem, we could revert the noinspection version + back for [email protected].*

Test plan

The outage postmortem shows why 0.71.3 use react-android instead of react-native

@reyn-nova
Copy link

reyn-nova commented Mar 31, 2023

@dhananjayspeed @babeone @chandreshgroww

in android/buid.gradle (Root, not from example folder) I downgraded com.android.tools.build:gradle to this version

classpath 'com.android.tools.build:gradle:3.5.3'

then press Gradle Sync,
in what I have tried solve facebook import

@reyn-nova
Copy link

no more facebook import reference error

Screen Shot 2023-03-31 at 14 23 43

@pasquale95
Copy link

pasquale95 commented May 5, 2023

The suggestion from @Sunbreak solved the issue for me. In addition, I had to add the following line to gradle.properties:

org.gradle.jvmargs=-Xmx4096M -XX:MaxMetaspaceSize=512m

@satya164 satya164 closed this as completed Jul 4, 2023
j-piasecki pushed a commit to software-mansion/react-native-gesture-handler that referenced this issue Aug 16, 2023
I have a Project on `"react-native": "0.72.3"`. When building for
android I get the following error:

```
Could not determine the dependencies of task ':react-native-gesture-handler:compileDebugAidl'.
> Could not resolve all task dependencies for configuration ':react-native-gesture-handler:debugCompileClasspath'.
   > Could not find com.facebook.react:react-android:.
     Required by:
         project :react-native-gesture-handler 
```

With my change it works. 

I did not investigate this far, but as I understand from [this
comment](callstack/react-native-builder-bob#353 (comment))
the dependency will automatically be corrected in the respective
react-native versions (?)
@ko-devHong
Copy link

ko-devHong commented Apr 17, 2024

I was getting the same issue so I used this com.facebook.react:react-android:+ instead of com.facebook.react:react-native:+. Detail, my React Native version is 0.71.3

current default install version "react-native": "0.73.6",

I find solution from current version

// add this 
repositories {
...
    maven {
      // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
      url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android'))
    }
    maven {
      // Android JSC is installed from npm
      url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist'))
    }

    maven { url 'https://www.jitpack.io' }
}

but get error

Null extracted folder for artifact: ResolvedArtifact(componentIdentifier=com.facebook.react:react-android:0.74.0-rc.9, variant=com.facebook.react:react-android:0.74.0-rc.9 variant debugVariantDefaultApiPublication, variantName=null, artifactFile=/Users/*/.gradle/caches/modules-2/files-2.1/com.facebook.react/react-android/0.74.0-rc.9/230689da851d580ab200e95b8e677bef86e844e2/react-android-0.74.0-rc.9-debug.aar, isTestFixturesArtifact=false, extractedFolder=null, publishedLintJar=null, dependencyType=ANDROID, isWrappedModule=false)


@ALTHGA
Copy link

ALTHGA commented Dec 26, 2024

I am same problem:

Failed to resolve: com.facebook.react:react-native:+
Show in Project Structure dialog
Affected Modules: android

My Build Gradle:

buildscript {
  // Buildscript is evaluated before everything else so we can't use getExtOrDefault
  def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["BlePrinter_kotlinVersion"]

  repositories {
    google()
    mavenCentral()
  }

  dependencies {
    classpath "com.android.tools.build:gradle:7.4.2"
    // noinspection DifferentKotlinGradleVersion
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  }
}

def reactNativeArchitectures() {
  def value = rootProject.getProperties().get("reactNativeArchitectures")
  return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}

def isNewArchitectureEnabled() {
  return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
}

apply plugin: "com.android.library"
apply plugin: "kotlin-android"

if (isNewArchitectureEnabled()) {
  apply plugin: "com.facebook.react"
}

def getExtOrDefault(name) {
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["BlePrinter_" + name]
}

def getExtOrIntegerDefault(name) {
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["BlePrinter_" + name]).toInteger()
}

def supportsNamespace() {
  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
  def major = parsed[0].toInteger()
  def minor = parsed[1].toInteger()

  // Namespace support was added in 7.3.0
  return (major == 7 && minor >= 3) || major >= 8
}

android {
  if (supportsNamespace()) {
    namespace "com.bleprinter"

    sourceSets {
      main {
        manifest.srcFile "src/main/AndroidManifestNew.xml"
      }
    }
  }

  compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")

  defaultConfig {
    minSdkVersion getExtOrIntegerDefault("minSdkVersion")
    targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")

  }

  buildTypes {
    release {
      minifyEnabled false
    }
  }

  lintOptions {
    disable "GradleCompatible"
  }

  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

repositories {
  mavenCentral()
  google()
}

def kotlin_version = getExtOrDefault("kotlinVersion")

dependencies {
  // For < 0.71, this will be from the local maven repo
  // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
  //noinspection GradleDynamicVersion
  implementation "com.facebook.react:react-native:+"
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

10 participants