Questions tagged [native]
The native tag has no summary.
8 questions
1vote
1answer
147views
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 ...
0votes
1answer
33views
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 ...
-2votes
2answers
729views
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 ...
5votes
4answers
3kviews
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 ...
1vote
1answer
248views
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 ...
0votes
1answer
156views
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 ...
0votes
2answers
821views
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 ...
5votes
4answers
8kviews
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 ...