Questions tagged [conflicting-libraries]

162 questions
5
votes
1 answer

Class GAD_GTMStringEncoding is implemented in both and . One of the two will be used. Which one is undefined

I have an iOS project in Xcode. It contains a load of linked libraries including GoogleInteractiveMediaAds.framework as well as an internal player library that I believe is also linked against this framework. Both are also embedded binaries. The…
Gareth
  • 121
  • 1
  • 10
4
votes
3 answers

Conflicting types compiling a LD_PRELOAD wrapper

I tried to use LD_PRELOAD to hook sprintf function , so I will print to file the result of buffer: #define _GNU_SOURCE #include #include int sprintf (char * src , const char * format , char* argp) { int…
MicrosoctCprog
  • 460
  • 1
  • 3
  • 23
4
votes
1 answer

two different libraries using the same name types

I am using two different c++ libraries. Both libraries use a name for a type, let's say, called fofo. In lib1.h: typedef short fofo; In lib2.h: namespace LIB2 { typedef struct { uint16_t toto; } fofo; } using…
loisir2022
  • 163
  • 2
  • 11
4
votes
2 answers

How to isolate libraries in an unmanaged dependency .jar file so they don't conflict with others

I need to add a .jar as an unmanaged dependency to an sbt Scala project (it is the java-stellar-sdk). Everything works well as long as I don't run sbt test. There seems to be a Mockito version in the .jar file that conflicts with the one I am using…
lex82
  • 11,173
  • 2
  • 44
  • 69
4
votes
2 answers

Material Design Lite and jQuery, smooth scroll not working

I am unable to use .animate method of jQuery with Google's Material Design Lite(MDL). I have used MDL to make navigation bar, but smooth scrolling was not working. Simple jQuery code is this: $(function(){ …
4
votes
1 answer

Limit jQuery selectors to children of a certain element

I've got a series of apps that are embedded via Javascript in a variety of pages, so it's important to be as careful as possible about constructing selectors in a way that don't accidentally select something on the parent page. (I have no control…
Chris Wilson
  • 6,599
  • 8
  • 35
  • 71
4
votes
2 answers

How to include two different versions of the same dependency?

I am working on a customization for an ERP system in Java. In my customization I want to use Apache POI 3.10.1. Therefore I have integrated the jars poi-3.10.1-20140818.jar and poi-ooxml-3.10.1-20140818.jar. However, these jars contains several…
wvdz
  • 16,251
  • 4
  • 53
  • 90
4
votes
7 answers

Eclipse giving Error "Unhandled event loop exception" No more handles

I am getting this error after every 1-2 mins when i open the eclipse editor.I downloaded new eclipse still i get the same error with the new eclipse installed.This has been very frustating.Does any 1 have any knowledge about it.I am using eclipse…
Joyson
  • 1,643
  • 5
  • 28
  • 48
4
votes
1 answer

How to work with different versions of Qt on the same machine?

I have problems since I installed both Qt 4.8.4 and Qt 5.1 on my computer. When only Qt 4.8.4 was present, everything was fine. When I added Qt 5.1, this one is working properly, but Qt 4.8.4 gives me these linker errors: Makefile:34: recipe…
Pietro
  • 12,086
  • 26
  • 100
  • 193
4
votes
1 answer

SlidingMenu and Android-PullToRefresh libraries conflict

I am currently using 2 libraries in my Android project: SlidingMenu: https://github.com/jfeinstein10/SlidingMenu Android-PullToRefresh: https://github.com/chrisbanes/Android-PullToRefresh With Android 4.x everything works right, but in Android 2.x…
abeljus
  • 342
  • 1
  • 3
  • 10
4
votes
1 answer

Wrap custom types from different libraries in c++

When using different libraries, I always found that each have a custom type for the same "real word entity". Say I have a project using points in 3 dimensions, I just use algorithms from OpenCv and PCL(Point Cloud Library). I found myself with these…
Pluc
  • 901
  • 8
  • 21
3
votes
1 answer

Duplicate class with Amplify and Android Navigation

I am trying to use AWS Amplify, and Android Navigation with Safe Args for Java. My project compiles properly, but crashes at runtime. The error indicates that the problem lies in the navigation classes, and playing with the modules I was using I…
3
votes
1 answer

iPhone: duplicate symbol _SBJSONErrorDomain

I want to use the Brightcove library and the Layar library in one application, which both have the SBJson files. Obviously these try to murder each other dead. Do i have to extract the files and rebuild the archives? I'm on a tight deadline.
MaikelS
  • 1,309
  • 4
  • 16
  • 33
3
votes
1 answer

Conflict conda and argparse in Python 3.7

I am new to Python. I am trying to install a few packages and so far have only installed OpenCV and numpy for Python 3.7. When trying to install argparse, I encounter an issue: >conda install argparse Collecting package metadata: done Solving…
Nakx
  • 1,460
  • 1
  • 23
  • 32
3
votes
2 answers

2 window.onload in 2 separate .js files, only 1 function loads

I have 2 external JavaScript files which both call functions via window.onload. The files conflict, so only the second js file is working. How would I fix the window.onload so both functions work? Should I do this in the HTML file or can I fix it…
javajenna
  • 31
  • 1
  • 4
1
2
3
10 11