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
6
votes
1 answer

What's the difference between dexedLibs and libs?

I'm moving from Eclipse to Android Studio, and I'm importing my project. I'm at the step where it's enquiring about libs in my old project. It has two sections, dexedLibs and Libs. Everything I had in my old project appears in dexedLibs, but a few…
fredley
  • 32,953
  • 42
  • 145
  • 236
6
votes
4 answers

The import android.support.v13.app.FragmentActivity cannot be resolved

I'm testing an android project (http://developer.android.com/training/animation/screen-slide.html) and I have an error in one class. /* * Copyright 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the…
5
votes
3 answers

Execution failed for task ':app:lintVitalRelease'. > Could not resolve all artifacts for configuration ':app:debugRuntimeClasspath'

I am getting this error when running 'flutter run --release' in the terminal. I am looking if someone can give suggestion to resolve this issue. I tried many solutions found in internet, but it did not word. Thanks. FAILURE: Build failed with an…
Vincent
  • 208
  • 3
  • 10
5
votes
2 answers

Migrate Eclipse app and libs to Android Studio

I have an Android app project in eclipse that references to 3 libs+ some jar files and I would like to migrate all to Android studio. First, I export "generate Gradle build files" (app) and succeed import in Android Studio. I tried to create root…
Eli Elezra
  • 525
  • 2
  • 4
  • 18
4
votes
3 answers

c++ What files and libs to include?

Many times I find useful code examples on the Internet. About half of the time they don't specify what files to include or even what libs to include on the command line with -l. How do you usually find that out? edit note: The problem below has been…
Albert Hendriks
  • 1,979
  • 3
  • 25
  • 45
4
votes
0 answers

calculation of RSI(Relative Strength Index) Using ta4j java library is incorrect

This is my Class to fetch the list of OHLC (open, high, low, close) also the volume and date. i have separated each one of the arraylist for each stocksymbol. i have used my local API to fetch the data. To perform all these calculation i have used…
4
votes
2 answers

whats are *.so.*.* libs

When I do ls -l in /usr/lib I see lots of libs with "sameName.so.*.*" extension. What is the significance of these extensions? Why softlinks are created? what are their use? One example will help a lot in understanding.
Alam
  • 1,536
  • 15
  • 26
4
votes
1 answer

How to Proguard an android project and its modules and libs?

I am using Android Studio, my application uses many modules and libs Is it possible to proguard all modules , libs and the application ? Or I can do it only for the app ?
Cherry'salma
  • 65
  • 1
  • 5
4
votes
1 answer

android can't load library when lib project has both armeabi and armeabi-v7a directory in libs directory

I has an android project that depends on a lib project. And the lib project has an "armeabi" and "armeabi-v7a" directory in the "libs" directory, and both of them have a .so file inside. And my own project has only a armeabi directory in libs…
ffts
  • 73
  • 9
4
votes
1 answer

how to secure app against XSS vectors present in 3rd party js libs?

I am using various 3rd party libs like cordova.js, jquery, jquery mobile, mobilizer and so on, in a an android mobile app.. These libs are found to have various XSS vectors through insecure use of eval, settimeout, inner/outerhtml and so on. Is…
Ocelot
  • 1,733
  • 4
  • 29
  • 53
3
votes
1 answer

CMake project using a library that depends on another library

I have a problem with the usage of CMake on Linux 64 bit. I have a sample in C that must link to a library (xr_arp.a) which has a link dependency on another lib (libcrypto.a). The following makefile that I did to build my sample code is linking…
thewalrusnp
  • 427
  • 1
  • 4
  • 15
3
votes
4 answers

How can I resolve this issue: libm.so.6: version `GLIBC_2.29' not found, C/C++?

When I've tried to execute my C++ demo app on RPI CM4, app that was cross compiled on Ubuntu OS: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.1 LTS Release: 20.04 Codename: focal This is my…
User
  • 67
  • 1
  • 1
  • 8
3
votes
1 answer

Using third party Python modules in QGIS

I developed a QGIS plugin that uses third party libraries. The current situation is that the user of the plugin, has to install some Python libs into QGIS, before he/she can use my plugin. Every time a new QGIS version is installed, the used needs…
nlrmcm
  • 31
  • 2
3
votes
2 answers

Include same header file for different libs

I have a C++ project with the following structure: CMakeLists.txt code/ libClient/ CMakeLists.txt include/ LibClient/ lib_client.h src/ lib_client.cpp libServer/ CMakeLists.txt include/ …
Morgijl
  • 31
  • 1
3
votes
4 answers

Path to store libraries. Best practice needed

I'm planing to make several projects in C and C++ under Linux. In some projects I will need additional libraries. Correct me if I'm wrong. I'm planning to store libs in /usr/local/include. But is it good practice to mix all libs in one directory?…
vico
  • 17,051
  • 45
  • 159
  • 315
1
2
3
12 13