2017-09-13 40 views

回答

0

不,只能在playstore上進行評分。否則,防止虛假評級和評論將會困難得多。

+0

是的,謝謝你的信息 –

0

不可能。

Google只允許在Playstore內傳輸,即將應用轉移到其他開發者帳戶。

+0

好了,謝謝你。 –

0

我看到你的問題被標記爲android,但你也問問App Store的問題。所以,如果你需要這個iOS的這裏是我的答案:

由於iOS 10.3你可以利用來自蘋果的真棒InAppReview。我可以證明這樣一個事實,就評論數量而言,這種審覈應用程序的新方式對我們的應用程序來說已經非常成功。您可以在這裏閱讀更多引人入勝的案例研究,內容如何Instagram doubled their reviews

科爾多瓦插件,這是非常容易使用和實施在這裏:https://github.com/omaxlive/com.omarben.inappreview

爲了簡潔,並且在計算器抓住存在的(不太可能)的情況下,這裏是使用它的步驟:

安裝插件:cordova plugins add com.omarben.inappreview

說它像這樣的代碼:

var requestReview = function(){ 
    try{ 
     var success = function() { 
      console.log("Success"); 
     } 
     var failure = function() { 
      console.log("Error calling plugin"); 
     } 

     inappreview.requestReview(success, failure); 
    }catch(e){ 
     console.log("catch: "+e); 
    } 
}; 

希望這可以幫助別人......

相關問題