Questions tagged [libs]

It's a special folder in Java projects. It's used to store compiled libraries (jar files)

It's a special folder in Java projects.
It's used to store compiled libraries (jar files).
These libraries contain common blocks of code that may be reused inside an app.

189 questions
1
vote
1 answer

Android Repository not working in library module

I have got a project with app module and a library module. The app module can import library module properly. But the weird thing happens when I tried to get dependencies inside library module by declaring repository inside it. The repository…
Panda World
  • 1,704
  • 1
  • 20
  • 28
1
vote
2 answers

ImportError: No module named libs

I am trying to run this code named recognize-from-microphone.py in the terminal. The code is extensive so I will not type the whole thing out. The goal of the code is to recognize audio from the usb microphone attached to my Raspberry Pi. Here's the…
1
vote
1 answer

Apk does not include arm64-v8a folder in libs but my project has .so file under jnilibs/arm64-v8a/xyz.so

My project require native library and I have generated .so files for 'x86', 'x86_64', 'armeabi-v7a', 'arm64_v8a' architectures. In app gradle also I have defined ndk support for following ndk.abiFilters 'x86', 'x86_64', 'armeabi-v7a',…
Pirate
  • 545
  • 1
  • 6
  • 15
1
vote
0 answers

How to fix "undefined reference to `YAML::operator<<(std::ostream&, YAML::Node const&)'" in cmake

I did a project in manjaro, then decided to switch to ubuntu and everything flew to hell. I've installed libpoco-dev, libtinyxml2-dev and libyaml-cpp-dev my cmakelist file: cmake_minimum_required(VERSION…
dedicat4d
  • 45
  • 3
1
vote
0 answers

Trouble converting .py file to .exe due to errors

Im trying to convert .py script into .exe and im getting warnings about lib not found. can someone help? I've looked everywhere. Sorry to say i have no knowledge in using python, my dev is away and i needed to change a few small things in the…
zZehix
  • 109
  • 1
1
vote
1 answer

How to setup a C development environment on Linux for GTK+?

I'm new to programming C in Linux. I like to make GUIs with GTKlibs. The only problem is that im unable - and not only with gtk - to install these packages correctly. I have problem to include the librarys like #include if I have…
RandomDev
  • 11
  • 6
1
vote
1 answer

Moving folders using gulp

I have project with 3 folders (I'm using gulp), which I don't need to compile. So, I need a task, which takes 3 folders "src/fonts", "src/libs" and "src/docs" as gulp.src() and just move them in dest/ folder. I don't need to do something with them,…
1
vote
1 answer

Different results of Junit Test in different IDEs

import org.jdom2.Document; import org.jdom2.input.SAXBuilder; import java.io.FileReader; public class Test1 { @org.junit.Test public void main() throws Exception { SAXBuilder sax = new SAXBuilder(); Document doc =…
1
vote
1 answer

Android: .jar file in libs vs dependency url in gradle

I have come across two ways when I am adding jar dependency in an android project in Android Studio. Adding *.jar file in libs folder. Adding dependency url in gradle.build. Which one is better and why?
Anuja Kothekar
  • 2,537
  • 2
  • 15
  • 28
1
vote
0 answers

undefined reference to cv::calibrateCamera

I keep having this issue with the calibrateCamera function. I'm using opencv2.4.10 and as far as I can tell all libs and dll's are where they should be. #include "opencv2/core/core.hpp" #include "opencv2/highgui/highgui.hpp" #include…
Kronephon
  • 325
  • 3
  • 12
1
vote
1 answer

Linking Error in C++ on visual studio 2013

Following error is coming when I am compiling the project "proj1" code which is using xyz.lib (it is a different project that got compiled successfully). Error 3 error LNK2019: unresolved external symbol "int __cdecl Vsnprintf16(unsigned short…
lsrawat
  • 157
  • 3
  • 9
1
vote
1 answer

Import Pandas from a path

I created a program to filter out rows of data that have empty cells, however, the people that will be using this program do not have any libraries installed, they only have Python 2.7. Is there a way to import Pandas via a path from a network…
Citut
  • 847
  • 2
  • 10
  • 25
1
vote
1 answer

ActiveAndroid Nested Model

I am using ActiveAndroid and have two models: @Table(name = "Topics") public class Topic extends Model { @Column(name = "Name") String name; @SerializedName("id") @Column(index = true, unique = true, onUniqueConflict =…
1
vote
1 answer

Can't use external library

For four days I'm trying to use this project in my application. By now I created a new, clean project and I was trying to run sample, but the project was from Eclipse, and I'm working on Android Studio. Anyway, I don't want to import the whole…
krzk
  • 363
  • 5
  • 14
1
vote
0 answers

java.lang.NoClassDefFoundError: Exception for Loading Tabs in an Activity

I try to implement an activity that contains some tab views, but when I want to run the project, I got following Exception: java.lang.NoClassDefFoundError: com.example.activities.TabBarActivity$SectionsPagerAdapter E/AndroidRuntime(5072): at …
mohammad
  • 90
  • 2
  • 12