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

🔥Could not resolve com.google.code.findbugs:jsr305:3.0.0 #1954

Closed
7 of 33 tasks
biancaFarcas opened this issue Mar 6, 2019 · 30 comments
Closed
7 of 33 tasks

🔥Could not resolve com.google.code.findbugs:jsr305:3.0.0 #1954

biancaFarcas opened this issue Mar 6, 2019 · 30 comments

Comments

@biancaFarcas
Copy link

biancaFarcas commented Mar 6, 2019

Issue

On android build I receive the errors:

ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.0.
Show Details
Affected Modules: react-native-firebase

ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.0.
Show Details
Affected Modules: react-native-firebase

ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.2.
Show Details
Affected Modules: react-native-firebase


Project Files

iOS

ios/Podfile:

  • I'm not using Pods
  • I'm using Pods and my Podfile looks like:
# N/A

AppDelegate.m:

// N/A

Android

android/build.gradle:

buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.google.gms:google-services:4.2.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

}

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

// N/A

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 28
buildToolsVersion '28.0.3'

defaultConfig {
    applicationId "com.ntproject"
    minSdkVersion 16
    targetSdkVersion 28
    versionCode 42
    versionName "1.1.0"
    multiDexEnabled true

    ndk {
        abiFilters "armeabi-v7a", "x86"
    }
}


signingConfigs {
    release {
        if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
            storeFile file(MYAPP_RELEASE_STORE_FILE)
            storePassword MYAPP_RELEASE_STORE_PASSWORD
            keyAlias MYAPP_RELEASE_KEY_ALIAS
            keyPassword MYAPP_RELEASE_KEY_PASSWORD
        }
    }
}
splits {
    abi {
        reset()
        enable enableSeparateBuildPerCPUArchitecture
        universalApk false  // If true, also generate a universal APK
        include "armeabi-v7a", "x86"
    }
}
buildTypes {
    release {
        signingConfig signingConfigs.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]
        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'))
implementation (project(':lottie-react-native'))
implementation (project(':react-native-fetch-blob'))
implementation (project(':react-native-camera'))
implementation(project(':react-native-maps')) {
exclude group: 'com.google.android.gms', module: 'play-services-base'
}
implementation project(':react-native-image-picker')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation('com.android.support:appcompat-v7:28.0.0')
implementation 'com.facebook.react:react-native'
implementation('com.android.support:multidex:1.0.1')
implementation "com.google.android.gms:play-services-base:16.0.1"
implementation('com.google.firebase:firebase-core:16.0.7') {
exclude group: 'com.google.android.gms', module: 'play-services-base'
}
}

// 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'

// N/A

android/settings.gradle:

// N/A

MainApplication.java:

// N/A

AndroidManifest.xml:

<!-- N/A -->

Environment

  • Platform that you're experiencing the issue on:
    • iOS
    • Android
    • iOS but have not tested behavior on Android
    • [ x] Android but have not tested behavior on iOS
    • Both
  • If known, the version of the platform are you experiencing the issue on:
    • ADD_SOMETHING_HERE e.g. iOS 10 or Android API 28
  • Operating System:
    • MacOS, version: N/A
    • Windows, version: N/A
    • Other, please specify: N/A
  • Build Tools:
    • Android Studio 3.3.2
  • **React Native version:0.50.3
    • ADD_SOMETHING_HERE
  • **React Native Firebase library version:5.2.3
    • ADD_SOMETHING_HERE
  • Firebase module(s) you're using that has the issue:
    • N/A
    • Authentication
    • Analytics
    • Cloud Firestore
    • Cloud Messaging (FCM)
    • Crashlytics
    • Dynamic Links
    • Functions Callable
    • In App Messaging
    • Indexing
    • Invites
    • Instance ID
    • ML Kit
    • Notifications
    • Performance Monitoring
    • Realtime Database
    • Remote Config
    • Storage
  • Are you using TypeScript?
    • No
    • Yes, version: N/A
  • Are you using Expo, e.g. ExpoKit?
    • No
    • Yes, I've not ejected
    • Yes, but I have ejected to ExpoKit
    • Yes, but I have ejected to vanilla React Native
    • Expo version: N/A

Think react-native-firebase is great? Please consider supporting the project with any of the below:

@nabylb
Copy link

nabylb commented Mar 13, 2019

Any fix or workaround for this?

@shubham-2710
Copy link

Any update on this ?

@biancaFarcas
Copy link
Author

I was not able to solve this problem, so I had to find another library

@Solly74
Copy link

Solly74 commented Mar 13, 2019

Thanks @biancaFarcas which library are using now?

@Solly74
Copy link

Solly74 commented Mar 13, 2019

Adding the following in the build.gradle file compiles for me.

android {
    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.0'
    }
}

see fix

@shuffledex
Copy link

it doesn’t work for me. I have the same error and can't compile. any suggestion?

