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
10
votes
6 answers

What is the difference between cross platform app development and hybrid app development?

I would like to know what exactly is the difference between cross platform app development and hybrid app development. I found different opinions while googling, majority says that the cross platform and hybrid app development are same and some says…
404
  • 1,115
  • 2
  • 11
  • 21
10
votes
2 answers

Cordova CLI, using Git, and saving plugins/platforms

I'm trying to figure out how to reconcile some Cordova + git "best practices" with what I think is reality, and I'm hoping someone can shed some light on this for me. If I understand correctly, the current "best practice" is to add these directories…
runlevelsix
  • 175
  • 8
9
votes
7 answers

Getx Flutter - Updating item in list is not reactive

I am using getx as my statemanagment for my flutter app. But I am having difficulties by updating the values in a list. So I have a usermodel with a parameter of isFollowing. When I click on a button the isFollowing variable shall change and the…
Coding Hotel
  • 127
  • 1
  • 1
  • 7
9
votes
2 answers

Which hybrid apps does Huawei Mobile Services support?

Is anyone aware if there exists/are plans to enable deployment for JavaScript/hybrid apps on Huawei Mobile Services (HMS)? Similarly as we can do it using Cordova/Capacitor with Ionic/NativeScript/React Native and upload on Android/iOS. So far I've…
9
votes
8 answers

Is there a way to set a font globally in React Native?

I need to create a custom font that applies to every Text component in the whole application. Is there is a way to set a font globally in React Native?
Thisara
  • 644
  • 3
  • 11
  • 22
9
votes
3 answers

Error":"source image 2208x2208 too small for Default-Landscape@~ipadpro.png, requires at least 2732x2048 source file"

I have the splash screen = 2208 x 2208. And app icon 192 X 192. I am using ionic1 but still I am running the command as ionic cordova resource command to generate app icon and splash screen. In Android it's working fine. But when I did for iOS, it…
hybrid Dev
  • 529
  • 3
  • 14
  • 33
9
votes
2 answers

Can Android Instant Apps be integrated with Hybrid app?

The Android Instant Apps is a new thing, and I just wanted to know if it can be integrated with the Hybrid app structure (HTML/JS with Cordova wrapper). I'm not a native app developer so I'm not sure of this myself.
9
votes
1 answer

How Session Management approach differs in mobile native vs hybrid vs web applications?

Wanted to discuss under-the-hood information about how session is managed in case of mobile apps - native, hybrid and web applications? Please validate below Session Management scenarios: Native (Android/iOS) application Using Session Cookies:…
Rohit
  • 6,941
  • 17
  • 58
  • 102
9
votes
1 answer

Cordova hooks order

On the Cordova website a see a long list of hooks in alphabetical order, but what is the correct order in which they trigger and get executed? I'm trying to add the cordova.js script to the index.html file's head before build/compile. What happens…
Zorgatone
  • 4,176
  • 4
  • 30
  • 47
9
votes
0 answers

Ionic framework- e2e testing using protractor with Ios emulator

I have a hybrid app build with Ionic framework and would like to test on the emulator using protractor. How can I setup to run test on emulator using protractor? Here is what I have attempted so far: 1) All my test run in the browser fine. 2)…
Shoebie
  • 1,263
  • 2
  • 12
  • 24
8
votes
3 answers

How to share App link using react native Share API?

I am trying to share my app installation link to others from my app settings in react native. I used the react native share api for this. But using the below code the output only shows the message(code and screenshot below). const shareAppOptions =…
Amal p
  • 2,882
  • 4
  • 29
  • 49
8
votes
6 answers

How to prevent multiple touch on Flutter Inkwell

I new to flutter and i have a counter button that i want to prevent it from multiple touch. The Tap Function is defined under Inkwell component (onTap: () => counterBloc.doCount(context)). if i run this apps and doing multi touch, counter will go up…
questionasker
  • 2,536
  • 12
  • 55
  • 119
8
votes
1 answer

Cookies are not set/stored in iOS with WKWebEngine

Since we upgraded from the old UIWebView engine, we are not able to authenticate our users (using an external auth service), as none of the cookies sent by the APIs are being set in the this web view. This is a major blocker for us and have been…
Detuned
  • 3,652
  • 4
  • 27
  • 54
8
votes
1 answer

How to find what crashes a Cordova App in Android?

I have written a hybrid game using Cordova for iOS and Android. The game ran perfectly on both iOS and Android and I was almost ready to publish it but I only needed to make a few splash screens. When that was done, I did one final test on both…
Zippy1970
  • 601
  • 6
  • 20
8
votes
14 answers

Error : impossible to create a new session because 'createSession' which takes HttpClient, InputStream and long was not found

I am trying to automate an android hybrid app but getting following errors: 1) Exception in thread "main" org.openqa.selenium.WebDriverException: It is impossible to create a new session because 'createSession' which takes HttpClient,…
Anjani Kumar
  • 396
  • 1
  • 5
  • 23