Questions tagged [native]
The native tag has no summary.
8 questions
1
vote
1
answer
159
views
How significant is the speed of native code for back end tasks?
Going native is extremely good for front end development. Whether its using android vs ionics, c++ vs dotnet/java, the benefits to GUI are significant.
I was wondering if the same had significant ...
0
votes
1
answer
45
views
menu content link in Backend VS menu content link in UI
Goal:
Have a common and same menu content link (for instance Home, about, consumer product, support) when you are using Angular, NativeScript and Android.
Background:
The menu contain seven different ...
-2
votes
2
answers
760
views
Converting Java code run by dependency to native code
Is it, at least theoretically, possible to convert a Java application into native code that can be run by something else written in Java? One example of this could be a Minecraft Spigot server. You ...
5
votes
4
answers
3k
views
Does one have to write multiple "flavors" of C/C++ code for each intended platform?
I have designed what I think is a useful, reusable functionality that I'd like to:
Implement in C/C++ as an open source library; and then
Write different "native binding libraries" for it in various ...
1
vote
1
answer
275
views
Relationship between apps, serial ports and device drivers
Please note: Although this question mentions Java and even a specific Java library, it really has nothing to do with Java and is really more about serial communication and device drivers. As such, I ...
0
votes
1
answer
166
views
Message queues and triggered comms within a native app
I'm building a native app which currently has zero backend infrastructure.
With services like Firebase's Authentication, database and notifications means that all interactions are handled client-side ...
0
votes
2
answers
836
views
Downside of writing JNI with C++ for a library in C?
Background:
I am new to the JNI world, and not an experienced C programmer.
I want to write an JNI for connecting a Java toolkit and a library in C (not just for speed, but for good functionality as ...
6
votes
4
answers
8k
views
Avoiding hangs when calling a native API
Background
We have a piece of programmable hardware here at work that we integrate into almost all of our systems. This piece of hardware came with a native Windows DLL (for which we do not have the ...