总纲
android13 rom 开发总纲说明
目录
1.前言
2.我们简单写个apk测试下
3.排查客户apk
4.frameworks源码排查
5.编译验证
6.彩蛋
1.前言
客户提供的文件管理apk不能安装apk文件,一点击就奔溃。
2.我们简单写个apk测试下
private void installApk(File apkFile) {
if (!apkFile.exists()) {
Log.e(TAG, "APK file does not exist");
return;
}
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}