Questions tagged [native]

An application designed to run in the computer environment (machine language and OS) being referenced. The term is used to contrast a native application with an interpreted one such as a Java application that is not native to a single platform.

An application designed to run in the computer environment (machine language and OS) it is being run in. The term is used to refer to a locally installed application in contrast to various other software architectures. For example, it may contrast a native application that runs by itself with an interpreted one, such as a Java applet, that requires interpreter software in the machine. A native app may be contrasted with an emulated application written for a different platform and converted in real time to run. In addition, a native app may be contrasted with a Web application that is run within the browser.

Useful Links: native-app-vs-mobile-web-app-comparison

4712 questions
2
votes
2 answers

Calling native Java constructors from Frege

Do you know where I can find documentation about Frege's Java bindings? Coming from Haskell, I find that the most interesting aspect of Frege. The documentation that I found unfortunately does not go into detail very much. Here is my test example.…
Philipp Claßen
  • 41,306
  • 31
  • 146
  • 239
2
votes
2 answers

Is it possible using HTML in Android native application?

I am developing android native app. I am using image and text. So, I decided to use HTML in layout. But I don't know is it possible and if possible how. Regards
Breed Hansen
  • 1,159
  • 5
  • 13
  • 21
2
votes
1 answer

android get Stacktrace from native code in LogCat

When native part(C++, Qt) of my program crashed I see in logcat some stacktrace. But this messages don't have application name, only "DEBUG" tag. That's why I can not get it for sending crash report (I use ACRA) beacuse "since JellyBean logcat…
Dmitry
  • 369
  • 4
  • 18
2
votes
1 answer

Interrupting native threads

I am currently investigating how Thread.Interrupt plays together with P/Invoke or native calls. I have read in MSDN that it is not possible to abort (Thread.Abort) a thread which is in the native call (other use cases might apply as well). But I did…
ovanes
  • 5,483
  • 2
  • 34
  • 60
2
votes
1 answer

The benefits of x64 CLR

The little premature optimization bug in my head tells me that I should port my existing x86 C# application to x64 because of the x64 release of an unmanaged DLL on which it relies. I know the answer is probably to do it, test and see what happens,…
user629926
  • 1,910
  • 2
  • 18
  • 43
2
votes
0 answers

How to return object of class array from Java to JNI?

I am trying to make one app based on native library. and I need to do java method call in jni but jni give run time error. Java method Code:here is Texture is java class. private Texture[] getProductTexture() { return mBookDataTexture; } Jni…
urveshpatel50
  • 1,675
  • 16
  • 35
2
votes
5 answers

Options for refactoring bits of code away from native C++?

So, one commonly heard comment when talking about performance is that you write your code with whatever language gets the job done fastest. If performance in specific areas is a problem, then rewrite those bits in C/C++. But, what if you're starting…
Joe
  • 3,827
  • 1
  • 25
  • 37
2
votes
1 answer

java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path

Trying to install JOGL for my Windows Eclipse installation and I'm picking up the error as described in the title. This is what I did to try and install JOGL: Downloaded jogamp-all-platforms.7z Followed…
Chris Watts
  • 6,197
  • 7
  • 49
  • 98
2
votes
1 answer

Gradle build with JNI dependencies, application and eclipse plugins

I'm trying to get a sample LWJGL application working with Gradle. LWJGL has native bindings for OpenGL and OpenAL, in the jar lwjgl-platform-2.8.5-natives-windows.jar and such, however, Gradle does not seem to recognize this fact. The application…
Frigo
  • 1,709
  • 1
  • 14
  • 32
2
votes
1 answer

Using Java Web Start with JavaFX's Native Bundles

I have developed a JavaFX app and I am going to distribute it as a Native Package to avoid headaches with users having a Java version lower than 7 (and thus, without JavaFX) or having no Java at all. However, I also want to be able to deliver…
Dreen
  • 6,976
  • 11
  • 47
  • 69
2
votes
0 answers

Using native dlls in Windows Store application

I need to use native dlls in Windows Store app. (dlls are ffmpeg, compiled for Windows) Is it possible?
2
votes
2 answers

Native libraries .so.XY failing to link at runtime

I have built FFmpeg for Android and want to use it in an application like so: System.loadLibrary("avutil"); System.loadLibrary("swscale"); System.loadLibrary("avcodec"); System.loadLibrary("avformat"); The build output are lib*.so, lib*.so.MAJOR…
AndiDog
  • 68,631
  • 21
  • 159
  • 205
2
votes
2 answers

How to get real code coverage using vsinstr/vsperfmon

my microsoft-based development environment looks like this: - huge native c++ codebase, separated into 10 projects - each project has a dependent test project (GoogleTest unit tests), the sources to test are simply referenced. I generated the…
lakai
  • 209
  • 1
  • 4
  • 14
2
votes
3 answers

Change repeat key threshold c++

I'm building a c++ tetris game (not c++ .Net). I feel my controls are weird. I want to make it so that when user presses one of the arrow keys, about 10ms of holding it down will start the repeat function windows has. It is set to about 500ms by…
jmasterx
  • 52,639
  • 96
  • 311
  • 557
2
votes
3 answers

Launching a BB10 application by clicking a link in the browser or email

Is it possible to register an application to be launched when a specific URL is requested in the browser, email or bbm? For example I would like when the user clicks on a link flycraft://replay/123 my app to be launched and passed the URI.
HarKal
  • 71
  • 7