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

Access text file content from USB storage automatically from a server

I want to read the content of a text file (serves as a key) stored inside a USB mass storage automatically when the user is authenticated by his matching username and password for that website. It's like the textfile(key) is the extended…
user2454455
2
votes
1 answer

Flags returned by OSVERSIONINFOEX.wSuiteMask

Does anybody know what the following constants (defined in WinNT.h) mean? #define VER_SUITE_COMMUNICATIONS 0x00000008 #define VER_SUITE_EMBEDDED_RESTRICTED 0x00000800 #define VER_SUITE_SECURITY_APPLIANCE 0x00001000 The…
Michael Damatov
  • 15,253
  • 10
  • 46
  • 71
2
votes
0 answers

Android Hybrid application using Native Android functions

Currently i am developing an Android Hybrid application. I am pretty new to Android development but picking up new things pretty much every day. This Hybrid application is build upon the Sencha Touch 2.3.1 framework. The project consists out of the…
Jeroen
  • 83
  • 2
  • 10
2
votes
5 answers

How to detect native browser/engine objects in javascript

I need a function to return true if the given variable name is already defined by javascript engine or browser. For example isNative('window') //true; isNative('Math') //true; isNative('myVar') //false isNative('navigator')…
danial
  • 4,058
  • 2
  • 32
  • 39
2
votes
0 answers

Android - error: undefined reference to 'vtable for __cxxabiv1::__si_class_type_info'

Ok, I give up... I've been trying to compile android's 4.x (x>=1) webkit to bypass the 4.0 bugs. After a few compilations, of the libwebcore with correct bindings and different namespace, and android.webkit with different namespace and some code…
daniel.gindi
  • 3,457
  • 1
  • 30
  • 36
2
votes
2 answers

FFmpeg on Android - Unable to find a suitable output format

I want to reduce the resolution of a video before edit it, so I´m using ffmpeg on android. I´m using the executable/binary file of ffmpeg and I´m calling my ffmpeg commands like that: ./ffmpeg -i /sdcard/dcim/video.mp4 -s 320x240 -r 10 -y…
Gonzalo Solera
  • 1,182
  • 12
  • 26
2
votes
2 answers

How to use ffmpeg commands on Android

I have the same doubt that here. I want to execute this command on Android: ffmpeg -i input.mp4 -s 480x320 output.mp4 So I compiled all the librarys with the NDK following this tutorial, I only need to add this code (I suppose that in a .c file…
Gonzalo Solera
  • 1,182
  • 12
  • 26
2
votes
2 answers

Ring modulator for voice effects

Hey I need to change audio files for my Voice Changer app. I need effects like robot or alien. Therefore, I have to implement a ring modulator http://en.wikipedia.org/wiki/Ring_modulation Do you have any idea how to implement it? Or do you have a…
2
votes
1 answer

How to solve "fatal: relocations remain against allocatable but non-writable sections" while using Java native interface?

I'm trying to call a C function inside a Java code. I have this hava code. public class JavaToC { public native void helloC(); static { System.loadLibrary("HelloWorld"); } public static void main(String[] args) { …
Chamila Wijayarathna
  • 1,815
  • 5
  • 30
  • 54
2
votes
0 answers

Detect native video call in android - detect 3G-324M video call

I want to know how to detect an incoming Video call on android device? Actually there are lots of documentation on detecting incoming phone calls but I couldn't find any information on detecting incoming native video calls in android? So may you…
M J
  • 21
  • 2
2
votes
1 answer

Package ANE on OSX cannot find framework

I'm trying to package an ANE (Adobe Native Extension) for Mac OS X. I've managed to do it before, but I can't remember how. My adt command line: adt -package -target ane out/com.yprgames.maclib.ane in/extension.xml -swc in/com.yprgames.maclib.swc…
Yvon
  • 21
  • 2
2
votes
2 answers

How to map HALF_PTR in C#

I am currently modelling a type conversion mechanism which converts native (Windows Data Types) to .NET Example: HANDLE = System.IntPtr HDC = System.IntPtr WORD = System.UInt16 INT_PTR is 32bit/64bit on their respective machines, so in .NET thats a…
Matthew Layton
  • 39,871
  • 52
  • 185
  • 313
2
votes
5 answers

Serial comma from array in PHP

I am trying to make string serial comma from array. Here is the code I use: But the results I get: I eat satay, orange, rambutan Cannot: I eat satay, orange, and…
bayuah
  • 251
  • 1
  • 5
  • 10
2
votes
1 answer

Build native C++ library and use it in WP8 app

I have a C++ project developped on Eclipse. My project will be use as native source code for various mobile platforms like Android, iOS, Windows Phone... I would like to compile this library to be used on Windows Phone 8 devices. My needs with this…
hico
  • 1,850
  • 1
  • 19
  • 28
2
votes
1 answer

Why armeabi-v7a conflicts with armeabi of another module?

I have 2 modules in my project Moudle 1: libs/armeabi Module 2: libs/armeabi libs/armeabi-v7a In order to successfully run the app, I have to remove armeabi-v7a folder completely, otherwise the .so libs in Module 1 armeabi folder won't load Why…
Mohsen Afshin
  • 13,273
  • 10
  • 65
  • 90