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

Crash in UIWebView in iOS 11.3 (and 11.4)

We have a hybrid iOS app with a UIWebView that loads a fairly complex webshop (bunch of tracking-pixels, javasript, async behaviour). Since the rollout of iOS 11.3 we see a lot of crashes that seem to come from the UIWebView or related components.…
msung
  • 3,562
  • 3
  • 19
  • 30
8
votes
0 answers

Specify an Android Resource Name for form elements in a Cordova (hybrid) app?

As per this page, I'm attempting to allow Google to complete a pre-launch report on a Cordova hybrid app, but I haven't found how to specify a resource name on a form element. (Nor how to determine what it's being assigned automatically, if it…
jezmck
  • 1,138
  • 3
  • 18
  • 38
8
votes
1 answer

Ionic File Transfer Plugin not working in production version

I am facing weired issue in ionic3 application. Let me describe my situation in detail: Actually I need offline support for my ionic app. so everytime I call the API, I store the data into local storage. and also download image from the api to my…
8
votes
3 answers

how to go back to previous screen ionic 2

In ionic q we will use $ionichistory.goback()to go back the previous screen. But in ionic 2 how can we achive that. And i tried this button on click to print the console message . But its not working.
hybrid Dev
  • 529
  • 3
  • 14
  • 33
8
votes
3 answers

Cordova vs Native apps with WebView

The goal is to use an existing web app and create an Android and iOS versions of it with some functionality added (Push Notifications and Location). Being an Android/iOS developer, does it make sense to use Cordova with its native plugins for such…
Robert K.
  • 1,043
  • 1
  • 8
  • 20
8
votes
1 answer

How can I send data from swift to javascript and display them in my web view?

I am doing an iOS hybrid app using swift 2 and HTML/Javascript. I have a native shell which get some information from the calendar and the GPS. I would like to display those information in my WKWebView and update them every seconds. I am working…
Lola
  • 93
  • 1
  • 1
  • 8
8
votes
2 answers

Can I Use Python in Ionic for Backend work

Can I use Python as a backend for my ionic app? i am new to ionic as well as backend development. If not python suggest some good language for backend development. I am working on a hybrid app.
Prathik
  • 93
  • 1
  • 1
  • 4
8
votes
2 answers

Get current battery level using phonegap or cordova?

Function like window.addEventListener("batterystatus", onBatteryStatus, false); function onBatteryStatus(info) { // Handle the online event console.log("Level: " + info.level + " isPlugged: " + info.isPlugged); } return battery level and…
Kamesh Jungi
  • 6,203
  • 6
  • 39
  • 50
8
votes
2 answers

Aurelia.io for hybrid apps

I'd like to ask whether the Aurelia JS framework can be used as replacement for i.e. Ionic in hybrid app development. I have seen some tries, how to integrate with Cordova, but from their pages it is not really clear how it should be done.
Zveratko
  • 2,663
  • 6
  • 35
  • 64
8
votes
3 answers

Timers(setInterval) in ionic apps go to sleep after some time in the background

My ionic app has a timer(a simple setInterval that ticks every second) which works perfectly fine when the app is in the foreground. However when the app goes to the background and comes back to the foreground after 10 minutes, the time displayed in…
8
votes
4 answers

Doubts on Phonegap.js, Phonegap Build and Intel XDK

I am very new to mobile application development. Now I am into a mobile application project which should work on IOS, Android, BB and WP. After googling to learn what can I do on this, I felt Phonegap fulfils my requirement. I have downloaded and…
Bala
  • 3,576
  • 10
  • 46
  • 74
8
votes
1 answer

Is there free mobile app CMS?

I want to do mobile app (let's say it will be like ebook with some improvements) which content should be changeable for non-programmer user. And this content should not be loaded from web at every time when opening app(so content update take place…
8
votes
2 answers

Double clicking on a div with contenteditable inside and iframe disables div

If i create a div that has contenteditable true inside of an iframe and if you double click it it becomes non functional.the focus is still in the iframe and you can see the cursor, however it does not respond to keydown Does anyone have an idea of…
Nisanth Sojan
  • 1,099
  • 8
  • 21
7
votes
0 answers

java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libjscexecutor.so caused by: dlopen failed: library "libjsc.so" not found

I want to create an Android Native library which can connect any native Android application to React Native code. Instead of using Node modules locally, I have published react dependency on Maven and downloading dependencies from there. But once…
7
votes
2 answers

Ionic 4 Deeplink plugin return false route not matched

I am Implementing Deeplink in ionic 4 application. Application in getting launched but deeplink plugin always returns false; app.routing.ts: { path: 'viewdiary/:id/public', loadChildren: () =>…