Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fenix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This project is archived. Its data is
read-only
.
Show more breadcrumbs
The Tor Project
Applications
fenix
Commits
6f75485f
Commit
6f75485f
authored
Aug 20, 2020
by
Matthew Finkel
Browse files
Options
Downloads
Patches
Plain Diff
Bug 40020: Change deeplink scheme
parent
ee8db2c5
Branches
Branches containing commit
No related tags found
2 merge requests
!39
Bug 40050 01
,
!37
Draft: Bug 40050 00
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/build.gradle
+4
-4
4 additions, 4 deletions
app/build.gradle
app/src/main/java/org/mozilla/fenix/components/Components.kt
+1
-1
1 addition, 1 deletion
app/src/main/java/org/mozilla/fenix/components/Components.kt
with
5 additions
and
5 deletions
app/build.gradle
+
4
−
4
View file @
6f75485f
...
...
@@ -32,7 +32,7 @@ android {
resValue
"bool"
,
"IS_DEBUG"
,
"false"
buildConfigField
"boolean"
,
"USE_RELEASE_VERSIONING"
,
"false"
buildConfigField
"String"
,
"AMO_COLLECTION"
,
"\"83a9cccfe6e24a34bd7b155ff9ee32\""
def
deepLinkSchemeValue
=
"
fenix
-dev"
def
deepLinkSchemeValue
=
"
torbrowser
-dev"
buildConfigField
"String"
,
"DEEP_LINK_SCHEME"
,
"\"$deepLinkSchemeValue\""
manifestPlaceholders
=
[
"deepLinkScheme"
:
deepLinkSchemeValue
...
...
@@ -65,14 +65,14 @@ android {
nightly
releaseTemplate
>>
{
applicationIdSuffix
".torbrowser_nightly"
buildConfigField
"boolean"
,
"USE_RELEASE_VERSIONING"
,
"true"
def
deepLinkSchemeValue
=
"
fenix
-nightly"
def
deepLinkSchemeValue
=
"
torbrowser
-nightly"
buildConfigField
"String"
,
"DEEP_LINK_SCHEME"
,
"\"$deepLinkSchemeValue\""
manifestPlaceholders
=
[
"deepLinkScheme"
:
deepLinkSchemeValue
]
}
beta
releaseTemplate
>>
{
buildConfigField
"boolean"
,
"USE_RELEASE_VERSIONING"
,
"true"
applicationIdSuffix
".torbrowser_alpha"
def
deepLinkSchemeValue
=
"
fenix-bet
a"
def
deepLinkSchemeValue
=
"
torbrowser-alph
a"
buildConfigField
"String"
,
"DEEP_LINK_SCHEME"
,
"\"$deepLinkSchemeValue\""
manifestPlaceholders
=
[
// This release type is meant to replace Firefox (Beta channel) and therefore needs to inherit
...
...
@@ -89,7 +89,7 @@ android {
release
releaseTemplate
>>
{
buildConfigField
"boolean"
,
"USE_RELEASE_VERSIONING"
,
"true"
applicationIdSuffix
".torbrowser"
def
deepLinkSchemeValue
=
"
fenix
"
def
deepLinkSchemeValue
=
"
torbrowser
"
buildConfigField
"String"
,
"DEEP_LINK_SCHEME"
,
"\"$deepLinkSchemeValue\""
manifestPlaceholders
=
[
// This release type is meant to replace Firefox (Release channel) and therefore needs to inherit
...
...
This diff is collapsed.
Click to expand it.
app/src/main/java/org/mozilla/fenix/components/Components.kt
+
1
−
1
View file @
6f75485f
...
...
@@ -96,7 +96,7 @@ class Components(private val context: Context) {
onNotificationClickIntent
=
Intent
(
context
,
HomeActivity
::
class
.
java
).
apply
{
action
=
Intent
.
ACTION_VIEW
flags
=
Intent
.
FLAG_ACTIVITY_NEW_TASK
or
Intent
.
FLAG_ACTIVITY_CLEAR_TASK
data
=
"
fenix
://settings_addon_manager"
.
toUri
()
data
=
"
${BuildConfig.DEEP_LINK_SCHEME}
://settings_addon_manager"
.
toUri
()
}
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment