어플이 실행되면 지정된 웹서버에서 버전업 된 어플이 있는지 확인 후
/sdcard/download에 apk파일을 다운로드 합니다.
그 후에 apk파일을 인스톨 시키면

 File apkFile = new File(path);
 Intent intent = new Intent(Intent.ACTION_VIEW);
 intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
 startActivity(intent);

알람창이 "Replace application" The application you are installing will replace another application. All previous user data will be saved.
라고 뜹니다.
Ok를 선택하면 인스톨 할꺼냐고 물어보고 인스톨을 선택하면 인스톨바가 생겼다가 인스톨을 할 수 없다고 합니다.
LogCat 에 에러는 없습니다.
무슨 문제인지 조언 부탁드립니다.