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

Mono Embed: Mutex for synchronize managed and native

There is a native c++ application (linux) that load mono assembly. How to to share mutex (or his analogue) between managed and native parts of same application? something like this: native part: native_lock_mutex(&db_mutex); // do something with…
2
votes
5 answers

Making Native .Net exectuables?

Now that Microsoft has released the sources of the .Net Framework, I came to wonder: Can we somehow compile .Net code to a native executable which does not need clr or jit to run?
jmasterx
  • 52,639
  • 96
  • 311
  • 557
2
votes
2 answers

UnsatisfiedLinkError implementing simple NDK setup

I found some similar questions, but their answers didn't help me. I went through this tutorial http://mindtherobot.com/blog/452/android-beginners-ndk-setup-step-by-step/ and get some problems with it. My Android.mk file : LOCAL_PATH := $(call…
Rikki Tikki Tavi
  • 3,089
  • 5
  • 43
  • 81
2
votes
1 answer

Native vs Open API SalesForce App

What are the differences between a native SalesForce app and an app that is compatible with SalesForce?
Lloyd Banks
  • 35,740
  • 58
  • 156
  • 248
2
votes
2 answers

GUI library for Native C++ applications

I know this question has already been asked but I am in the hope something new has come up. I work in the UI of a quite big legacy application using MFC as a GUI library. We want to make a whole refresh of the UI and I am looking for GUI libraries…
Javier De Pedro
  • 2,219
  • 4
  • 32
  • 49
2
votes
2 answers

is it possible to get native library information once get loaded

Is it possible to get information about Native library, Once got loaded for example architecture of library(32-bit or 64-bit) from java. Purpose: to display library version and architecture of library to user at runtime.
twid
  • 6,368
  • 4
  • 32
  • 50
2
votes
1 answer

Adding a Worklight app to an already existing Native app

First of all, I want to know if it is indeed possible to embed a Worklight application into an already existing Native app. I know that you can add a webview and feed content to a native app from the web, but how would I do that from a Worklight…
Creights
  • 907
  • 1
  • 12
  • 25
2
votes
0 answers

Want to call an already running native process from within Adobe AIR

What I wanted to achieve is to call an already running native process from within Adobe AIR. Actually from within Adobe AIR, I wanted to trigger something to already running native process so that it (native process) can take further actions based…
2
votes
0 answers

Native client driver DSN changes to SQL Server Driver

I configured 4 DSNs using the SQL Native Client driver on a Windows 2003 R2 machine. 2 DSNs pointing to an SQL Server 2005 express databses in the same machine, & 2 pointing to databases in another machine. Problem I am facing is that in the ODBC…
2
votes
1 answer

How to use Facebook OAuth within Android native?

I'm using official Facebook Android SDK to integrate Facebook to my application. When it comes to authorize, the SDK use a custom dialog with Webview in it, loading facebook login page for user to enter username & password, this sounds OK. However,…
onmyway133
  • 45,645
  • 31
  • 257
  • 263
2
votes
3 answers

Setting the current directory of a running app in C++

The following answer gives a solution using C#, I was wondering what the equivalent would be if one were using only c++ (not c++\cli) System.IO.Directory.SetCurrentDirectory(System.AppDomain.CurrentDomain.BaseDirectory); Is there anything in boost…
Rikardo Koder
  • 672
  • 9
  • 16
2
votes
1 answer

GUI test for native android and iOS applications

I have a native android and a native iOS application and want to test them both with one tool. Is there a tool which makes it possible to record/write a GUI test once and use it then for both platforms? The only tool I found was MonkeyTalk but…
DieselPower
  • 738
  • 2
  • 6
  • 22
2
votes
3 answers

Why some methods of Object and Thread class are not implemented in java itself?

Why the these methods java.lang.Thread.currentThread(), java.lang.Thread.sleep(), java.lang.Object.notify(), java.lang.Object.wait() of Thread & Object class are not implemented in java API's itself? Why there was need to make then native…
kTiwari
  • 1,488
  • 1
  • 14
  • 21
2
votes
1 answer

How do I use std::lock_guard to lock read and write access to a std::map?

When I step through the following code in MSVC 2012 I place a breakpoint on line 3. and line 8. First break comes on line 8. The lock_guard is called just fine and then we break on line 3. This time, since a lock is already obtained, an exception is…
user1621065
  • 23
  • 1
  • 5
2
votes
1 answer

AIR Native Extension unable to start service intent Android GCM

Hey everyone I have been toying around with a native extension lately for Android and I need to add Google Cloud Messaging. I was able to get the Google Cloud Messaging app to work on its own. But now that I have integrated it into a native…
Jcup
  • 23
  • 1
  • 3
1 2 3
99
100