452 questions
8 votes
1 answer
6k views
How to fix warning "APK does not support 16 Kb devices"
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 ...
1 vote
0 answers
143 views
Android Emulator detection is not working for some devices
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 ...
3 votes
2 answers
792 views
How to tell which JNI libraries are actually loaded by the JVM on startup of a JDK 17 application?
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]...
0 votes
0 answers
93 views
error find symbol in R.id. when build android cordova app
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 = ...
0 votes
0 answers
126 views
Using native code from C language in Java for Programming Microcontroller
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 ...
2 votes
0 answers
473 views
Implement camera preview in native and use in flutter
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 ...
0 votes
1 answer
2k views
How to Include other CMake projects in Android Studio
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 ...
-1 votes
2 answers
524 views
Tools to convert lisp code to assembly language
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-...