Questions tagged [nativeapplication]

81 questions
2
votes
0 answers

How to block stdin while waiting for input?

I'm writing a Chrome extension that uses native messaging and it all works fine. The issue I'm addressing in on the native application side. The Chrome extension communicates with the native application using stdin and stdout and I'm having trouble…
Casper
  • 179
  • 1
  • 1
  • 11
2
votes
3 answers

How do I use bootstrap slider in Electron?

I am getting the following error when I use bootstrap slider (https://github.com/seiyria/bootstrap-slider) in my Electron(http://electron.atom.io/docs/latest/tutorial/quick-start/) app : "Uncaught TypeError: $(...).Slider is not a function" Earlier…
2
votes
1 answer

Polymer: want to open new html page on tapping of a tag or button

I developing native mobile app using Polymer and need basic help. I want new .html page will be open on click tag or button in Polymer
Ravi
  • 111
  • 1
  • 2
  • 9
2
votes
1 answer

In Chrome Native messaging: how long is the native app instance object lifetime?

Does a native application that talks to a Chrome extension is alive for ever? I mean should it be present e.g. before a postback happens? I could not find any configuration for that to add in the manifest file. I have a page, there are some objects…
2
votes
1 answer

open phone app on IOS with AS3 code

Is it possible, with AIR app, to automatically open the phone app on IOS when the user clicks on the number ? I've managed to do so with Android : phoneNumber.addEventListener(MouseEvent.CLICK, phoneClick, false, 0, true); function…
user3094896
  • 195
  • 1
  • 8
2
votes
1 answer

Launch runnable run from native java application

I currently have the following problem: I have two java applications: updater and client. The updater is a native application (which contains the necessary JDK), while the client is just a runnable jar file. When the user starts the application,…
bashoogzaad
  • 4,611
  • 8
  • 40
  • 65
2
votes
2 answers

platformRequest not working in J2ME

I'm triyng to play .mp3 file using platformRequest(). I verified the file path and it is correct. And I'm using Nokia 210 for testing. Please help me to fix this issue.
prabhu
  • 1,158
  • 1
  • 12
  • 27
2
votes
0 answers

Message Passing with Native Application Chrome

I am new in Plugin development.I heard from blog that Chrome is going to stop support on NPAPI plugins.I developed one native application in Mac, i am trying to make it as a plugin. But i didn't find a perfect tutorial that how the native…
Jio
  • 1,146
  • 1
  • 9
  • 22
1
vote
0 answers

Selenium, Python - How to switch back from one native app to another

I have the mobile application where to login I have to provide my phone number and then I get the sms code for a login confirmation. I can easily open the Messages in android using driver.start_activity('','') and get the sms code but I am not able…
1
vote
0 answers

I want to test my React Native app (Ejected from Expo as Bare Workflow) on an android device

I am working on an android application (project) with react-native but I got stuck and want to know how can I run it on my android device in the Expo client app. I have built the app with the android studio but I need a fast refresh. So I want to…
1
vote
1 answer

How to get data such as Heart Rate and Pedometer from Samsung Health to Tizen Application?

I am currently trying to develop a Tizen Application using Tizen Studio that retrieves data such as Heart Rate, Sleep Monitor, and Pedometer from Samsung Health application(from the smart watch). Is it possible to retrieve this data? If not what are…
1
vote
2 answers

A build function returned null.Build functions must never return null

I am beginner in Flutter programming.I tried an example and it throws error i.e.A build function returned null.Is there something wrong with my code? Here is my code. void main() => runApp(MyApp()); class MyApp extends StatelessWidget { …
1
vote
0 answers

Build fail with "undefined reference to"

Can't build Android C++ projects with OpenCV (static library) on Visual Studio clang.exe. Here's the build output. 1>------ Build started: Project: AndroidTry.NativeActivity, Configuration: Debug x86…
1
vote
1 answer

Can Android Native App Install be considered as iOS Smart App Banners?

I see conflicting information regarding Android's 'Native App Install' feature. I still have the following questions. Can someone help to clarify ? Can we say it is Android's equivalent of iOS Smart App Banner ? Does it show if app is installed ?…
yathirigan
  • 5,619
  • 22
  • 66
  • 104
1
vote
2 answers

Native App Registration with AZ Powershell Module

I need to register a native app on Azure Active Directory using the AZ Powershell 6 Module. A native app can be registered with the command New-AzureADApplication in the AzureAD module setting the value of the field "PublicClient" to true, but the…