# wx.miniapp.jumpToGooglePlay
This interface is used to jump to the current App of GooglePlay Download page
Android SDK >= 1.3.24
Note: App Need to be on the shelf Google Play This interface can be called later
# Interface details
# parameter
attribute | type | Default value | Required | Introductions |
---|---|---|---|---|
success | function | yes | Successful callback after getting |
# Return parameter
attribute | type | Introductions |
---|---|---|
Errcode | number | Error code |
errmsg | string | Error message |
# JSAPI Examples of code
wx.miniapp.jumpToGooglePlay({
success: (res) => {
// Jump Success
console.log('jumpToGooglePlay success:', res)
}
fail: (res) {
// This unit is not installed Google Play
console.log('jumpToGooglePlay fail:', res)
}
})