Questions tagged [hybrid-mobile-app]

A hybrid mobile app is an web application built with web technologies (HTML, JavaScript, CSS) that is then "wrapped" in native device code to extend the functionality and availability of the app.

A hybrid mobile app is an web application built with web technologies (HTML, JavaScript, CSS) that is then "wrapped" in native device code to extend the functionality and availability of the app. This shell of native code allows the developer to bridge the gap between JavaScript and native functionality, allowing your web application to access device features (like the Contact list, Camera, accelerometer, etc.) that otherwise would not be possible. Wrapping your code in native code has the added benefit of greatly increasing your app's availability and marketability, since now your web app can be submitted to various app stores.

Many different projects exist for creating native apps, including Apache Cordova (formally known as PhoneGap), Titanium SDK, and Sencha Touch.

2363 questions
0
votes
0 answers

Can flutter or ionic mobile app interface with Thermapen through Bluetooth?

We are looking at developing a mobile application that interfaces with Thermapen (https://www.thermoworks.com/Thermapen-Blue) through Bluetooth for as part of our IoT integration. We will eventually need mobile application for both Android and iOS…
0
votes
1 answer

Date-picker opening keyboard on change event

Working on hybrid meteor app and using datepicker to show dates in format MM-DD-YYYY. As datepicker works on input type='text' and meteor changes all this to cordova apk which results in whenever I focus in datepicker input it is not opening mobile…
Rashmi
  • 565
  • 2
  • 7
  • 29
0
votes
1 answer

How to define functions within a function in typescript?

I know basic Javascript, but am confronted with a problem in a Typescript file. I'm using Ionic framework to test a page where a user can theoretically "swipe" like they're on Tinder, just for fun. I have all the JS written, because I'm moving this…
caro
  • 405
  • 1
  • 6
  • 18
0
votes
0 answers

Error code 3 (Connection Error) when downloading multiple files in IONIC 3

I want to download multiple files(images, pdf, video and audio) from server in ionic 3. Using Ionic File Transfer Plugin :- https://ionicframework.com/docs/native/file-transfer/ I am trying to download around 1k files from server. But when it…
0
votes
0 answers

How to Fetch the Selected Checkbox ID and Corresponding Text box Value in Ionic3 Framework

I have made the following tries and I am able to fetch the Selected Checkbox Value but Unable to Fetch the Textbox Value that has been Entered. So i am in need of some suggestions. HTML File
Naresh Kumar P
  • 4,127
  • 2
  • 16
  • 33
0
votes
1 answer

Stateprovider is not working in Cordova angularJS app

I am developing an app using cordova and angularjs. ng-route is working fine but when I am trying to use ui.router , it's not working.The view template is not rendering inside My app.js angular.module('helloApp', [ 'ngAnimate', …
0
votes
1 answer

How to get all existing device registrations of push in IBM MFP

I have followed rest API(linked below) tutorial to get all the device registrations of push notifications in MFP. But I am getting maximum size of 5000 records, but I need all the device registrations. Kindly help…
0
votes
1 answer

Listening for Fingerprint in android using cordova

Is there a way to get the fingerprint when the device is locked? can this be achieved using cordova or other hybrid technologies without using native code?
0
votes
1 answer

Cannot Linking. openURL whatsup message in react native

I need to open whatsup with a preloaded message, like this: Linking.openURL('whatsapp://send?text==%C2%A1Hola!%20Quiero%20realizar%20una%20consulta.&phone=5493416931539').catch(err => console.error('An error occurred', err)); I receive the error…
Guille
  • 370
  • 2
  • 7
  • 21
0
votes
0 answers

Clear Intent in ionic android

I am using Ionic WebIntent for getting shared intent values from websites and opening modal popup on app thereafter. window.addEventListener('beforeunload', () => { this.clearIntent(); console.log('APP CLOSED'); }); Just before closing the…
rajit
  • 154
  • 1
  • 3
  • 12
0
votes
1 answer

How to get ngModel value on Ionic?

I'm trying to pass the values of inputs from html to ts file with ngModel. But I get an error. Here is my code, error, and versions. signup.html Ad - Soyad
0
votes
1 answer

Android app displays previous screen contents while displaying modal screen (React Native)

I have a developed a small hybrid application using react-native technology. I have made use of react-native-navigation for navigation purposes. For IOS everything works fine but for android i am facing one issue. I have a home screen and from…
0
votes
1 answer

How can i call to specific index of tabs in ionic 3.20 from child page?

Suppose, i have tabs page which contained 3 index page. Index page 1 is home page and index page 2 is products page and index 3 is cart page. When i nav push to search page from home page , there is a button. I wanted to click that button to go to…
0
votes
1 answer

Issue with Scrolling in Hybrid iOS app Appium

I'm trying to scroll the screen with but give me error that there is no such element in the view. I have tried some other ways but also fail to scroll to that row. I have no id-s because the rows are making dynamically and i only can scroll to…
RosS
  • 317
  • 2
  • 6
  • 24
0
votes
0 answers

Stop footer movement on android keyboard pop-up in phonegap app

I am having a hybrid app and whenever I click on any DOM input the keyboard comes and it takes my footer also along with at its top. But I need that the footer is stuck always at the bottom. What is the best way to do it ? Also am using the below…
sqlchild
  • 8,754
  • 28
  • 105
  • 167
1 2 3
99
100