Skip to content

Phonegap plugin which downloads zip files, unzips them, and runs the contents in the Phonegap webview.

Notifications You must be signed in to change notification settings

wildabeast/phonegap-plugin-apploader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AppLoader Phonegap Plugin

Downloads zip files, unzips them, and runs the contents in the Phonegap webview.

Mostly written by Shazron Abdullah.

Installation

plugman install --platform ios --plugin https://github.com/wildabeast/phonegap-plugin-apploader.git --project ./IOSProject

Usage

Fetch a zip file:

navigator.apploader.fetch('https://mysite.com/phonegap/www.zip', successCallback, failureCallback);

Then launch it in the Phonegap webview:

navigator.apploader.launch(failureCallback);

Full example:

navigator.apploader.fetch('https://mysite.com/phonegap/www.zip', function() {

	navigator.apploader.launch(function() {
		console.log('failed to launch');
	}); 

}, function() {
	console.log('failed to download');
});

About

Phonegap plugin which downloads zip files, unzips them, and runs the contents in the Phonegap webview.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published