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
0 answers

Ext.device.Device.scheme is always false on launching Sencha Touch Native iOS app with custom URL scheme

Summary: successfully created a native iOS app in Sencha Touch 2.1 (and 2.2alpha) with a custom URL scheme. In both iOS Simulator and on a real device, launching the app from cold using the custom URL does not pass the URL to the app…
user533676
  • 575
  • 3
  • 11
2
votes
1 answer

Android: how Java threads correspond to native threads?

In Android, if I call functions from the same JNI library from different Java threads, will the JNI functions be called on the same native thread or in different native threads? Will the answer be the same for all Android versions? (I suspect that…
18446744073709551615
  • 16,368
  • 4
  • 94
  • 127
2
votes
0 answers

IIS 7.5 Native Module Not Loading

I am trying to develop a native (CPP) IIS 7.5 module that will handle a specific type of request using visual studio 2010 and I am having a heck of a time. The library builds correctly however it appears IIS is never calling RegisterModule. Things I…
2
votes
1 answer

Crossbrowser alternative for html = $('html')

Is it too lame to write like this? var html = $('html'); Seems that html is equal to $(window) or $(document)? How can it be replaced by a crossbrowser native javascript?
Mark
  • 235
  • 3
  • 9
2
votes
3 answers

JDK Native Code Implementation

I would like to know if it is possible to get the Native Code implementation of JDK methods, such as: public final class System { /* First thing---register the natives */ private static native void registerNatives(); ... ....}
Prateek
  • 12,014
  • 12
  • 60
  • 81
2
votes
0 answers

how 3cxphone work without native sip stack on android

I read some posts that said samsung galaxy s2 does not support native sip stack, but how does 3cxphone work in galaxy s2? Is it depend on native sip stack or not, and how can I create an app for android similar to 3cxphone? I tried to do one by SIP…
Jan Mohd
  • 83
  • 7
2
votes
1 answer

Create an "accessory view" in Java Swing file dialogs

On Mac OS X, the native NSSavePanel supports an "accessory view" that can be used to specify file types and other options (using setAccessoryView:). I would like to do something similar in my Swing application as well. I know JFileChooser supports…
Frederik
  • 14,156
  • 10
  • 45
  • 53
2
votes
2 answers

Visual Studio Debugger Watch problems

How can I find out the address of a variable on the stack in the visual studio debugger watch window (or elsewhere?) Reading the variable works fine: streets streets [11790](0x1c66a690 [...] std::vector > But…
Sideshow Bob
  • 4,566
  • 5
  • 42
  • 79
2
votes
1 answer

accessing mat pixels in native

i am trying to access and modify mat pixels in native, but i cannot get rid of errors. my function is: `extern "C" { JNIEXPORT void JNICALL Java_org_opencv_samples_tutorial3_Sample3Native_FindFeatures(JNIEnv*, jobject, jlong addrGray, jlong…
user1768360
  • 193
  • 1
  • 2
  • 12
2
votes
1 answer

load java native file lib

I would like to use some native files and use some files out of an android project. I need this files for my own java project and need to import the lib. I am trying to load the lib with: static { System.loadLibrary("mrclient_java"); } The lib…
Steckdoserich
  • 834
  • 2
  • 11
  • 24
2
votes
2 answers

Calling a C++ function from Java. Mapping "const char*"

I have searched this through stackoverflow and in the internet and haven't found yet an answer. I have a SDK of a fingerprint reader which I haven't got the source code, meaning I can't change it. It has a few methods I need to access, which…
Emerson
  • 935
  • 4
  • 13
  • 27
2
votes
1 answer

UnsatisfiedLinkError in JNI

I'm working on a project for school using JNI. In a nutshell, I have gotten the first part working using the shared library and JNI, but the second part (which refers to the same library) gives an UnsatisfiedLinkError every time I try to run the…
turkycat
  • 35
  • 7
2
votes
2 answers

Exception in thread "main" java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java

This is the Native.cpp : // Native.cpp : Defines the exported functions for the DLL application. // #include "stdafx.h" #define ALLEGRO_NO_MAGIC_MAIN #include #include #include #include "generic_interface.h" #include…
user1803112
  • 83
  • 1
  • 5
2
votes
1 answer

LTI-Civil Project wierd error when exported to a JAR

Outline: 1. My project uses LTI-CIVIL to capture webcam. 2. In Eclipse, everything works fine. 3. As LTI_CIVIL uses native libraries to access hardware, I have opted to use JarClassLoader (info found here…
sashu2012
  • 63
  • 1
  • 4
2
votes
1 answer

Preview image of the link to be share on Facebook Native Dialogs

My question is the next. I am allowing to the user to post a link from an iOS native app. Using the old dialog system was possbile to display a thumbnail/preview of the link in the dialog pop up. That was very informative to the user. In the new…
gabrielpalomino
  • 331
  • 3
  • 8