0
我想在我的應用中添加共享鏈接,包括android play的下載鏈接。但由於我的應用程序未在PlayStore上啓動,因此我目前沒有下載鏈接。我現在如何包含下載鏈接?如何在上傳之前獲取應用的鏈接將在PlayStore中進行?
我想在我的應用中添加共享鏈接,包括android play的下載鏈接。但由於我的應用程序未在PlayStore上啓動,因此我目前沒有下載鏈接。我現在如何包含下載鏈接?如何在上傳之前獲取應用的鏈接將在PlayStore中進行?
這應該對你有所幫助。
final String appPackageName = getPackageName(); // this is your playstore url id parameter
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));
}
非常感謝您 – ywj7931
您可以在Google Play控制檯中使用beta測試 – siddhesh