diff --git a/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java b/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java index 3b5dace..013dabd 100644 --- a/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java +++ b/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java @@ -66,8 +66,9 @@ public final class AboutBoxUtils { String webURI = null; switch (buildType) { case GOOGLE: - appURI = "market://search?q=pub:" + publisher; - webURI = "http://play.google.com/store/search?q=pub:" + publisher; + // see: https://developer.android.com/distribute/marketing-tools/linking-to-google-play.html#OpeningPublisher + appURI = "market://dev?id=" + publisher; + webURI = "http://play.google.com/store/dev?id=" + publisher; break; case AMAZON: appURI = "amzn://apps/android?showAll=1&p=" + packageName;