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

Using the 800/900Mhz frequencies on Android device

Let's say I have an Android device which supports GSM 800/900Mhz bands and I want to use it as a transmitter to remotely control a car or anything else. Is it possible to program such a thing on Android ? Maybe using NDK ? The purpose would be to…
joni539
  • 183
  • 1
  • 11
2
votes
2 answers

How to convert activities to fragments to use in drawer

I am planning to convert the activities in my app to fragments to implement a drawer. But I have never used fragments before and they seem kinda complicated, so I'm asking for some quick help: What are the basic "rules" to convert from activity to…
KKO
  • 1,913
  • 3
  • 27
  • 35
2
votes
1 answer

JavaCV on Android: UnsatisfiedLinkError from libjniavdevice.so / dlopen failed cannot locate symbol "av_input_audio_device_next"

I am trying to work with JavaCV's FFmpegFrameGrabber on Android 4.4.2 / 4.3.1 . Inside the onCreate(...) method I am calling: FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(path) This causes the following runtime…
liorg
  • 21
  • 2
2
votes
2 answers

Running apk with dalvikvm

So I've been doing some research on how to run java code on an android device with dalvikvm. I can successfully run a java program compiled to a .dex file using the command dalvikvm -cp RunTest.dex RunTest, where I have a RunTest class which has my…
Otto45
  • 555
  • 2
  • 6
  • 20
2
votes
1 answer

What is the definition for "native" in Nodejs?

Recently, I learned the phrase "native module", I don't know exactly what's the meaning of native in programming. As far as I know, if a module compiled from C/C++, it's native. Am I right on this? Could you tell me more about it?
Vimos
  • 691
  • 1
  • 9
  • 23
2
votes
1 answer

Selective renderscript libraries

I've been working with renderscript in my project for a while now. In a recent effort to minimize APK size, I started wondering and researching whether the renderscript native libraries (libRSSupport.so and librsjni.so) - often bundled within the…
d4vidi
  • 2,407
  • 26
  • 27
2
votes
1 answer

Hibernate native sql query

Perfectly fine ms-sql statement SELECT distinct ProductLineCode , (SELECT CAST(ItemName + ', ' AS VARCHAR(MAX)) FROM Product spt where spt.ProductLineCode = pt.ProductLineCode FOR XML PATH ('')) as ItemNames FROM Product pt where ProductLineCode…
AlexeiP
  • 581
  • 1
  • 10
  • 26
2
votes
1 answer

Getting complete stack trace in WinDbg for .Net native images

I'm investigating a native memory leak in our .Net 4.0 application that uses System.DirectoryServices managed wrappers for AD operations. I've called !heap -l and got many results, including something like this: 000007fdb4bb1e65:…
RX_DID_RX
  • 4,113
  • 4
  • 17
  • 27
2
votes
1 answer

Wrap 32-bit native DLL in .NET DLL to use in 64-bit .NET application

I have a 32-bit native DLL which I dynamically load and communicate with in a 32-bit .NET application. The 32-bit application is limited by .NET's 2Gb memory limit however, and so I have a 64-bit version available and I have some 64-bit native DLLs…
Derf Skren
  • 479
  • 2
  • 22
2
votes
1 answer

Getting 'No Node Available Exception' while using TrasnsportClient of ElasticSearch

I am pretty new to Elastic Search. I have following things in my code OR looking for solution to 'No Node Available Exception' problem in the following scenario. 1) We have ES running on System with 1 Node and 1 Cluster. 2) We have 4 indexes on…
Mufaddal Kamdar
  • 249
  • 4
  • 11
2
votes
1 answer

Is it possible to embed a Tweet / Twitter Card natively in iOS?

Is it possible to embed a Tweet / Twitter Card (https://dev.twitter.com/docs/cards/types/summary-card) natively in an iOS App? All I could find was an API that delivers the…
stk
  • 6,311
  • 11
  • 42
  • 58
2
votes
1 answer

Odd return from WlanEnumInterfaces (Windows Native WiFi) in Java

I'm trying to map the Windows Native Wifi API in Java but I'm having problems with the WlanEnumInterfaces function. Basically, this function outputs a WLAN_INTERFACE_INFO_LIST structure containing an array of WLAN_INTERFACE_INFO structures. When I…
gustavohc
  • 23
  • 3
2
votes
1 answer

RTMP stream player?

would like to integrate native iOS app with Beats Music API. Can anyone suggest a good (open source) RTMP stream player? Will Apple reject my app if I do anything like that? Beats Music does not have the intention to support http streaming anytime…
Andy F
  • 59
  • 3
  • 5
2
votes
0 answers

How can I find out if my JVM is using hardware square root?

If you read the top of the incredibly-hard-to-find native sqrt method for Java, which is located at jdk1.6\src\jdk\src\share\native\java\lang\fdlibm\src\e_sqrt.c you will find this: /* __ieee754_sqrt(x) * Return correctly rounded sqrt. * …
Tyler Durden
  • 11,156
  • 9
  • 64
  • 126
2
votes
0 answers

UIActivityViewController messes the background on orientation change

I am having a native app, in which I have to show Share feature with UIActivityViewController. My app needs to support both orientations. When the share pops up and I change the device orientation, then the orientation for popup changes but the…