自动安装apk

来源:互联网 发布:鞋子淘宝店 编辑:程序博客网 时间:2024/05/18 01:59
/**     * Auto install the client apk.     */    private void startUpgrade() {        Intent intent = new Intent(Intent.ACTION_VIEW);        intent.setDataAndType(Uri.fromFile(new File(mFileName)),                "application/vnd.android.package-archive");        mContext.startActivity(intent);    }

原创粉丝点击