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

How to check if a windows is really on Foreground?

I´m trying to check if a Window, based on its title, is the Active Window. But the code that I used only works if I´m in Debug mode of Eclipse. If I run the program without breakpoints it doesn´t work. I´v tryed to delay the execution with a Thread…
IOSJR
  • 31
  • 2
  • 8
2
votes
2 answers

Gradle and Lwjgl 3 Natives

I'm new to gradle and I'm trying to configure gradle with lwjgl3. Because I didn't found a repo where lwjgl3 is hosted i decided that everybody who use this project has to define the path to the lwjgl lib. I created a user.gradle file with contains…
H3ADLESS
  • 83
  • 1
  • 10
2
votes
0 answers

Android native crash in libdvm.so

My app is crashing randomly, and I need some guidance on how to debug the native crash dump I see in logcat. This is a Xamarin/Android app that relies heavily on Bluetooth serial I/O. Is there a genius out there that can read this dump and extract…
Greg Ferreri
  • 2,652
  • 5
  • 28
  • 38
2
votes
2 answers

Advice on whether to use native C++ DLL or not: PINVOKE & Marshaling?

What's the best way to do this....? I have some Native C++ code that uses a lot of Win32 calls together with byte buffers (allocated using HeapAlloc). I'd like to extend the code and make a C# GUI...and maybe later use a basic Win32 GUI (for use…
Bob
  • 403
  • 1
  • 4
  • 6
2
votes
3 answers

Tabrisjs Cannot establish connection package.json file

I followed the tabrisjs tutorial instructions to the letter when I get to this part In the URL tab of the developer app, enter: http://(development-machine-ip-address):8080/ I do as it instructs and I get the following error Could not…
QRiz
  • 41
  • 7
2
votes
3 answers

javascript `localeCompare` return different values

I am now working in javascript string sorting using localeCompare and my data will contain several null values too. And i found a weird behavior with localeCompare when comparing string and null value. When comparing string value upto startswith…
Madhu
  • 2,416
  • 3
  • 15
  • 33
2
votes
1 answer

Exporting Eclipse project with a reference to native library

I have an Eclipse project, that uses JMF, I found out I could skip the JMF installation process and still to use the CaptureDeviceManager of the JMF, and to receive the list of devices if I could point my project to the native lib of the JMF. I've…
TacB0sS
  • 10,106
  • 12
  • 75
  • 118
2
votes
4 answers

Blackberry apps: Native or webapps?

I have read the Blackberry documentation and it is possible to push a notification from a webapp. I am planning to create a Blackberry application that compliments to our webapps. But I am still left in the middle whether to develop a webapp or…
Joshua Partogi
  • 16,167
  • 14
  • 53
  • 75
2
votes
0 answers

Keyboard size for iPhone 6 Plus with PhoneGap

Looks like a stupid issue but after hours of search and tests, I can't find a solution. I'm adapting an existing app developed with PhoneGap for the iPhone 6 Plus and all is fine except keyboard. On iPhone 6 Plus, the keyboard is magnified/zoomed…
Snoop
  • 31
  • 2
2
votes
1 answer

Getting Access on the Android VideoView received packets when Streaming a URL

Does the native code of the VideoView give access to the received packets of the video before or after decoding it? I need to access these packets in order to transmit them to another device. The initial solution is to modify the Android native…
Ziad Halabi
  • 964
  • 11
  • 31
2
votes
1 answer

How to change windows desktop background

I realise that there are other questions on this topic, all of which I have attempted to implement the answers of and failed. I would like to end up with a full blown answer, ideally with a demonstration, on how to, in Windows and only Windows set…
Scruffy
  • 580
  • 8
  • 23
2
votes
1 answer

Simple convert C++/CLI int^ to unmanaged int*

This is so basic it should be easy to find. In my searches all I get is more complex solutions. Converting strings, marshaling, pinning objects. How do you simply convert from a c++/CLI int^ pointer to a native int* in C++/CLI. The body of my…
ldiablo
  • 67
  • 11
2
votes
2 answers

Meteor: how to point native mobile app to deployed server

If you have a meteor app hosted on modulus that is a web and native mobile app, how do you point the native app towards meteor's backend. Also, does meteor still 'send down' the front-end when it is accessed for a native app?
TDmoneybanks
  • 478
  • 1
  • 7
  • 20
2
votes
5 answers

#include adding ~43 KB to my exe

I'm using Code::Blocks to write my program and when I include (or ) the size of my exe grows. My program is very simple and I need to keep it small <20kb. I'm pretty sure this is happening because of the C++ Standards Committee…
Lienau
  • 1,353
  • 1
  • 20
  • 38
2
votes
1 answer

use Pointer address in Java using Bridj and JNAerator

I have this code in C and I would like to write the same in Java: static u_int32_t print_pkt (struct nfq_data *tb){ unsigned char *data; ret = nfq_get_payload(tb, &data); if (ret >= 0) printf("payload_len=%d ", ret); …
user1928596
  • 1,503
  • 16
  • 21