Update Manual
Salin prompt pengaturan dengan langkah instalasi dan panduan markdown lengkap untuk plugin ini.
Konfigurasi
Bab berjudul โKonfigurasiโTambahkan ini ke aplikasi Anda capacitor.config.json, untuk menonaktifkan pembaruan otomatis.
// capacitor.config.json{ "appId": "**.***.**", "appName": "Name", "plugins": { "CapacitorUpdater": { "autoUpdate": "off", } }}Penggunaan
Bab berjudul โPenggunaanโAnda dapat menggunakan contoh ini atau mere-creat logika di aplikasi Anda.
import { CapacitorUpdater } from '@capgo/capacitor-updater'import { SplashScreen } from '@capacitor/splash-screen'import { App } from '@capacitor/app'let data = {version: ""}CapacitorUpdater.notifyAppReady()App.addListener('appStateChange', async(state) => { if (state.isActive) { // Do the download during user active app time to prevent failed download data = await CapacitorUpdater.download({ version: '0.0.4', url: 'https://github.com/Cap-go/demo-app/releases/download/0.0.4/dist.zip', }) } if (!state.isActive && data.version !== "") { // Do the switch when user leave app SplashScreen.show() try { await CapacitorUpdater.set(data) } catch (err) { console.log(err) SplashScreen.hide() // in case the set fail, otherwise the new app will have to hide it } } })Teruskan dari Perbarui Manual
Judul Bagian โTeruskan dari Perbarui ManualโJika Anda menggunakan Perbarui Manual untuk merencanakan migrasi dan operasional bisnis, hubungkannya dengan Menggunakan @capgo/capacitor-updater untuk kemampuan native di Menggunakan @capgo/capacitor-updater, Capgo Bisnis for the product workflow in Capgo Enterprise, untuk alur kerja produk di __CAPGO_KEEP_0__ Bisnis, Ionic Bisnis Plugin Alternatif untuk alur kerja produk di Ionic Bisnis Plugin Alternatif, dan juga untuk alur kerja produk di Capgo Alternatif untuk alur kerja produk di Capgo Alternatif, dan Capgo Konsultasi untuk alur kerja produk di Capgo Konsultasi.