거의 일주일넘게 고민하고있네요
a라는 앱에 b라는 앱을 심을껀데 사용자설치동의창없이요
지금까지 생각해낸것은 a라는 어플을 시스템앱으로 만드는방법밖에없는듯해요
정상적으로는
Intent intent = new Intent(Intent.ACTION_VIEW);
   intent.setDataAndType(uri, "application/vnd.android.package-archive");
   startActivity(intent);
이러케하면 설치동의창이 뜨거든요
시스템앱접근권한없이 다른방법은 혹시없을까요?