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
1 answer

Toggle Native Events Capability of WebDriver at run time

Mouse Actions like Hover-over an element using 'Action Builder' does not seem to be reliable while running on Internet Explorer, when 'Native Events' is enabled. (Chrome and Firefox works perfectly) On disabling the 'Native Events' using the below…
Vel Ganesh
  • 537
  • 3
  • 12
  • 32
2
votes
1 answer

.So file for FFMPEG from NDK

I am not able to make .So file for FFMPEG from NDK . I Just Download a zip file from GitHub https://github.com/appunite/AndroidFFmpeg Then i used CYGWIN for using NDK commends for making .so file from jni folder in ffmpeg library then on Cygwin i…
Nikhil Lamba
  • 593
  • 1
  • 6
  • 17
2
votes
3 answers

Apache Tomcat doesn't find Native library

I maintained countless instances of tomcat but now I run into a problem I never ran into before. I get the well known log message where tomcat complains that it can't find the native lib at D:\Programme\Apache Software Foundation\Tomcat…
shylynx
  • 597
  • 1
  • 7
  • 25
2
votes
2 answers

Native Library in java using eclipse

Please let me know how to use Native Lib. in Eclipse. for more: I am using AspriseOCR.dll in our project for image processing. but sys can't find this dll file in java library path. i am getting below error: Exception in thread "main"…
2
votes
1 answer

Failing to marshal char** between native x32 shared library and matlab

I'm trying to call a function in a native shared library from matlab using loadlibrary and calllib but I'm failing to obtain a string that is allocated from inside the library as char**. Here is the (simplified) code of the native library: #include…
CitizenInsane
  • 4,755
  • 1
  • 25
  • 56
2
votes
2 answers

how to invoke a iphone native application from webview

i have a application which has 2 parts one is a webview and other is a native iphone application. I want to invoke a native iphone application from a website inside a webview.
Himanshu
  • 431
  • 1
  • 5
  • 6
2
votes
0 answers

Glassfish 3.1.2 load native library (.dll)

I am using a native library (OpenCV), for which I have the .jar and .dll. When I run a local Java project I simply add the .jar to the build path from Eclipse, and set the native library path. Then I load it with…
ChrisGeo
  • 3,807
  • 13
  • 54
  • 92
2
votes
1 answer

android extend class with native methods

I've seen here and here that you cannot override native methods in android, but I was wondering if I can have a class declaring some native methods, and then extend it with another class declaring some additional native methods. My situation is as…
ocramot
  • 1,361
  • 28
  • 55
2
votes
2 answers

C# Embed Image in New Outlook Mail Item from Standalone Application

What is the best way of embedding an image into a new outlook mail item from a Stand Alone application. Not building an add-in for outlook. Trying to embed or attach an existing picture to a new email item. I have read and looked at a lot of…
brink668
  • 595
  • 3
  • 8
  • 13
2
votes
2 answers

App Development for iOS and Android: Native vs Hybrid

i need to develop an App for iOS and Android. I can code in obj. C and Java. The app will display data from a MySQL Database and it will use position Data (around you) to display on a Map. This DB will be managed online. I think native development…
Bandicood
  • 51
  • 4
2
votes
2 answers

How to pack a library in a jar file?

I am new to working with any native library and this question might seem stupid so please bear with me. I downloaded LTI-CIVIL to capture video input from webcam. It requires me to create a library in Eclipse and point out the location of the…
An SO User
  • 24,612
  • 35
  • 133
  • 221
2
votes
3 answers

Hibernate native query return integer list not working

I am using native query in hibernate and it will return me list of id. I want to convert this list in to integer list. But it is not working and showing me the exception. public List fethcSurvayIdOnCount(){ HibernateCallback…
ap.singh
  • 1,150
  • 4
  • 15
  • 35
2
votes
1 answer

Android, Native development kit: No implementation found for native Lcom/example/hellojni/Mainactivity;.sayHelloWorld ()Ljava/lang/String;

Okay, so... have arrived at whits end. Attempting to learn to utilize the native development kit... starting off with Hello World when the very string "Hello World" is returned from a C source. To begin: Here's the "main activity". package…
Mr Nibbles
  • 131
  • 2
  • 9
2
votes
1 answer

Graceful Shutdown of Thread executing native code

In my application, I have a ExecutorService of fixed size 1. Now the thread calls some native code. Inside the native method, it gets blocked and waits for the OS events which needs to be dispatched. The issue is in graceful shutdown of the…
Jatin
  • 31,116
  • 15
  • 98
  • 163
2
votes
2 answers

Converting my jQuery Mobile website to a native app

I've developed a mobile website using jQuery Mobile and I want to convert it to a native application (Android but if iOS is possible too than even better). My mobile website has HTML, JavaScript and PHP to connect to the database and uses MySQL…
alexkun4
  • 105
  • 1
  • 3
  • 8