I am trying to insert information into a database on a mobile device using a cordova plugin to make use of the sqlite APIs, but I have not been able to do so. I am developing my application using the Ionic development framework.
The code I...
In an application that I am doing, I was asked to open the application from the browser. Install the plugin cordova-plugin-customurlscheme to define this and it works perfectly.
From the browser, I receive certain values when the appli...
I want to test the ionic application on the cell phone, not on an emulator, by executing the command:
ionic run android
and having the cell phone in debugging mode activated and connected to the PC, I receive the following error:
Error o...
I have the following json:
[
{
"id":"1",
"fecha_trama":"2016-02-16",
"hora_trama":"17:34:48",
"Nombre":"Evaluación de riesgos",
"Apellido":"Sala F",
"Sexo":"10h00-10h30",
"Residencia":"GESTIÓN DE P...
I have my api rest done in nodejs (express) which is local link , my configuration of cors de
my api rest
it's
const cors = require('cors')
app.use(cors());
then in my ionic application when I start ionic serve -c in my browser on my pc...
This is what it is called from the main page:
import { Component } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';
import L from "leaflet";
Use the reference to this page:
link
I need to know if someone knows how to install everything at once, or I have to do it one by one.
npm WARN @angular/[email protected] requires a peer of @angular/[email protected] but none is installed. You must install peer dependencies yourself.
npm...
I am working on a project in ionic and I have done the login with googleAuthentication , when I login / register I add some data to my firestore , like the image and the email. In my mobile application I allow to change the im...
I would like to know how I can show the information contained in the attached image, because I have tried it in many ways but there is no way.
I'm using cloud firestore, and for now I get the following:
interface HourTask {
inicio: string...
I am doing an ionic test in which I make an http request to a service.
This service does not have CORS implemented, so I have to create a proxy to avoid this (this is what I have been told, I think that is the case).
My app is very simple,...