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
2 answers

Firefox for Android native app icon (address bar)

I've recently noticed a little half height android appear to the right hand side of the address bar in Firefox for Android. It seems this is an indicator that a native app is available for the website that you are viewing (StackExchange being one…
Fat Monk
  • 2,077
  • 1
  • 26
  • 59
2
votes
1 answer

Create CoApp .autopkg to copy files from redist package files to a subdirectory of the $(TargetDir)

I am trying to package a legacy C++ project with CoApp. The project requires the redistributable .dll's from package are copied to a subdirectory of the $(TargetDir). I can see the following in the generated MyProj.redist.targets file:
CodeScrubber
  • 143
  • 9
2
votes
1 answer

native facebook login with uihelper in android

I want to do native Facebook login with the following code. Can anybody help me about what is incorrect with the following code? I am using UiHelper class because I need this for posting custom stories with open graph. I have used a button in this…
jarnail
  • 243
  • 4
  • 15
2
votes
2 answers

Logging calls made by native code

In Java, several native methods e.g. in the Java Runtime Library may call regular (bytecode-based) methods. I would like to know if there is some VM command-line parameter or some instrumentation tool or API that I can use to such calls. P.S. Note…
user66237
  • 793
  • 1
  • 5
  • 19
2
votes
2 answers

VB.Net - Check if File is .net binary

How can I check with VB.Net if a the file C:\Documents\Test.exe is a .net binary or if it is a native binary?
nexno
  • 429
  • 8
  • 26
2
votes
1 answer

Where to find native libraries for JRE?

How can I find the native files (on Linux, probably a SO file, on Windows, probably a DLL) the JRE is using for making system-level calls? How can I find the source code for these files? BONUS: I'm specifically looking for the native file that…
AdjustingForInflation
  • 1,571
  • 2
  • 26
  • 50
2
votes
0 answers

I got this error when I run my Android app on Sony telephone

The error appears in google play like the following : Native crash in unknown.unknown Build fingerprint: 'Sony/C5303/C5303:4.3/12.1.A.0.266/9f5_nw:user/release-keys' Revision: '0' pid: 13092, tid: 13208, name: AsyncTask #2 >>>…
2
votes
1 answer

Get Java object using C++ to call the Java method

I am developing in native and Java code for Android. I plan to invoke a Java listener based on a C/C++ code. The idea is the C/C++ code call a method that actually invoke the Java Listener. The C/C++ code is as follow. I can call the Java method…
bonchenko
  • 567
  • 1
  • 9
  • 21
2
votes
1 answer

Limitations of C# to native interop

I know that C# allows interoperability with native code using PInvoke (An Overview of Managed/Unmanaged Code Interoperability) We are planning to develop new code, and are considering 2 options: Native solution + managed (C#) wrapper around interop…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
2
votes
2 answers

Developing a mobile cross-platform app

I would like to develop a cross-platform application for mobile phones as I would like to just programe once and have the app for the differents platforms we have nowadays. I took a look of the differents frameworks there are and I would like to…
Frion3L
  • 1,502
  • 4
  • 24
  • 34
2
votes
1 answer

Android ndk remove "lib" prefix

I am compiling some native code in to a library to use in my app. Everything works fine but something bugging me. Output of native code gets "lib" prefix added to it so "mylibrary" becomes "libmylibrary.so" and I have toad it as "mylibrary" Can't…
nLL
  • 5,662
  • 11
  • 52
  • 87
2
votes
1 answer

Is it possible to debug a UIWebView in Macgap?

I know with regular iOS development you can set the target as a simulator, pop open Safari, and debug the webview using the developer tools. I can't seem to figure out how to do that with a macgap app though. Am I missing something?
Orry
  • 257
  • 1
  • 3
  • 10
2
votes
1 answer

Can't get LAME to compile in JNI Android

I have been following this tutorial http://developer.samsung.com/android/technical-docs/Porting-and-using-LAME-MP3-on-Android-with-JNI, however I dont seem to get it to compile when it comes to Compilation with NDK section. The following is the…
user3130151
  • 115
  • 3
  • 6
2
votes
1 answer

How to publish native libraries with Ivy?

For Java library projects, the artifact to publish is straightforward since the output is a single jar file. However, I also have a project with the following stuff to…
Aurelien Ribon
  • 7,548
  • 3
  • 43
  • 54
2
votes
1 answer

How to send data from c++ to java - android

I want to transfer buffer array from a c++ library to the java file. My java file is located inside frameworks/base/core/java (It's not an android application). The C++ will be in the form of an executable after compilation. I've figured how would I…
omerjerk
  • 4,090
  • 5
  • 40
  • 57