1.0.26 • Published 8 years ago

cordova-plugin-share-moreapps v1.0.26

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Cordova MoreApps plugin

Overview

Open more apps url.

wp8

This is open source cordova plugin.

You can see Cordova Plugins in one page: http://cranberrygame.github.io?referrer=github

Change log

Install plugin

Cordova cli

https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g cordova@6.0.0

cordova plugin add cordova-plugin-share-moreapps
(when build error, use github url: cordova plugin add cordova plugin add https://github.com/cranberrygame/cordova-plugin-share-moreapps)

Phonegap build service (config.xml)

https://build.phonegap.com/ - Apps - specific project - Update code - Zip file including config.xml

<gap:plugin name="cordova-plugin-share-moreapps" source="npm" />

Construct2

Download construct2 plugin https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/index.html How to install c2 native plugins in xdk, cocoon and cordova cli https://plus.google.com/102658703990850475314/posts/XS5jjEApJYV

Server setting

API

//html5 website
//var moreAppsUrl = "http://cranberrygame.com/";
//android
//var moreAppsUrl = "market://search?q=pub:cranberrygame";
//blackberry10
//var moreAppsUrl = "http://appworld.blackberry.com/webstore/vendor/38078";
//ios
//var moreAppsUrl = "https://itunes.apple.com/artist/id693048135";
//windows8
//var moreAppsUrl = "http://windows.microsoft.com/en-us/windows/search#q=cranberry&s=Store";
//wp8
var moreAppsUrl = "zune:search?publisher=cranberry";

document.addEventListener("deviceready", function(){
}, false);

window.moreapps.openMoreAppsUrl(moreAppsUrl);

Examples

example/basic/index.html

Test

Useful links

Cordova Plugins http://cranberrygame.github.io?referrer=github

Credits