From 5df77387e69f60f241fe698a5b67f8b269283eea Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 1 Sep 2017 23:25:03 -0700 Subject: [PATCH] Changed publisher URLs to https. Workaround for invalid developer URL. --- .../main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java b/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java index 186cf2f..32a3524 100644 --- a/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java +++ b/library/src/main/java/com/eggheadgames/aboutbox/AboutBoxUtils.java @@ -72,12 +72,13 @@ public final class AboutBoxUtils { // see: // https://developer.android.com/distribute/marketing-tools/linking-to-google-play.html#OpeningPublisher // https://stackoverflow.com/questions/32029408/how-to-open-developer-page-on-google-play-store-market + // https://issuetracker.google.com/65244694 if (publisher.matches("\\d+")) { - webURI = "http://play.google.com/store/dev?id=" + publisher; + webURI = "https://play.google.com/store/apps/dev?id=" + publisher; appURI = webURI; } else { appURI = "market://search?q=pub:" + publisher; - webURI = "http://play.google.com/store/search?q=pub:" + publisher; + webURI = "https://play.google.com/store/search?q=pub:" + publisher; } break; case AMAZON: