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

IllegalArgumentException pointerindex out of range ICS (HorizontalScrollView)

I have a weird exception (the stacktrace is as follows) 06-28 01:50:52.900: E/Crittercism(8804): java.lang.IllegalArgumentException: pointerIndex out of range 06-28 01:50:52.900: E/Crittercism(8804): at…
2
votes
0 answers

Native DLL not being published to Azure Compute Emulator

I have a native DLL (x64) built with VC++ 2008 that I'm trying to use in an azure project. The code runs fine in a standalone executable, but when I try to run it in the Compute Emulator, I receive a DLL not found exception. For several days I've…
roufamatic
  • 18,187
  • 7
  • 57
  • 86
2
votes
3 answers

javax.smartcardio: how to send native commands to Desfire card?

I am creating a java application communicating with a Mifare DESFire card through a PC/SC contactless reader and the javax.smartcardio API. I manage to send regular ISO 7816 APDUs (CLA, INS, P1-P2, Lc, Command data, Le). I have read on Ridrix's Blog…
GChabot
  • 143
  • 2
  • 9
2
votes
1 answer

How to call a function in main v8 loop from a different thread

I am trying to implement an audio module for nodejs which involves a neural network. This neural network has 2 types of nodes Pure C++ C++ based on JAVASCRIPT ( which involves calling a javascript function ) As far as i know its not possible to…
ShrekOverflow
  • 6,795
  • 3
  • 37
  • 48
2
votes
2 answers

Facebook native Android App Access Token

We generated an access token using this link: https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=123456789000000&client_secret=03252f2ff1eddffe234a0dc7256abb8c And it gave us a, access token like this:…
Amit
  • 61
  • 2
  • 3
2
votes
1 answer

How Native Libraries are part of the APK file

The APK file consists of the Dalvik executable, Resources and Native Libraries.How does Dalvik machine code contain abstraction code such as these native libraries? It would only make since if they are libraries in machine code like DLL or LIB's.
Chris Okyen
  • 529
  • 2
  • 6
  • 22
2
votes
1 answer

Place a SIP call via Intent

I am writing an Android application which will place a SIP call. I want to use the native Android SIP APIs and have found documentation under: http://developer.android.com/guide/topics/connectivity/sip.html…
Thomas R.
  • 93
  • 1
  • 2
  • 9
2
votes
1 answer

How to capture H.264 encoded frame in android?

I understand like, there are two ways of capturing video in android. 1) using SurfaceView API 2) using MediaRecorder API I want to capture the H.264 encoded frames using the Android (3.0+) 's default encoder to send it over network using RTP. While…
user698316
  • 61
  • 1
  • 6
2
votes
2 answers

Android NDK Native Function Call Issue

I am attempting to write an Android application that makes use of the GNU Scientific Library (GSL). In particular, I am interested in 'libgslcblas.so' for its BLAS implementation. I decided to take advantage of the Android NDK and write a Java…
Daeden
  • 481
  • 1
  • 6
  • 20
2
votes
1 answer

JBoss Native Connector in JBoss 4.2.x

I would like to configure JBoss 4.2.x to utilize the JBoss Web Native Connectors instead of the default Ajp processor. This is in order to avoid a bug in the Jboss 4.2.x Ajp processor of which results in many hung threads and performance hits. I…
Nicholas DiPiazza
  • 10,029
  • 11
  • 83
  • 152
2
votes
0 answers

Native code profiling on Android

Possible Duplicate: Android software NDK native c code profiling on actual Android phones The method profiler that comes with DDMS tool doesn't allow Method Profiler for the native codes. Is there any other tool that allows ndk code profiling?
ssk
  • 9,045
  • 26
  • 96
  • 169
2
votes
0 answers

changing namespace prefixes in soap message with wwsapi

I'm using WWSAPI inside a C project to communicate with a web service by sending and receiving SOAP messages. The error I'm having is that The server is expecting to see a tag and the message generated by my program doesn't have one.…
Ryan Robinson
  • 84
  • 1
  • 7
2
votes
1 answer

Motorola Droid 3 Camera app kills backgournd apps

I have application that opens native camera app and get the captured picture. I have seen that when my application open native camera application it kills all background running applications(including my application). This issue is also tested in…
Nirav
  • 21
  • 4
2
votes
3 answers

How to handle NM_CLICK for Syslink control

Did quite a bit of research trying to figure out how to get this to work properly. I read that if you filter WM_NOTIFY -> NM_CLICK, it would catch the actual click event of the syslink. Trouble is that it catches the event, though it gets stuck in a…
Nightforce2
  • 1,426
  • 5
  • 18
  • 31
2
votes
2 answers

codeigniter php native sessions without using cookies or URL session id, but matching browserfingerprints in database

Because of european privacy law being harsly applied in the Netherlands and to keep my company's site user friendly without nagging the users with questions if it's okay to store a cookie on their computer that allows me to access their client…
Tschallacka
  • 27,901
  • 14
  • 88
  • 133
1 2 3
99
100