react-native-firebase icon indicating copy to clipboard operation
react-native-firebase copied to clipboard

Project with path ':@react-native-firebase/app' could not be found in project ':@react-native-firebase_analytics'.

Open santoshachari opened this issue 5 years ago • 53 comments

Issue

Thank you for the awesome package!

I was successfully able to install and build in android studio with package'@react-native-firebase/app'.

However, when I follow steps here: https://invertase.io/oss/react-native-firebase/v6/analytics/quick-start,

The sync fails with:

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.
-----------
* Where:
Build file '/Users/s***/AwesomeProject/node_modules/@react-native-firebase/analytics/android/build.gradle' line: 58

* What went wrong:
A problem occurred evaluating project ':@react-native-firebase_analytics'.
> Project with path ':@react-native-firebase/app' could not be found in project ':@react-native-firebase_analytics'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':@react-native-firebase_analytics'.
> compileSdkVersion is not specified.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

* Get more help at https://help.gradle.org

BUILD FAILED in 0s
ERROR: Project with path ':@react-native-firebase/app' could not be found in project ':@react-native-firebase_analytics'.
Open File

The file, i.e. build.gradle in @react-native-firebase_analytics:

buildscript {
  repositories {
    google()
    jcenter()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:3.3.1'
  }
}

plugins {
  id "io.invertase.gradle.build" version "1.3"
}

project.ext {
  set('react-native', [
    versions: [
      android           : [
        minSdk    : 16,
        targetSdk : 28,
        compileSdk: 28,
        // optional as gradle.buildTools comes with one by default
        // overriding here though to match the version RN uses
        buildTools: "28.0.3"
      ],

      googlePlayServices: [
        base: "16.1.0",
      ],

      firebase          : [
        analytics: "16.3.0"
      ],
    ],
  ])
}

android {
  defaultConfig {
    multiDexEnabled true
  }
  lintOptions {
    disable 'GradleCompatible'
    abortOnError false
  }
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

repositories {
  google()
  jcenter()
}

dependencies {
  api project(':@react-native-firebase/app')
  implementation "com.google.firebase:firebase-analytics:${ReactNative.ext.getVersion("firebase", "analytics")}"
  implementation "com.google.android.gms:play-services-base:${ReactNative.ext.getVersion("googlePlayServices", "base")}"
}

ReactNative.shared.applyPackageVersion()
ReactNative.shared.applyDefaultExcludes()
ReactNative.module.applyAndroidVersions()
ReactNative.module.applyReactNativeDependency("api")

Describe your issue here


Project Files

Android

Click To Expand

android/build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 28
        supportLibVersion = "28.0.0"
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:4.2.0'
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}

android/app/build.gradle:

apply plugin: "com.android.application"

import com.android.build.OutputFile

/**
 * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
 * and bundleReleaseJsAndAssets).
 * These basically call `react-native bundle` with the correct arguments during the Android build
 * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
 * bundle directly from the development server. Below you can see all the possible configurations
 * and their defaults. If you decide to add a configuration block, make sure to add it before the
 * `apply from: "../../node_modules/react-native/react.gradle"` line.
 *
 * project.ext.react = [
 *   // the name of the generated asset file containing your JS bundle
 *   bundleAssetName: "index.android.bundle",
 *
 *   // the entry file for bundle generation
 *   entryFile: "index.android.js",
 *
 *   // whether to bundle JS and assets in debug mode
 *   bundleInDebug: false,
 *
 *   // whether to bundle JS and assets in release mode
 *   bundleInRelease: true,
 *
 *   // whether to bundle JS and assets in another build variant (if configured).
 *   // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
 *   // The configuration property can be in the following formats
 *   //         'bundleIn${productFlavor}${buildType}'
 *   //         'bundleIn${buildType}'
 *   // bundleInFreeDebug: true,
 *   // bundleInPaidRelease: true,
 *   // bundleInBeta: true,
 *
 *   // whether to disable dev mode in custom build variants (by default only disabled in release)
 *   // for example: to disable dev mode in the staging build type (if configured)
 *   devDisabledInStaging: true,
 *   // The configuration property can be in the following formats
 *   //         'devDisabledIn${productFlavor}${buildType}'
 *   //         'devDisabledIn${buildType}'
 *
 *   // the root of your project, i.e. where "package.json" lives
 *   root: "../../",
 *
 *   // where to put the JS bundle asset in debug mode
 *   jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
 *
 *   // where to put the JS bundle asset in release mode
 *   jsBundleDirRelease: "$buildDir/intermediates/assets/release",
 *
 *   // where to put drawable resources / React Native assets, e.g. the ones you use via
 *   // require('./image.png')), in debug mode
 *   resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
 *
 *   // where to put drawable resources / React Native assets, e.g. the ones you use via
 *   // require('./image.png')), in release mode
 *   resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
 *
 *   // by default the gradle tasks are skipped if none of the JS files or assets change; this means
 *   // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
 *   // date; if you have any other folders that you want to ignore for performance reasons (gradle
 *   // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
 *   // for example, you might want to remove it from here.
 *   inputExcludes: ["android/**", "ios/**"],
 *
 *   // override which node gets called and with what additional arguments
 *   nodeExecutableAndArgs: ["node"],
 *
 *   // supply additional arguments to the packager
 *   extraPackagerArgs: []
 * ]
 */

project.ext.react = [
    entryFile: "index.js"
]

apply from: "../../node_modules/react-native/react.gradle"

/**
 * Set this to true to create two separate APKs instead of one:
 *   - An APK that only works on ARM devices
 *   - An APK that only works on x86 devices
 * The advantage is the size of the APK is reduced by about 4MB.
 * Upload all the APKs to the Play Store and people will download
 * the correct one based on the CPU architecture of their device.
 */
def enableSeparateBuildPerCPUArchitecture = false

/**
 * Run Proguard to shrink the Java bytecode in release builds.
 */
def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion rootProject.ext.compileSdkVersion

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        applicationId "com.awesomeproject"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
        }
    }
    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    implementation project(':@react-native-firebase_analytics')
    implementation project(':@react-native-firebase_app')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation 'com.google.firebase:firebase-core:16.0.9'
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}
apply plugin: 'com.google.gms.google-services'

android/settings.gradle:

rootProject.name = 'AwesomeProject'
include ':@react-native-firebase_analytics'
project(':@react-native-firebase_analytics').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/analytics/android')
include ':@react-native-firebase_app'
project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/app/android')

include ':app'

MainApplication.java:

package com.awesomeproject;

import android.app.Application;

import com.facebook.react.ReactApplication;
import io.invertase.firebase.analytics.ReactNativeFirebaseAnalyticsPackage;
import io.invertase.firebase.modules.app.ReactNativeFirebaseAppPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;

import java.util.Arrays;
import java.util.List;

public class MainApplication extends Application implements ReactApplication {

  private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
    @Override
    public boolean getUseDeveloperSupport() {
      return BuildConfig.DEBUG;
    }

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
            new ReactNativeFirebaseAnalyticsPackage(),
            new ReactNativeFirebaseAppPackage()
      );
    }

    @Override
    protected String getJSMainModuleName() {
      return "index";
    }
  };

  @Override
  public ReactNativeHost getReactNativeHost() {
    return mReactNativeHost;
  }

  @Override
  public void onCreate() {
    super.onCreate();
    SoLoader.init(this, /* native exopackage */ false);
  }
}

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.awesomeproject">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false"
      android:theme="@style/AppTheme">
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
      <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
    </application>

</manifest>


Environment

Click To Expand

react-native info output:

React Native Environment Info:
    System:
      OS: macOS 10.14.4
      CPU: (8) x64 Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
      Memory: 30.21 MB / 16.00 GB
      Shell: 3.2.57 - /bin/bash
    Binaries:
      Node: 10.15.1 - /usr/local/bin/node
      Yarn: 1.3.2 - /usr/local/bin/yarn
      npm: 6.4.1 - /usr/local/bin/npm
      Watchman: 4.9.0 - /usr/local/bin/watchman
    SDKs:
      Android SDK:
        API Levels: 23, 26, 27, 28
        Build Tools: 23.0.1, 23.0.3, 26.0.2, 27.0.0, 27.0.1, 27.0.3, 28.0.3
        System Images: android-23 | Intel x86 Atom_64, android-23 | Google APIs Intel x86 Atom, android-23 | Google APIs Intel x86 Atom_64, android-27 | Google APIs Intel x86 Atom, android-28 | Google APIs Intel x86 Atom
    IDEs:
      Android Studio: 3.4 AI-183.6156.11.34.5522156
      Xcode: /undefined - /usr/bin/xcodebuild
    npmPackages:
      react: 16.8.3 => 16.8.3 
      react-native: 0.59.8 => 0.59.8 
    npmGlobalPackages:
      create-react-native-app: 1.0.0
      react-native-cli: 2.0.1

  • Platform that you're experiencing the issue on:
    • [ ] iOS
    • [x] Android
    • [ ] iOS but have not tested behavior on Android
    • [ ] Android but have not tested behavior on iOS
    • [ ] Both
  • Analytics
    • e.g. Instance ID
  • Are you using TypeScript?
    • N

Think react-native-firebase is great? Please consider supporting all of the project maintainers and contributors by donating via our Open Collective where all contributors can submit expenses. [Learn More]

santoshachari avatar May 21 '19 14:05 santoshachari

You need to install the alpha package. We're updating the docs at the moment as this is something which a few people are hitting.

yarn add @react-native-firebase/analytics@alpha

Ehesp avatar May 21 '19 14:05 Ehesp

Thanks, Elliot @Ehesp! On installing the package, this Firebase app import was referenced wrongly:

import io.invertase.firebase.ReactNativeFirebaseAppPackage;

in MainApplication.java, instead of

import io.invertase.firebase.app.ReactNativeFirebaseAppPackage;

santoshachari avatar May 21 '19 16:05 santoshachari

how to fix this problem im still getting this

Ayush1011 avatar Jun 01 '19 16:06 Ayush1011

@rambo006mm I saw your other issue, my best advice is use v5 - it's the branch to use unless you are interested in testing and able to bust through problems on your own and provide solutions like santoshachari did for the v6 branch

mikehardy avatar Jun 01 '19 17:06 mikehardy

./node_module/@react-native-firebase/analytics/android/build.gradle line 58

replace slash with underscore like this

api project(':@react-native-firebase/app') => api project(':@react-native-firebase_app')

ahmadi-akbar avatar Jun 19 '19 19:06 ahmadi-akbar

I also faced this problem How to fix it.

Thank you in advance

BunsinNANH avatar Jul 03 '19 08:07 BunsinNANH

For me this problem arise when i run react native link after beating my head i resolve it by making my app build. Gradle msin build.gradle main application java and seeting.gradle to its previous version before react native link by pressing ctrl z its basically naive solution but it can work

Ayush1011 avatar Jul 03 '19 13:07 Ayush1011

If it dont work remove node modules and package. Json and install all modules again

Ayush1011 avatar Jul 03 '19 13:07 Ayush1011

My solution

android/settings.gradle:

