Android/Android 일반
플레이스토어 연결하기
lipnus
2019. 4. 1. 11:51
반응형
플레이스토어로 연결하기
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")
)
)
}
}
반응형