admin管理员组文章数量:1429064
My question is addition for this question. I want to install basic application set on android device after hard reset. I want to automatically install the set of apk files from web page.
Example i have a html page.
<html>
<head>
<script>
function installApk() {
var arr = ["LogMeIn.apk", "TeamViewer.apk", "Mobile Iron.apk"];
for (var i = 0; i < arr.length; i++) {
window.open("../Software/" + arr[i]);
}
}
</script>
</head>
<body onload="installApk()">
<p>Example install</p>
</body>
</html>
But it's wrong. Anyone can help? Or may suggest a different solution!
My question is addition for this question. I want to install basic application set on android device after hard reset. I want to automatically install the set of apk files from web page.
Example i have a html page.
<html>
<head>
<script>
function installApk() {
var arr = ["LogMeIn.apk", "TeamViewer.apk", "Mobile Iron.apk"];
for (var i = 0; i < arr.length; i++) {
window.open("../Software/" + arr[i]);
}
}
</script>
</head>
<body onload="installApk()">
<p>Example install</p>
</body>
</html>
But it's wrong. Anyone can help? Or may suggest a different solution!
Share Improve this question edited May 23, 2017 at 11:57 CommunityBot 11 silver badge asked Oct 9, 2013 at 6:30 isxakerisxaker 9,52613 gold badges64 silver badges92 bronze badges1 Answer
Reset to default 3You can't install directly as google play does. this is anti android system
but if you want to install after google account login via your webpages than refer this https://developers.google./+/web/signin/android-app-installs
本文标签: javascriptAuto installation apk files from web pageStack Overflow
版权声明:本文标题:javascript - Auto installation apk files from web page - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745479224a2660104.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论