include ':@react-native-firebase_app' project(':@react-native-firebase_app').projectDir = new File(rootProject.proj

ddman avatar Sep 26 '19 04:09 ddman

@ddman can you please write again your solution? It seems it is truncated..

cemo avatar Sep 30 '19 13:09 cemo

@cemo

include ':@react-native-firebase_app'
project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/app/android')

vstukanov avatar Oct 02 '19 10:10 vstukanov

@vstukanov thanks. My problem was that I need to define "firebase.json" in the android folder. It solved it.

cemo avatar Oct 03 '19 14:10 cemo

@cemo Hello,

what do you mean by "define firebase.json" in the android folder?

Thanks !

AnaisGalisson-Mylo avatar Oct 04 '19 21:10 AnaisGalisson-Mylo

I'm also facing exactly the same problem with the Auth module.

1: Task failed with an exception.
-----------
* Where:
Build file 'C:\Sanbitt\globalescape-mobile\node_modules\@react-native-firebase\auth\android\build.gradle' line: 54

* What went wrong:
A problem occurred evaluating project ':@react-native-firebase_auth'.
> Project with path ':@react-native-firebase_app' could not be found in project ':@react-native-firebase_auth'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':@react-native-firebase_auth'.
> compileSdkVersion is not specified.

Is this the same issue? The compileSdkVersion is not specified. may indicate something different though.

margabit avatar Oct 15 '19 23:10 margabit

I'm also facing exactly the same problem with the Auth module.

1: Task failed with an exception.
-----------
* Where:
Build file 'C:\Sanbitt\globalescape-mobile\node_modules\@react-native-firebase\auth\android\build.gradle' line: 54

* What went wrong:
A problem occurred evaluating project ':@react-native-firebase_auth'.
> Project with path ':@react-native-firebase_app' could not be found in project ':@react-native-firebase_auth'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':@react-native-firebase_auth'.
> compileSdkVersion is not specified.

Is this the same issue? The compileSdkVersion is not specified. may indicate something different though.

I had the same problem, because I was installing with "npm", I uninstalled from "npm" and installed via "yarn" and it worked.

yarn add @react-native-firebase/app yarn add @react-native-firebase/auth

At "npm" the auto-link was not happening.

erickmonteiro avatar Oct 25 '19 00:10 erickmonteiro

image

image

MahbbRah avatar Oct 31 '19 03:10 MahbbRah

@MahbbRah this is a closed issue, it will probably be best to open a new issue with complete details - and please post text not images, so they are searchable and quotable etc, and work well while mobile

mikehardy avatar Oct 31 '19 04:10 mikehardy

``* What went wrong: A problem occurred configuring project ':@react-native-firebase_auth'.

compileSdkVersion is not specified.

I was having similar issue. this is probably because of you do not have installed the @react-native-firebase/app Please check your package.json and make sure this is included and installed by yarn otherwise it will throw error like above image

MahbbRah avatar Oct 31 '19 04:10 MahbbRah

This firebase becoming so messed up.. Like how it can have so many bugs in every release..

losheredos avatar Nov 21 '19 18:11 losheredos

@losheredos any and all PRs fixing bugs are happily accepted, open source requires contributions from everyone, right? In reviewing your github activity I see only issues created, no PRs, no reviews :thinking: :man_shrugging: it's a big API surface area that moves quickly, help us make it better and it will be better

mikehardy avatar Nov 21 '19 19:11 mikehardy

@mikehardy of course but I mean even opening issues are kinda contributing dont you think so? Or whenever we have a solution we just share and write it. But to directly work in bugs in open source projects, I dont know how people find time for that, especially if its without being paid?..

losheredos avatar Nov 21 '19 19:11 losheredos

@losheredos note that this module specifically pays contributors! https://opencollective.com/react-native-firebase

Opening issues is at least a first step, and sharing solutions is huge - the userbase here is pretty good at that.

Other projects, yeah unless it provides personal educational value or direct benefit to a work project hard to argue it's easy to find time, but PRs are what makes open source work, however they are justified.

And you must realize how this

This firebase becoming so messed up.. Like how it can have so many bugs in every release..

sounds to those justifying the work as "makes me feel good to improve quality" ? Doesn't seem like the effect you'd want, on reflection

mikehardy avatar Nov 21 '19 19:11 mikehardy

@mikehardy Well its like a expression of boredom, since I already opened issue about previous versions in firebase.. Like everytime some package is updated you expect it to have less bugs then before right? But in this case it reveals unexpected bugs, so I just wanted to ask how it can happen this way very often? Plus not everyone have enough knowledge to be able to help in development of huge libraries.

I think we should have a "right" to complain sometimes about these kind of a bit weird situations and maybe you should be enough kind to understand these kind of comments and critics.

losheredos avatar Nov 21 '19 19:11 losheredos

Complaining is a right in an open source world, sure. Just doesn't seem useful - or more to the point might be counterproductive - to me thus my press for defense of same.

Based on everything I read about the transition from v5 to v6 here I had no expectation it would have fewer issues out of the gate. I do believe it's converging stability though as more people have adopted it and most modules have been sussed out so far.

In the meantime, v5 does still exist.

mikehardy avatar Nov 21 '19 20:11 mikehardy

I'm also facing exactly the same problem with the Auth module.

1: Task failed with an exception.
-----------
* Where:
Build file 'C:\Sanbitt\globalescape-mobile\node_modules\@react-native-firebase\auth\android\build.gradle' line: 54

* What went wrong:
A problem occurred evaluating project ':@react-native-firebase_auth'.
> Project with path ':@react-native-firebase_app' could not be found in project ':@react-native-firebase_auth'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':@react-native-firebase_auth'.
> compileSdkVersion is not specified.

Is this the same issue? The compileSdkVersion is not specified. may indicate something different though.

I had the same problem, because I was installing with "npm", I uninstalled from "npm" and installed via "yarn" and it worked.

yarn add @react-native-firebase/app yarn add @react-native-firebase/auth

At "npm" the auto-link was not happening.

This fixed the exact same issue for me! Thanks!

0xTomDaniel avatar Dec 01 '19 02:12 0xTomDaniel

How to fix this ??

Unsupported Modules Detected: Compilation is not supported for following modules: android-@react-native-firebase_firestore, android-@react-native-firebase_app, @react-native-firebase_firestore, @react-native-firebase_app, android-react-native-maps, android-react-native-linear-gradient, android-react-native-gesture-handler, android-react-native-reanimated, android-react-native-webview, android-react-native-vector-icons, app-android-@react-native-firebase_app, firestore-android-@react-native-firebase_firestore, lib-android-react-native-maps, react-native-gesture-handler, react-native-gesture-handler-android-react-native-gesture-handler, react-native-linear-gradient, react-native-linear-gradient-android-react-native-linear-gradient, react-native-maps, react-native-reanimated, react-native-reanimated-android-react-native-reanimated, react-native-webview, react-native-vector-icons-android-react-native-vector-icons, react-native-vector-icons, react-native-webview-android-react-native-webview. Unfortunately you can't have... (show balloon)

Bongroth avatar Jan 13 '20 02:01 Bongroth

@Bongroth Hello! this is an unrelated issue and by my count 16 people received notifications about your unrelated issue. It is also contains almost none of the information someone would need to troubleshoot it. However guessing at your problem: I think Android Studio just doesn't like the way auto-linking works in react-native 0.60+, and if you run a ./gradlew assembleDebug from the command line in the android folder before you open Android Studio will help, and if not, this would be a general react-native issue and you could ask there

mikehardy avatar Jan 13 '20 11:01 mikehardy

Updating RN from 0.60.4 to 0.60.5 fixed the issue for me

ivanzotov avatar Jan 24 '20 12:01 ivanzotov

@cemo

include ':@react-native-firebase_app'
project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/app/android')

This workaround works. But why is still needed? This actually wasn't needed until I ran a yarn upgrade and pod update, while STAYING on RN 0.61.5.

fungilation avatar Feb 15 '20 18:02 fungilation

@fungilation there is a new / separate issue with react-native-community/cli altering how it links scoped packages, and it is the source of your problem I believe: #3206 - workaround is to pin CLI at 3.0.3 as mentioned in that issue, until this is sorted out (should be quite soon)

mikehardy avatar Feb 16 '20 13:02 mikehardy