@mikehardy
Copy link
Collaborator

Pin your versions in main build.gradle https://github.com/invertase/react-native-firebase-starter/blob/master/android/build.gradle#L3

then reference them everywhere else like so https://github.com/react-native-community/react-native-device-info/blob/master/example/android/app/build.gradle#L143

basically any time I see "resolutionStrategy" in a gradle file, and it's not because there are two legitimately different implementations you can choose from (like camera with mlkit or basic) it tells me that gradle versions haven't been pinned so modules don't know what to use and you get clashes

@biancaFarcas
Copy link
Author

@Solly74 now I am using react-native-push-notification as I only needed react-native-firebase for notifications module.

@ydhn
Copy link

ydhn commented Apr 8, 2019

I faced the exact same error with my project.
I can't explain why but after using npm instead of using yarn, I was able to build successfully.
probably could not be a solution but hope it would work for you.

@timomeara
Copy link

any progress on this? i'm close to dumping firebase :/

@mikehardy
Copy link
Collaborator

This isn't a problem, as near as I can tell. @timomeara did you follow my recommendations? it builds, it works...but you have to pin the dependencies in your gradle config

@timomeara
Copy link

This isn't a problem, as near as I can tell. @timomeara did you follow my recommendations? it builds, it works...but you have to pin the dependencies in your gradle config

thanks mike- i did fix it, but pinning the deps didn't help. i basically started from scratch :)

@stale
Copy link

stale bot commented May 9, 2019

Hello 👋, to help manage issues we automatically close stale issues.
This issue has been automatically marked as stale because it has not had activity for quite some time. Has this issue been fixed, or does it still require the community's attention?

This issue will be closed in 15 days if no further activity occurs.
Thank you for your contributions.

@stale stale bot added the Type: Stale Issue has become stale - automatically added by Stale bot label May 9, 2019
@amardeepkumar
Copy link

Adding the following in the build.gradle file compiles for me.

android {
configurations.all {
resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.0'
}
}

see fix

Just to be specific build.gradle of react-native-firebase

@stale stale bot removed the Type: Stale Issue has become stale - automatically added by Stale bot label May 15, 2019
@diegocalero0
Copy link

Put this line
implementation "com.google.code.findbugs:jsr305:3.0.2"

in node-module/react-native-firebase/android/build.gradle into dependencies block

@mikehardy
Copy link
Collaborator

Put this line
implementation "com.google.code.findbugs:jsr305:3.0.2"

in node-module/react-native-firebase/android/build.gradle into dependencies block

No, don't do that. It's dangerous advice. Why? That change will be overridden every time you install packages, and it will just fail immediately if your CI is building clean (as it should). Don't ever modify node_modules directly or advise others to do so.

If you must fiddle with node_modules, use "patch_package".

In this case, the gradle resolution strategy suggestions in your apps build.gradle are sufficient

@mikehardy
Copy link
Collaborator

There is a valid workaround on this issue, and in general I don't believe this module is responsible. Here's a demo from react-native init through a running app, no problem: https://github.com/mikehardy/rnfbdemo

@gogoku
Copy link

gogoku commented Jun 12, 2019

@mikehardy can you please provide an example for pinning the dependency ?

@mikehardy
Copy link
Collaborator

mikehardy commented Jun 12, 2019

already in the thread - #1954 (comment)

@gogoku
Copy link

gogoku commented Jun 12, 2019

Thanks for the quick reply
@mikehardy I was not able to get what has to be pinned exactly,
I have not stated com.google.code.findbugs:jsr305 as a dependancy in ap pgradlew file

@mikehardy
Copy link
Collaborator

gradle handles dependencies recursively. can you imagine if you specified each dependency without gradle handling it? You probably depend on more than 100 projects.

But if you have resolution conflicts between different versions of the same recursive dependency (like jsr305) then you have to instruct gradle to pin the dependency even though it wasn't specified by you

Gradle education is beyond the scope of this project though - the comment above should work, and if not gradle has ample documentation, with company Q&A on stackoverflow

@sujayjaju
Copy link

Adding this to app/build.gradle dependencies made it work for me

implementation('com.squareup.okhttp3:okhttp:3.12.1') { force = true }
implementation('com.squareup.okio:okio:1.15.0') { force = true }
implementation('com.google.code.findbugs:jsr305:3.0.2') { force = true}

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

@mikehardy I really appreciate your help here. I think most of us are Android n00bs.

I tried pinning versions in a variety of ways and either got the same errors or more errors 🤦‍♂

Would you mind being really specific about what I should do to fix this issue?

