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

No implementation found for void org.telegram.tgnet.ConnectionsManager.native_setJava(boolean)

In latest telegram source code in github removing prebuilt libraries and when download and debug source code get this error No implementation found for void org.telegram.tgnet.ConnectionsManager.native_setJava(boolean) (tried …
maoprogrammer
  • 91
  • 2
  • 4
2
votes
0 answers

Gradle / Groovy models

I'm trying to use gradle to build simple native application. The below is an example code from Gradle documentation of native plugins. model { components { main(NativeLibrarySpec) { sources { cpp { …
sandye51
  • 91
  • 9
2
votes
2 answers

How to know if GPU computing is used in OpenCv4Android native

I am programming a native app on Android using Opencv4Android. I am using the Opencv Manager. At the staup of the app, I receive these logs: But how to know if openCv is really using OpenCl for acceleration or not ?
MadMax007
  • 63
  • 4
2
votes
1 answer

How to adjust jna native classes and functions to adhere to java naming conevntions?

I have used JNA to call functions from a C library. But the class names in the C library start with simple letters and some of the structure names as well. These are causing sonar qube to report naming convention issues which are "major". Is there…
AnOldSoul
  • 4,017
  • 12
  • 57
  • 118
2
votes
0 answers

Debug C/C++ (native) a ndk build app in Android Studio?

I am trying to debug native code (using breakpoints) on Android Studio. As far as I know should be possible on 1.5. The key point is that the app has been compiled using ndk build standard way, and it would be a huge task to create an Android Studio…
LucasGH
  • 130
  • 1
  • 7
2
votes
0 answers

how can i use android wifi-display native source in my app?

I want to use miracast in my app without going to system setting, and find miracast device and connect to them in my app. Two class that was in setting classes that can help me are hidden in android SDK: import…
hkh114
  • 162
  • 1
  • 3
  • 15
2
votes
1 answer

Watch OS 2 Native app Bluetooth device connection

As the title states: I want to create an native Watch OS2 app and communicate with bluetooth devices. I know Watch OS 2 can pair with wireless headsets (BLE) and 'health devices' but do developers have access to use this? Thanks in advance.
rwzdoorn
  • 615
  • 8
  • 29
2
votes
2 answers

Decide concerning the technology I should use for developing an Android app based on an eCommerce domain

I need to develop an application related to C2C communication in which manufacturers can directly start communicating with retailers for bulk orders and maintain the order in an easy and fast way. Please suggest what framework i can use. For…
mayank agrawal
  • 628
  • 5
  • 20
2
votes
0 answers

Open native camera from react native

I am new to react native and need your help. I am new to react native I am trying to integrate blink sdk with my react native app. I have exposed a native method to react native js using RCT_EXPORT_METHOD(). JS button click is invoking this native…
Tushki
  • 31
  • 8
2
votes
1 answer

how to install a global keyboard handler for Java App

Possible Duplicate: Event listener in Java without app having focus? (Global keypress detection) I have an application written in Java and I would like to install a truly global keyboard handler. For instance, I want Ctrl+Alt+Whatever to…
Jen S.
  • 4,106
  • 4
  • 35
  • 44
2
votes
1 answer

Native app install banner on chrome for iOS

https://developers.google.com/web/updates/2015/03/increasing-engagement-with-app-install-banners-in-chrome-for-android Judging by the contents here, it seems that we can specify different native stores in the related_applications What should the…
Zhen Liu
  • 7,550
  • 14
  • 53
  • 96
2
votes
0 answers

How do I debug my native modules in atom electron?

Using Visual studio I can debug my module in against node but the electron environment does not seem to allow this. I can see that my module has loaded with the matching symbols. My break points become active but it will not break when the my test…
Justin
  • 3,255
  • 3
  • 22
  • 20
2
votes
1 answer

Do Pdb files contains public function's arguments name?

I need to look up function argument names of public methods. Types are easily available from PDB symbols and DIA symbols, but is there any way out by which we can trace and pull out function argument names as well? I am concerned with the native pdb…
Usman
  • 2,742
  • 4
  • 44
  • 82
2
votes
1 answer

Visual Studio debug - dump array to file

I attached a Visual Studio 2015 debugger to a process and want to dump a specific memory section to a file (unsigned char array, contains binary image data). Is something like that possible? edit: I dumped the array using HxD (Hex editor). Searched…
CalibeR.50
  • 370
  • 2
  • 13
2
votes
1 answer

Access .NET ushort[] array as uint16_t* without copying

When converting ushort[] from c# to c++/cli to c++ do I have to copy all the data? or can I cast the pointer? PreprocessorWrapper::Function1(ImageData^ rawImage) { array^ rawDataTemp = rawImage->RawData; bayer_raw_image*…
Gilad
  • 6,437
  • 14
  • 61
  • 119