Remove hard-coded package from openAppFromExternalLink

This commit is contained in:
AndiAJ 2022-01-26 12:54:38 +02:00 committed by mergify[bot]
parent e5e7e6dbcf
commit 9b1136f9e0
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ object TestHelper {
val intent = Intent().apply {
action = Intent.ACTION_VIEW
data = Uri.parse(url)
`package` = "org.mozilla.fenix.debug"
`package` = packageName
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
try {