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
1 answer

Integrate third party SDK into Cordova App

How can I integrate a third party SDK into my Cordova App. I cannot find any official documentation, only out of date (~2yo) discussions. Thanks
Gabe
  • 5,997
  • 5
  • 46
  • 92
0
votes
0 answers

Execute native code from within Cordova without a plugin

I have this requirements: I have a WebView build with Cordova. In the webpage I have to include a third party script I need to install a third party SDK in my App The third party script has to execute some methods of the SDK How can the third…
Gabe
  • 5,997
  • 5
  • 46
  • 92
0
votes
0 answers

Integrate javascript module with native SDK

I have a React Web Application running inside a WebView using Cordova. I need to integrate the javascript context with a third party native SDK. I have used JNI in the past that allowed communication from JAVA to C code. Is there something similar…
Gabe
  • 5,997
  • 5
  • 46
  • 92
0
votes
0 answers

Getting no pubspec.yaml found when creating new flutter project

I'm getting no pubspec.yaml found when I want to create new flutter project. Here are flutter details Thank you.
Viks
  • 1,510
  • 4
  • 22
  • 50
0
votes
0 answers

Appium unable to start App on iPhone simulator

My goal is to run some end 2 end smoke tests against an hybrid App built with Cordova. I am using Appium (driven by WebDriver.IO) and I can successfully spin up in an emulator the Android App and run the tests against it. I can't though even start…
Gabe
  • 5,997
  • 5
  • 46
  • 92
0
votes
1 answer

File download in angular js

How to download a file in a mobile device while giving the URL from the server, In Angularjs mobile application(Platform Cordova). The file can be of type pdf, image etc...
Riya
  • 71
  • 1
  • 14
0
votes
1 answer

SFDC Mobile SDK API Call - Request Timeout

Hybrid Mobile App Cordova 8.0.0 Angular 1.7.5 Salesforce MobileSDK 6.2 Method - force.apexrest Issue - Salesforce REST API Call - Request Timeout (20%). Details - When the mobile app is hitting an SFDC custom REST API then sometimes it gets…
0
votes
1 answer

Admob plugin dosen't work with Phonegap app

I hope you can help me with this problem. I have tried EVERYTHING the last 5 days, but I fail every time. I have buildt a simple app using HTML5, CSS and little bit of Javascript.The app works fine.Than I want a simple banner ad that shows at the…
Alex
  • 26
  • 5
0
votes
0 answers

Ionic API Error: error.json is not a function

I'm trying to create a mobile application with API Connection to the database. Sometimes I'm not getting any error and it all works fine with the API but usually, I get this kind of error. (See picture below) This is the error I got from the Dev…
0
votes
1 answer

Share data between webviews in hybrid App

I have a React web application running in an hybrid App (wrapped inside a webview) using Cordova. In the application there are links to a different domain that we open within the same App using . Is…
Gabe
  • 5,997
  • 5
  • 46
  • 92
0
votes
0 answers

Calling swift class method directly from javascript

Hi I am trying to implement a connection between javascript and ios. I am successful in creating a connection of getting callback in ios from javascript using messageHandlers through following code import UIKit import WebKit class ViewController:…
0
votes
1 answer

api-key not found in browser (404)

I am creating a news application using angular and ionic4. I have put my api url and api key in the environment.ts file as below: export const environment = { production: false, apiUrl:'https://n------', apiKey:'api-key----' }; my…
0
votes
0 answers

SQLite db for native mobile app using angular

I have developed the angular app and converted it to mobile app using cordova. As angular app does not support SQLite so I am not using DB in that .. but in the mobile app I would like to DB to store some information offline . Is there any way I can…
ssnegi
  • 183
  • 1
  • 1
  • 15
0
votes
1 answer

Retrieved data is not showing up in widget

I have a json file hosted on my server which looks like this. { "score": "23/6" } The score is always updating and I want my flutter app to show the realtime score. Flutter code is here: import 'package:flutter/material.dart'; import…
Suvin Nimnaka Sukka
  • 341
  • 1
  • 7
  • 21
0
votes
1 answer

How to fetch JSON data from Flutter

Ive been trying to fetch json data from my flutter app. I managed to print the whole json on my console. I want to get only the "score" value from this json. How should I do it? final String url =…
Suvin Nimnaka Sukka
  • 341
  • 1
  • 7
  • 21