Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 781 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 781 Bytes

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');
});