Skip to main content
8 votes
1 answer
6k views

My project is using some external libraries which have native code. I've got warning from Google, about migrating my app to support 16 Kb pages. In apk analyser I noticed, that .so libraries were not ...
Fedor's user avatar
  • 171
1 vote
0 answers
143 views

I have a piece of native code with C in my Android project for detecting emulators. It works perfectly for detecting all Emulators but some real devices are detected as vulnerable too. How can I ...
nima's user avatar
  • 95
3 votes
2 answers
792 views

I started my app with the JVM option -Xlog:library=trace - based on advice in another question - to see which native libraries are being loaded. But the output is pretty confusing - see below: [0.021s]...
Augustin Cayot 's user avatar
0 votes
0 answers
93 views

Good day, I would like to set the allowFileAccess to true in WebView websetting. I try to do something as follow: WebView webView = (WebView) findViewById(R.id.webview); WebSettings webSettings = ...
Panadol Chong's user avatar
0 votes
0 answers
126 views

I have a source code library from Renesas for their Co2 sensor. The source code library is completely written in C language and a static library (with .a extension) of it is given for the Co2 sensor ...
Mustaq's user avatar
  • 1
2 votes
0 answers
473 views

I want to implement a native android camera preview (using c++) and display this preview on a flutter application. I couldn't find any direct possible way to do so - up to this point the only solution ...
ssSS SSSSSSS's user avatar
0 votes
1 answer
2k views

Recently, I'v been developing a native c++ project with Android studio, which needs some other external open source libraries. I want to involve these libraries (for example, hello library)inside the ...
candylife9's user avatar
-1 votes
2 answers
524 views

I have a lisp function. Is it possible to convert it to assembly language? (defun isprime (num &optional (d (- num 1))) (if (/= num 1) (or (= d 1) (and (/= (rem num d) 0) (is-...
rohit's user avatar
  • 103

15 30 50 per page
1
2 3 4 5
31