안녕하세요..

앱을 하나 개발중인데요...

개발중에 마켓에 내 앱의 링크를 걸려고 하는데...


1) intentActionView( "https://play.google.com/store/apps/details?id=myTestApp&feature=serch_result#?t=");


2) Uri uri = Uri.parse( "market://details?id=myTestApp" );

   Intent intent = new Intent( Intent.ACTION_VIEW, uri );

   mActivity.startActivity( intent );


1. 위 두가지 방법의 차이가 뭔가요?

2. 그리고 어느것이 더 안정적인가요? (안드로이드 버전별, 디바이스별)

3. 이 이외에 더 좋은 방법이 있다면 소개 부탁드립니다.