File tree 7 files changed +0
-304
lines changed
7 files changed +0
-304
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ HEADER_SEARCH_PATHS = $(inherited) /Applications/Xcode.app/Contents/Developer/To
18
18
INCLUDE_SETTINGS_BUNDLE = NO
19
19
IPHONEOS_DEPLOYMENT_TARGET = 11.4
20
20
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/../../Frameworks @executable_path/Frameworks @loader_path/Frameworks
21
- LEANPLUM_APP_ID =
22
- LEANPLUM_ENVIRONMENT =
23
- LEANPLUM_KEY =
24
21
MOZ_TODAY_WIDGET_SEARCH_DISPLAY_NAME = Firefox - Search
25
22
OTHER_LDFLAGS = -ObjC -lxml2
26
23
OTHER_SWIFT_FLAGS_common = -DMOZ_TARGET_CLIENT
Original file line number Diff line number Diff line change @@ -569,7 +569,6 @@ class ToggleChronTabs: HiddenSetting {
569
569
}
570
570
571
571
override var title : NSAttributedString ? {
572
- // If we are running an A/B test this will also fetch the A/B test variables from leanplum. Re-open app to see the effect.
573
572
let toNewStatus = currentChronStatus ? " OFF " : " ON "
574
573
return NSAttributedString ( string: " Debug: Toggle chronological tabs \( toNewStatus) " ,
575
574
attributes: [ NSAttributedString . Key. foregroundColor: UIColor . theme. tableView. rowText] )
Original file line number Diff line number Diff line change @@ -30,17 +30,6 @@ changedFiles.each do |changed_file|
30
30
end
31
31
end
32
32
33
- # Add a friendly reminder for LeanPlum
34
- changedFiles . each do |changed_file |
35
- addedLines = git . diff_for_file ( changed_file ) . patch . lines . select { |line | line . start_with? ( "+" ) }
36
- if addedLines . select { |line | line . include? ( "LeanplumIntegration.sharedInstance.track" ) } . count != 0
37
- markdown ( "### LeanPlum checklist" )
38
- markdown ( "- [ ] I have updated the MMA.md doc" )
39
- markdown ( "- [ ] I have gone through the data privacy review" )
40
- break
41
- end
42
- end
43
-
44
33
# Fail if diff contains !try or as!
45
34
changedFiles . each do |changed_file |
46
35
# filter out only the lines that were added
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -865,35 +865,6 @@ workflows:
865
865
# write your script here
866
866
867
867
868
- echo "Setting Leanplum environment to PRODUCTION for
869
- $BUDDYBUILD_SCHEME"
870
-
871
- /usr/libexec/PlistBuddy -c "Set LeanplumAppId $LEANPLUM_APP_ID"
872
- "Client/Info.plist"
873
-
874
- /usr/libexec/PlistBuddy -c "Set LeanplumProductionKey
875
- $LEANPLUM_KEY_PRODUCTION" "Client/Info.plist"
876
-
877
- /usr/libexec/PlistBuddy -c "Set LeanplumDevelopmentKey
878
- $LEANPLUM_KEY_DEVELOPMENT" "Client/Info.plist"
879
- title : Leanplum Variable Setup
880
- - script@1 :
881
- inputs :
882
- - content : >-
883
- #!/usr/bin/env bash
884
-
885
- # fail if any commands fails
886
-
887
- set -e
888
-
889
- # debug log
890
-
891
- set -x
892
-
893
-
894
- # write your script here
895
-
896
-
897
868
echo "Setting Nimbus variables"
898
869
899
870
/usr/libexec/PlistBuddy -c "Set NimbusURL $NIMBUS_URL" "Client/Info.plist"
@@ -1709,22 +1680,6 @@ workflows:
1709
1680
inputs :
1710
1681
- content : |-
1711
1682
#!/usr/bin/env bash
1712
- # fail if any commands fails
1713
- set -e
1714
- # debug log
1715
- set -x
1716
-
1717
- # write your script here
1718
-
1719
- echo "Setting Leanplum environment to PRODUCTION for $BUDDYBUILD_SCHEME"
1720
- /usr/libexec/PlistBuddy -c "Set LeanplumAppId $LEANPLUM_APP_ID" "Client/Info.plist"
1721
- /usr/libexec/PlistBuddy -c "Set LeanplumProductionKey $LEANPLUM_KEY_PRODUCTION" "Client/Info.plist"
1722
- /usr/libexec/PlistBuddy -c "Set LeanplumDevelopmentKey $LEANPLUM_KEY_DEVELOPMENT" "Client/Info.plist"
1723
- title : Leanplum Variable Setup
1724
- - script@1 :
1725
- inputs :
1726
- - content : |-
1727
- #!/usr/bin/env bash
1728
1683
1729
1684
# fail if any commands fails
1730
1685
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
3
bundle install
4
- #
5
- # Leanplum is included only for the Firefox and FirefoxBeta builds.
6
- #
7
-
8
- if [ " $BUDDYBUILD_SCHEME " = " Firefox" ] || [ " $BUDDYBUILD_SCHEME " = " FirefoxBeta" ]; then
9
- echo " Setting Leanplum environment to PRODUCTION for $BUDDYBUILD_SCHEME "
10
- /usr/libexec/PlistBuddy -c " Set LeanplumAppId $LEANPLUM_APP_ID " " Client/Info.plist"
11
- /usr/libexec/PlistBuddy -c " Set LeanplumProductionKey $LEANPLUM_KEY_PRODUCTION " " Client/Info.plist"
12
- /usr/libexec/PlistBuddy -c " Set LeanplumDevelopmentKey $LEANPLUM_KEY_DEVELOPMENT " " Client/Info.plist"
13
- fi
14
4
15
5
echo " Setting up Pocket Stories API Key"
16
6
if [ " $BUDDYBUILD_SCHEME " == Firefox ]; then
You can’t perform that action at this time.
0 commit comments