From dcc77e7fe5f79f55cfc754091fbabe10bccf793b Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 5 Sep 2020 21:06:39 +0200 Subject: [PATCH] use the more generic market:// intent first, before the url --- app/build.gradle | 2 +- .../applauncher/activities/MainActivity.kt | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4b75994..91878ee 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -56,7 +56,7 @@ android { } dependencies { - implementation 'com.simplemobiletools:commons:5.30.1' + implementation 'com.simplemobiletools:commons:5.30.2' implementation 'com.facebook.stetho:stetho:1.5.0' implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' diff --git a/app/src/main/kotlin/com/simplemobiletools/applauncher/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/applauncher/activities/MainActivity.kt index 632dd93..9384c4d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/applauncher/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/applauncher/activities/MainActivity.kt @@ -1,7 +1,6 @@ package com.simplemobiletools.applauncher.activities import android.content.Intent -import android.net.Uri import android.os.Bundle import android.view.Menu import android.view.MenuItem @@ -16,6 +15,7 @@ import com.simplemobiletools.applauncher.extensions.isAPredefinedApp import com.simplemobiletools.applauncher.models.AppLauncher import com.simplemobiletools.commons.extensions.appLaunched import com.simplemobiletools.commons.extensions.checkWhatsNew +import com.simplemobiletools.commons.extensions.launchViewIntent import com.simplemobiletools.commons.extensions.updateTextColors import com.simplemobiletools.commons.helpers.LICENSE_STETHO import com.simplemobiletools.commons.helpers.ensureBackgroundThread @@ -116,9 +116,11 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener { finish() } } else { - val url = "https://play.google.com/store/apps/details?id=${it.packageName}" - val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url)) - startActivity(intent) + try { + launchViewIntent("market://details?id=${it.packageName}") + } catch (ignored: Exception) { + launchViewIntent("https://play.google.com/store/apps/details?id=${it.packageName}") + } } } launchers_grid.adapter = adapter