Commit 6b1f9c79 authored by Smile's avatar Smile

bug318 googleplay自动升级问题处理 ,系统默认跳转Google Play应用商店,未安装应用商店才下载更新

parent 4e9a54d5
...@@ -361,50 +361,68 @@ export default { ...@@ -361,50 +361,68 @@ export default {
if (platform == 'ios') { if (platform == 'ios') {
plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990') plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990')
} else { } else {
uni.showLoading({ console.log('android直接跳转')
title: this.$lang.lang.notices.startDown var Uri = plus.android.importClass("android.net.Uri");
}) var Intent = plus.android.importClass('android.content.Intent');
that.showdownLine = true var main = plus.android.runtimeMainActivity();
var dtask = plus.downloader.createDownload(that.appUrl, {}, (d, status) => { //https://play.google.com/store/apps/details?id=com.jiedao.app
uni.hideLoading() var uri = Uri.parse("market://details?id=" + "com.jiedao.app");
if (status == 200) { var intent = new Intent(Intent.ACTION_VIEW, uri);
// that.closeVe() const googlePlay = "com.android.vending"
that.showdownLine = false // 选择进入商店
console.log('下载成功安装: ' + d.filename) intent.setPackage(googlePlay);
plus.runtime.install(d.filename) intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK;
} else { // 没有该商店应用
that.showdownLine = false if (intent.resolveActivity(main.getPackageManager()) !== null) {
// that.closeVe() console.log('android 跳转google play')
plus.nativeUI.alert(that.$lang.lang.notices.failDown) main.startActivity(intent);
} } else {
}) console.log('android 直接下载')
uni.showLoading({
// uni.navigateTo({ title: this.$lang.lang.notices.startDown
// url:'../updateView/updateView?url='+this.appUrl })
// }) that.showdownLine = true
// 下载进度 var dtask = plus.downloader.createDownload(that.appUrl, {}, (d, status) => {
dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) {
uni.hideLoading() uni.hideLoading()
} if (status == 200) {
switch (download.state) { // that.closeVe()
case 2: that.showdownLine = false
break console.log('下载成功安装: ' + d.filename)
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比 plus.runtime.install(d.filename)
if (that.totalSize == 0) { } else {
that.totalSize = parseInt(download.totalSize) that.showdownLine = false
} // that.closeVe()
if (parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum) { plus.nativeUI.alert(that.$lang.lang.notices.failDown)
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100) }
} })
break
case 4: // uni.navigateTo({
// mui.toast("下载完成"); // url:'../updateView/updateView?url='+this.appUrl
// })
// 下载进度
dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) {
uni.hideLoading() uni.hideLoading()
break }
} switch (download.state) {
}) case 2:
dtask.start() break
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比
if (that.totalSize == 0) {
that.totalSize = parseInt(download.totalSize)
}
if (parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum) {
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100)
}
break
case 4:
// mui.toast("下载完成");
uni.hideLoading()
break
}
})
dtask.start()
}
} }
// #endif // #endif
}, },
......
...@@ -373,50 +373,68 @@ export default { ...@@ -373,50 +373,68 @@ export default {
if (platform == 'ios') { if (platform == 'ios') {
plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990') plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990')
} else { } else {
uni.showLoading({ console.log('android直接跳转')
title: this.$lang.lang.notices.startDown var Uri = plus.android.importClass("android.net.Uri");
}) var Intent = plus.android.importClass('android.content.Intent');
that.showdownLine = true var main = plus.android.runtimeMainActivity();
var dtask = plus.downloader.createDownload(that.appUrl, {}, (d, status) => { //https://play.google.com/store/apps/details?id=com.jiedao.app
uni.hideLoading() var uri = Uri.parse("market://details?id=" + "com.jiedao.app");
if (status == 200) { var intent = new Intent(Intent.ACTION_VIEW, uri);
// that.closeVe() const googlePlay = "com.android.vending"
that.showdownLine = false // 选择进入商店
console.log('下载成功安装: ' + d.filename) intent.setPackage(googlePlay);
plus.runtime.install(d.filename) intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK;
} else { // 没有该商店应用
that.showdownLine = false if (intent.resolveActivity(main.getPackageManager()) !== null) {
// that.closeVe() console.log('android 跳转google play')
plus.nativeUI.alert(that.$lang.lang.notices.failDown) main.startActivity(intent);
} } else {
}) console.log('android 直接下载')
uni.showLoading({
// uni.navigateTo({ title: this.$lang.lang.notices.startDown
// url:'../updateView/updateView?url='+this.appUrl })
// }) that.showdownLine = true
// 下载进度 var dtask = plus.downloader.createDownload(that.appUrl, {}, (d, status) => {
dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) {
uni.hideLoading() uni.hideLoading()
} if (status == 200) {
switch (download.state) { // that.closeVe()
case 2: that.showdownLine = false
break console.log('下载成功安装: ' + d.filename)
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比 plus.runtime.install(d.filename)
if (that.totalSize == 0) { } else {
that.totalSize = parseInt(download.totalSize) that.showdownLine = false
} // that.closeVe()
if (parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum) { plus.nativeUI.alert(that.$lang.lang.notices.failDown)
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100) }
} })
break
case 4: // uni.navigateTo({
// mui.toast("下载完成"); // url:'../updateView/updateView?url='+this.appUrl
// })
// 下载进度
dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) {
uni.hideLoading() uni.hideLoading()
break }
} switch (download.state) {
}) case 2:
dtask.start() break
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比
if (that.totalSize == 0) {
that.totalSize = parseInt(download.totalSize)
}
if (parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum) {
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100)
}
break
case 4:
// mui.toast("下载完成");
uni.hideLoading()
break
}
})
dtask.start()
}
} }
// #endif // #endif
}, },
......
...@@ -312,88 +312,108 @@ export default { ...@@ -312,88 +312,108 @@ export default {
if (platform == 'ios') { if (platform == 'ios') {
plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990') plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990')
} else { } else {
// uni.showLoading({
// title: this.$lang.lang.notices.startDown, console.log('android直接跳转')
// }) var Uri = plus.android.importClass("android.net.Uri");
that.showdownLine = true var Intent = plus.android.importClass('android.content.Intent');
uni.showLoading({ var main = plus.android.runtimeMainActivity();
title: this.$lang.lang.notices.startDown //https://play.google.com/store/apps/details?id=com.jiedao.app
}) var uri = Uri.parse("market://details?id=" + "com.jiedao.app");
var dtask = plus.downloader.createDownload( var intent = new Intent(Intent.ACTION_VIEW, uri);
that.appUrl, const googlePlay = "com.android.vending"
{ // 选择进入商店
timeout: 60, intent.setPackage(googlePlay);
retry: 1, intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK;
retryInterval: 3 // 没有该商店应用
}, if (intent.resolveActivity(main.getPackageManager()) !== null) {
(d, status) => { console.log('android 跳转google play')
if (status == 200) { main.startActivity(intent);
uni.hideLoading() } else {
that.closeVe() console.log('android直接跳转')
that.showdownLine = false // uni.showLoading({
console.log('下载成功安装: ' + d.filename) // title: this.$lang.lang.notices.startDown,
plus.runtime.install( // })
d.filename, that.showdownLine = true
{}, uni.showLoading({
() => {}, title: this.$lang.lang.notices.startDown
function (error) { })
uni.showToast({ var dtask = plus.downloader.createDownload(
title: that.$lang.lang.notices.failDown, that.appUrl,
duration: 1500, {
icon: 'none' timeout: 60,
}) retry: 1,
retryInterval: 3
},
(d, status) => {
if (status == 200) {
uni.hideLoading()
that.closeVe()
that.showdownLine = false
console.log('下载成功安装: ' + d.filename)
plus.runtime.install(
d.filename,
{},
() => {
},
function (error) {
uni.showToast({
title: that.$lang.lang.notices.failDown,
duration: 1500,
icon: 'none'
})
}
)
} else {
that.showdownLine = false
that.closeVe()
plus.nativeUI.alert(that.$lang.lang.notices.failDown)
} }
) }
} else { )
that.showdownLine = false
that.closeVe()
plus.nativeUI.alert(that.$lang.lang.notices.failDown)
}
}
)
// uni.navigateTo({ // uni.navigateTo({
// url:'../updateView/updateView?url='+this.appUrl // url:'../updateView/updateView?url='+this.appUrl
// }) // })
try { try {
dtask.start() dtask.start()
// 下载进度 // 下载进度
dtask.addEventListener('statechanged', function (download, status) { dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) { if (that.downloadNum == 100) {
uni.hideLoading()
}
switch (download.state) {
case 1:
showLoading.setTitle('正在下载')
break
case 2:
break
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比
if (that.totalSize == 0) {
that.totalSize = parseInt(download.totalSize)
}
if (
parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum
) {
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100)
}
break
case 4:
// mui.toast("下载完成");
uni.hideLoading() uni.hideLoading()
break }
} switch (download.state) {
}) case 1:
} catch (err) { showLoading.setTitle('正在下载')
uni.hideLoading() break
that.showdownLine = false case 2:
that.closeVe() break
uni.showToast({ case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比
title: that.$lang.lang.notices.failDown, if (that.totalSize == 0) {
duration: 1500, that.totalSize = parseInt(download.totalSize)
icon: 'none' }
}) if (
parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum
) {
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100)
}
break
case 4:
// mui.toast("下载完成");
uni.hideLoading()
break
}
})
} catch (err) {
uni.hideLoading()
that.showdownLine = false
that.closeVe()
uni.showToast({
title: that.$lang.lang.notices.failDown,
duration: 1500,
icon: 'none'
})
}
} }
} }
// #endif // #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment