Android Studio
(Android Studio) 내 앱에서 플레이스토어 실행하는 방법
SAFE
2017. 2. 10. 00:30
구글 검색 : 안드로이드스튜디오 플레이스토어 실행
출처 : http://www.androidside.com/bbs/board.php?bo_table=B49&wr_id=159207
여기서 알려준 ★ 출처
http://developer.android.com/intl/ko/distribute/tools/promote/linking.html
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
http://play.google.com/store/apps/details?id=<package_name>
market://details?id=<package_name>