嗨,我正在开发一个您的私人用途的应用程序,我不想上传到 Google Play。
当应用程序打开时检查服务器中是否存在新的更新,如果存在则下载 apk 然后安装
Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/ipacUpdates/ipac.apk")), "application/vnd.android.package-archive" );
this.ctx.startActivity(i);
安装完成时显示此错误
an existing package by the same name with a confilcting signature is already installed
两个 apk 都使用同一台机器构建并在avd emulator
.
会发生什么?