Questions tagged [conflicting-libraries]

162 questions
100
votes
6 answers

dplyr: "Error in n(): function should not be called directly"

I am attempting to reproduce one of the examples in the dplyr package but am getting this error message. I am expecting to see a new column n produced with the frequency of each combination. What am I missing? I triple checked that the package is…
Michael Bellhouse
  • 1,547
  • 3
  • 14
  • 26
48
votes
2 answers

Skipping Incompatible Libraries at compile

When I try to compile a copy of my project on my local machine, I get an error stating that it 's skipping over incompatible libraries. This isn't the case when I'm messing around with the live version hosted on the server at work [it makes…
kelly.dunn
  • 1,546
  • 3
  • 16
  • 23
25
votes
3 answers

How to resolve .NET Core package version conflicts

I am migrating from a .NET MVC 5 Web Application to a .NET Core 2.2 Web API project along with five .NET Standard 2.0 projects all housed under one solution. I am now receiving 28 warnings (MSB3277) regarding package conflicts, which are all within…
J Weezy
  • 3,507
  • 3
  • 32
  • 88
20
votes
2 answers

Assembly uses version X which has a higher version than referenced assembly error

After upgrading from ASP.NET Core 2.0 to 2.1-preview2 I got the following error: Error CS1705 Assembly 'System.Data.SqlClient' with identity 'System.Data.SqlClient, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' uses…
Felix
  • 9,248
  • 10
  • 57
  • 89
20
votes
2 answers

Maven set dependency mediation strategy to newest rather than nearest

Can I configure Maven to choose the "newest" dependency on a conflict, rather than the "nearest"? The "newest" is the default in Ivy and other sensible dependency managers, see…
Rich
  • 15,048
  • 2
  • 66
  • 119
16
votes
2 answers

Facebook SDK dependency conflict

I am having this error: On getting dependency tree, I found that there is nothing wrong with animated vector drawables but facebook's latest sdk has previous version of support-v4 custom tab. I tried excluding with exclude group command but its not…
15
votes
3 answers

Resolve Conflict When Using Highchart and Highmap together (TypeError: ma is not a function)

I've a page that contain chart and map menu for report function. Then, I choose Highchart-Highmap library to reach the purpose above. The chart function runs well but when I develop map function there's a error appear TypeError: ma is not a…
11
votes
3 answers

mp4parser version conflict (compressed video has no sound)

I am using these two libraries in my project: https://github.com/HemendraGangwar/VideoTrimmingLikeWhatsapp https://github.com/fishwjy/VideoCompressor Both libraries are imported locally to my project (i.e. copied them and added them to the…
hiddeneyes02
  • 2,562
  • 1
  • 31
  • 58
11
votes
3 answers

Duplicate files copied in APK META-INF/library_release.kotlin_module

I recently added two Android libraries through JitPack and I have the following error: Duplicate files copied in APK META-INF/library_release.kotlin_module I've cleared the cached and I've tried excluding the module using exclude group:…
Allan W
  • 2,791
  • 4
  • 23
  • 41
8
votes
3 answers

VB6: Name conflicts with existing module, project, or object library

Opening a VB6 Project, I get errors like: Errors during load. Refer to xyz.LOG I open the log file and see these errors: Line 42: Class Threed.SSPanel of control XYZ was not a loaded control class. In this case I can see the problem is due to…
Jeremy Thompson
  • 61,933
  • 36
  • 195
  • 321
7
votes
4 answers

Mockwebserver in gradle build throwing error

This entry in my gradle file : androidTestCompile ('com.squareup.okhttp:mockwebserver:2.7.0') is throwing error: Warning:Conflict with dependency 'com.squareup.okio:okio'. Resolved versions for app (1.8.0) and test app (1.6.0) differ. See…
Mike6679
  • 5,547
  • 19
  • 63
  • 108
7
votes
4 answers

Can Gradle help solve jar hell in any way?

Java 8 here. Say there is an old version of the widget libray, with Maven coordinates widgetmakers:widget:1.0.4, that has a class defined in it like so: public class Widget { private String meow; // constructor, getters, setters,…
7
votes
2 answers

With multiple versions of Lua installed is it possible to specify which one luarock to install to?

I have both Lua 5.1 and Lua 5.2 installed on Linux. When using luarocks to install a package is it possible to pass on option to luarocks that specifies which version of Lua the rock should be installed for?
vfclists
  • 19,193
  • 21
  • 73
  • 92
7
votes
6 answers

GHC 6.12 and MacPorts

I recently installed (from the binary installers) GHC 6.12 and the Haskell Platform 2010.1.0.1 on my Intel MacBook running OS X 10.5.8, and initially, everything worked fine. Edit: I had to install cabal, alex, and happy from source, but after…
Antal Spector-Zabusky
  • 36,191
  • 7
  • 77
  • 140
5
votes
1 answer

Ignore conflicts raised by setuptools install

TL;DR How can I instruct setuptools to ignore dependency conflicts and carry on normally? Background My Python project has a set of Google Cloud dependencies declared in a requirements.txt file. These Google Cloud dependencies have a transitive…
noamt
  • 7,397
  • 2
  • 37
  • 59
1
2 3
10 11