Parse error 解析包时出现问题

Prase error ther was a probleme prasing the package

我尝试从服务器向我的设备(模拟器和平板电脑)发送一个 .apk,然后我这样安装它:

public void onClick(View v) {
    Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.fromFile(new File("/data/data/com.so.and/s.apk")), "application/vnd.android.package-archive");
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }
});

在模拟器中我有这个错误:解析错误,解析包时出现问题。

在我的平板电脑上,错误是:un probléme est survenu lors de l'analyse du kit(分析套件期间出现问题)。

它是由许多问题引起的:

  1. SDK 不兼容
  2. 路径错误
  3. 您没有启动 file.apk 的权限,例如,如果您在 data/data/com.exemple.app
  4. 转到设置安全检查来源未知
  5. 下载时损坏文件(重试)