안드로이드를 이제 막 시작한 초보입니다.
에뮬을 통해서 apk가 설치되는 부분을 공부해보고자 하려 하는데 잘 안되네요....

소스는 다음과 같습니다.

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

인터넷에서 찾아서 본거라... ㅡㅜ
new File 에/sdcard/의 경로대신...
웹서버에 있는 apk파일을 설치하려고 하게되면 어떻게 해야하나요????
로그에 Package Parser Skipping Dir 이라고 나오더군요.. ㅠㅠ
알려주세요 부탁드립니다... 굽신굽신 : )