452 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
8
votes
1
answer
7k
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
votes
1
answer
85
views
Flutter: How to avoid asking for permissions from the system folder picker?
I am using system folder picker to store my doc file, but whenever I am choosing folder then clicking on "USE THIS FOLDER" asking for permission.I want If I granted permission for any folder ...
1
vote
0
answers
154
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 ...
0
votes
1
answer
210
views
Can I modify (fill) array that I pass from C# to C++?
I have the next C# method:
internal static class FillArrayApi
{
[DllImport("NativeLibrary.dll", EntryPoint = "fill_array")]
internal static extern void FillArray(byte[] ...
3
votes
2
answers
807
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]...
7
votes
0
answers
1k
views
requireNativeComponent was not found in the UIManager - React native (IOS)
im building my npm package for ios, using native modules because i need to use a third party framework, the package is published and all good, installed to my app but when im about to render the ...
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
1
answer
5k
views
App Bundle contains native code google play warning
I got this warning when I was publishing my app
This App Bundle contains native code, and you've not uploaded debug symbols. We recommend that you upload a symbol file to make your crashes and ANRs ...
0
votes
0
answers
128
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 ...
0
votes
0
answers
537
views
Does WinUI has an equivalent of UWP's .NET Native?
UWP can generate native code using .NET Native, is there an equivalent for WinUI?
2
votes
0
answers
476
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 ...
3
votes
0
answers
239
views
Native code programming technique in a vb6 class module
I would like to implement this particular programming technique in my vb6 class, but I cannot understand how the "Nativecode" lines were obtained. Are these normal lines of code, obfuscated ...
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 ...
0
votes
0
answers
236
views
opengl32.dll hangs on SetPixelFormat How to replace or hook a custom function
I have a scenario where in some cases when opengl32.setPixelFormat is called it then call _wglDescribePixelFormat ( which is exported function ) which then calls further in the call stack ...
-1
votes
2
answers
536
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-...