반응형
플레이스토어로 연결하기
fun goPlayStore() {
val appPackageName = packageName // getPackageName() from Context or Activity object
try {
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=$appPackageName")))
} catch (anfe: android.content.ActivityNotFoundException) {
startActivity(
Intent(
Intent.ACTION_VIEW,
Uri.parse("https://play.google.com/store/apps/details?id=$appPackageName")
)
)
}
}
반응형
'Android > Android 일반' 카테고리의 다른 글
dp px 변환 함수 (0) | 2019.04.08 |
---|---|
[Anotation] @RequiresApi, @TargetApi (0) | 2019.04.03 |
앱 버전정보 (0) | 2019.04.01 |
xml 국가별 strings.xml 사용 (0) | 2019.03.28 |
뷰(View)가 그려지는 과정 (0) | 2019.03.27 |