Here are my dependency errors
ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:{strictly 3.0.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:{strictly 2.5.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okio:okio:{strictly 1.6.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.5.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okio:okio:1.6.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.7.5.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:2.0.1.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.2.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.3.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okio:okio:1.15.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.squareup.okio:okio:1.13.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.2.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:{strictly 3.0.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:{strictly 2.5.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okio:okio:{strictly 1.6.0}.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.5.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okio:okio:1.6.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.7.5.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:2.0.1.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.2.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okhttp:okhttp:2.3.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okio:okio:1.15.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.squareup.okio:okio:1.13.0.
Show Details
Affected Modules: react-native-firebase


ERROR: Unable to resolve dependency for ':react-native-firebase@release/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:3.0.2.
Show Details
Affected Modules: react-native-firebase


ERROR: Failed to resolve: com.facebook.react:react-native:0.59.10
Show in Project Structure dialog
Affected Modules: app


WARNING: API 'variant.getPreBuild()' is obsolete and has been replaced with 'variant.getPreBuildProvider()'.
It will be removed at the end of 2019.
For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
To determine what is calling variant.getPreBuild(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Affected Modules: app


WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
Affected Modules: react-native-fabric, react-native-share-extension


WARNING: The specified Android SDK Build Tools version (23.0.1) is ignored, as it is below the minimum supported version (28.0.3) for Android Gradle Plugin 3.4.1.
Android SDK Build Tools 28.0.3 will be used.
To suppress this warning, remove "buildToolsVersion '23.0.1'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
Remove Build Tools version and sync project
Affected Modules: react-native-share-extension

I've tried adding things to android/build.gradle and android/app/build.grade, but I'm not sure I was doing any of it right.

For example, I was hunting around in React Native 60 and found these versions:

OKHTTP_VERSION=3.12.1
api("com.google.code.findbugs:jsr305:3.0.2")
api("com.squareup.okhttp3:okhttp:${OKHTTP_VERSION}")
api("com.squareup.okio:okio:1.15.0")

Among other things, I tried adding this to my android/app/build.grade and it did nothing.

    implementation('com.squareup.okhttp3:okhttp:3.12.1') { force = true }
    implementation('com.squareup.okio:okio:1.15.0') { force = true }
    implementation('com.google.code.findbugs:jsr305:3.0.2') { force = true}

Another thing I tried is inside android/build.gradle adding the following to dependencies, but this caused more errors.

        classpath 'com.google.code.findbugs:jsr305:3.0.2'

I also tried in android/app/build.gradle but this didnt do anything either.

android {
    configurations.all {
        resolutionStrategy.force 'com.squareup.okhttp3:okhttp:3.12.1'
        resolutionStrategy.force 'com.squareup.okio:okio:1.15.0'
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.2'
    }
}

I'd really appreciate any help -- I've been spinning my wheels all day and exhausted all of the google searched I can think of 🙏

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

I tried deleting react-native-firebase and everything worked so its definitely something to do with the library.

I did some search in this library and I couldn't find anywhere that the okhttp dependency was specified...

@mikehardy
Copy link
Collaborator

'. /gradlew :app:deoendencies" is how you can debug gradle resolution the problem is in between rnfb and some other library

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

FAILURE: Build failed with an exception.

* What went wrong:
Task 'deoendencies' not found in project ':app'. Some candidates are: 'dependencies'.

Sounds like a type-o somewhere but I can't find this anywhere in my project or node_modules... 🤔

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

Oh that was in the command! lol 🤦‍♂

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

./gradlew :app:dependencies results in BUILD SUCCESSFUL

I'm trying to track down this one single error that I get when I sync with gradle files.

ERROR: Unable to resolve dependency for ':react-native-firebase@debug/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:{strictly 3.0.0}.
Show Details
Affected Modules: react-native-firebase

These are the only instances of that package in the dependency tree...

+--- com.facebook.react:react-native:+ -> 0.20.1
|    +--- com.google.code.findbugs:jsr305:3.0.0
|    +--- com.facebook.stetho:stetho-okhttp:1.2.0
|    |    +--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.0
|    |    +--- com.facebook.stetho:stetho:1.2.0
|    |    |    +--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.0
|    |    |    \--- commons-cli:commons-cli:1.2
|    |    \--- com.squareup.okhttp:okhttp:2.2.0 -> 2.5.0
|    |         \--- com.squareup.okio:okio:1.6.0
+--- com.google.code.findbugs:jsr305:{strictly 3.0.0} -> 3.0.0 (c)

@mikehardy
Copy link
Collaborator

@ccorcos no idea, I can't reproduce. You might make a new sample project from react-native init on github that reproduces the problem and share it. All I know is that some one is saying they want findbugs:jsr305 strictly as 3.0.0 and someone else wants 3.0.2 so it's failing. Which library is doing that? no idea from the information provided

@ccorcos
Copy link

ccorcos commented Aug 20, 2019

Well I think I figured it out facebook/react-native#12309

+--- com.facebook.react:react-native:+ -> 0.20.1

I was installing react-native from a fork that has a small fix for iOS share extensions and the /android directory wasn't built...

https://github.com/facebook/react-native/pull/26077/files

Anyways, it works now! Thanks for the help 😄

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