Coder Social home page Coder Social logo

Comments (3)

kolbasa avatar kolbasa commented on July 27, 2024

Ionic 4-5 soporta Cordova, por lo que también puedes utilizar este plugin.
Sin embargo, por el momento no puedo decirte exactamente cómo instalar plugins específicamente en Ionic 4-5. Deberías poder encontrar suficientes ejemplos en la documentación oficial de Ionic.

Este fin de semana echaré un vistazo a un proyecto de ejemplo de Ionic y lo añadiré a mi documentación.

from cordova-plugin-apkupdater.

kolbasa avatar kolbasa commented on July 27, 2024

Lo he probado ahora. Aquí hay un ejemplo completo. Hágame saber si no funciona.

import {Platform} from '@ionic/angular';
import {Component} from '@angular/core';
import {HttpClient} from '@angular/common/http';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})

export class HomePage {

  endpoint = 'https://raw.githubusercontent.com/kolbasa/cordova-plugin-apkupdater-demo/master/update';

  constructor(private httpClient: HttpClient, public platform: Platform) {
    platform.ready().then(this.downloadAndInstall.bind(this)).catch(console.error);
  }

  async downloadAndInstall() {
    const apkUpdater = (window as any).ApkUpdater;

    const response = await this.httpClient.get<any>(this.endpoint + '/manifest.json').toPromise();

    const remoteVersion = response.version;
    const installedVersion = (await apkUpdater.getInstalledVersion()).version.name;

    if (remoteVersion > installedVersion) {
      await apkUpdater.download(this.endpoint + '/update.zip', {password: 'aDzEsCceP3BPO5jy', onDownloadProgress: console.log});
      await apkUpdater.install();
    }
  }

}

from cordova-plugin-apkupdater.

kolbasa avatar kolbasa commented on July 27, 2024

Version 2.2.0 now has its own TypeScript API:

import ApkUpdater from 'cordova-plugin-apkupdater';

export class HomePage {

    // .
    // .
    // .

    async update() {
        await ApkUpdater.download(
            'https://your-update-server.com/update.apk',
            {
                onDownloadProgress: progress => console.log,
            }
        );
        await ApkUpdater.install();
    }

}

from cordova-plugin-apkupdater.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.