Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Commit 43c7f94

Browse files
committed
Merge branch 'release-candidate'
2 parents b1eb638 + 2c57632 commit 43c7f94

File tree

135 files changed

+1346
-1190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+1346
-1190
lines changed

.codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ignore:
2+
- "catalog"
3+
- "components/*/examples"
4+
- "components/*/tests/*"

.swiftlint.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
excluded:
2+
- Carthage
3+
- Pods
4+
- third_party
5+
6+
disabled_rules:
7+
- cyclomatic_complexity
8+
9+
force_cast: warning
10+
force_try: warning

.travis.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
language: objective-c
2-
osx_image: xcode8.1
2+
osx_image: xcode8.2
33
sudo: false
44
# Only fire off builds for specific branches.
55
branches:
66
only:
77
- develop
88
- stable
9+
- /^feature-.*$/
910
env:
1011
global:
1112
- LC_CTYPE=en_US.UTF-8
1213
- LANG=en_US.UTF-8
1314
matrix:
14-
- DESTINATION="OS=9.3,name=iPhone 6s" SDK=iphonesimulator9.3
15-
- DESTINATION="OS=8.1,name=iPhone 4S" SDK=iphonesimulator9.3
15+
- DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.2" SDK="iphonesimulator10.2"
1616
before_install:
1717
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
18+
- brew update
19+
- brew install swiftlint || true # If already installed, don't fail.
20+
# The travis_wait prefix ensures that the build doesn't error out because too much time went past
21+
# without any output being produced.
1822
script:
1923
- set -o pipefail
2024
- xcodebuild -version
2125
- xcodebuild -showsdks
22-
- scripts/release/manage_pods.py install
23-
- scripts/build_all
24-
- scripts/test_all
26+
- pod --version
27+
- swiftlint
28+
- scripts/prep_all
29+
- travis_wait scripts/build_all
30+
- travis_wait scripts/test_all
2531
after_success:
2632
- bash <(curl -s https://codecov.io/bash)

CHANGELOG.md

Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,169 @@
1+
# 20.0.0
2+
3+
## API changes
4+
5+
### Ink
6+
7+
* Return value of `-[MDCInkTouchController initWithView:]` changed from `nullable instancetype` to `nonnull instancetype`.
8+
9+
### ProgressView
10+
11+
* Added `MDCProgressViewBackwardAnimationMode` enumeration and `-[MDCProgressView backwardProgressAnimationMode]` to control how the progress view acts when its progress value is set to a _smaller_ value than the current value.
12+
13+
## Component changes
14+
15+
### ActivityIndicator
16+
17+
#### Changes
18+
19+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
20+
21+
### AppBar
22+
23+
#### Changes
24+
25+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
26+
* [Header stack view in AppBarController (#1121)](https://github.com/material-components/material-components-ios/commit/f2f00b3339da2658366977f8de972d4c8f9a0c31) (Will Larche)
27+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
28+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
29+
30+
### ButtonBar
31+
32+
#### Changes
33+
34+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
35+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
36+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
37+
38+
### Buttons
39+
40+
#### Changes
41+
42+
* [Update the button’s custom title color when the tint color changes. (#1134)](https://github.com/material-components/material-components-ios/commit/85dd5428f2c20c9ec4ca25bcaf531a20990fe4fa) (Sam Symons)
43+
* [[Catalog] Center views in the Buttons (Swift and Storyboard) demo (#1126)](https://github.com/material-components/material-components-ios/commit/94a6d589e07dc6565a9f2011f733e9e2848e4b28) (Sam Symons)
44+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
45+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
46+
47+
### CollectionCells
48+
49+
#### Changes
50+
51+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
52+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
53+
* [[ReadMes] - Updated asset name for collection_cells (#1111)](https://github.com/material-components/material-components-ios/commit/c0103fc323d6767b90c91d93aa875a401ed98acf) (Justin Shephard)
54+
55+
### Collections
56+
57+
#### Changes
58+
59+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
60+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
61+
62+
### Dialogs
63+
64+
#### Changes
65+
66+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
67+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
68+
69+
### FeatureHighlight
70+
71+
#### Changes
72+
73+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
74+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
75+
76+
### FlexibleHeader
77+
78+
#### Changes
79+
80+
* [- Update tests so as not to have 0 in contentSize (#1146)](https://github.com/material-components/material-components-ios/commit/89e007b7a603785e94e775c8fdf3d2c505901330) (Justin Shephard)
81+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
82+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
83+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
84+
85+
### HeaderStackView
86+
87+
#### Changes
88+
89+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
90+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
91+
92+
### Ink
93+
94+
#### Changes
95+
96+
* [Add nonnull to the MDCInkTouchController initializer (#1123)](https://github.com/material-components/material-components-ios/commit/b62b9c0524cc0bb9b54194ef70d464d0fd756e63) (Sam Symons)
97+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
98+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
99+
100+
### NavigationBar
101+
102+
#### Changes
103+
104+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
105+
* [Remove redundant RTL frame adjustment (#1103)](https://github.com/material-components/material-components-ios/commit/ac88e9b297306ea3b08e4e9e1eb1c92185b9eeef) (Junius Gunaratne)
106+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
107+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
108+
109+
### OverlayWindow
110+
111+
#### Changes
112+
113+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
114+
115+
### PageControl
116+
117+
#### Changes
118+
119+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
120+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
121+
122+
### Palettes
123+
124+
#### Changes
125+
126+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
127+
128+
### ProgressView
129+
130+
#### Changes
131+
132+
* [Backward animation support (#1138)](https://github.com/material-components/material-components-ios/commit/26ce625081dea69c947a3383e53128eab0abb7b2) (Sam Symons)
133+
* [Ran scripts/format_all. (#1141)](https://github.com/material-components/material-components-ios/commit/c6620b9ada62bea7e572412e62f109c0d491e134) (Adrian Secord)
134+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
135+
136+
### ShadowLayer
137+
138+
#### Changes
139+
140+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
141+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
142+
* [[Scripts] SwiftLint integration (#1129)](https://github.com/material-components/material-components-ios/commit/bb561ac2575b613ff324772e4e0daa8dad0e9e27) (Sam Symons)
143+
144+
### Slider
145+
146+
#### Changes
147+
148+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
149+
150+
### Snackbar
151+
152+
#### Changes
153+
154+
* [Fixes layout for SnackbarSuspensionExample (#1098)](https://github.com/material-components/material-components-ios/commit/ae5361cca0cff5aec4699bdf07fb9bdcb6f84f05) (Peter Friese)
155+
* [Formatted all Objective-C sources with clang-format. (#1133)](https://github.com/material-components/material-components-ios/commit/7ba66bf09ca984649ee30e58363fc6f995bedaca) (Adrian Secord)
156+
* [Render Snackbar labels correctly for RTL (#1137)](https://github.com/material-components/material-components-ios/commit/7e475358182dcc0cdb8208ad56d94e867244b4d5) (Sam Morrison)
157+
* [Weakify strongify asynchronously dispatched snackbar view dismissal (#1136)](https://github.com/material-components/material-components-ios/commit/82049abf8f9937e2b2932e3839e56a16fb074e7a) (Sam Morrison)
158+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
159+
160+
### Typography
161+
162+
#### Changes
163+
164+
* [[ReadMes] - First image of each component is too big (#1110)](https://github.com/material-components/material-components-ios/commit/7a194835697bbb7d69832b83f1900de8ade2a8c8) (Justin Shephard)
165+
166+
1167
# 19.0.4
2168

3169
This point release changes certain podfiles and instructions to refer to the published pod up at CocoaPods.

MaterialComponents.podspec

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ load 'scripts/generated/icons.rb'
22

33
Pod::Spec.new do |s|
44
s.name = "MaterialComponents"
5-
s.version = "19.0.4"
5+
s.version = "20.0.0"
66
s.authors = "The Material Components authors."
77
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
88
s.homepage = "https://github.com/material-components/material-components-ios"
@@ -263,12 +263,6 @@ Pod::Spec.new do |s|
263263
ss.source_files = "components/private/#{ss.base_name}/src/*.{h,m}"
264264
end
265265

266-
pss.subspec "Color" do |ss|
267-
ss.ios.deployment_target = '7.0'
268-
ss.public_header_files = "components/private/#{ss.base_name}/src/*.h"
269-
ss.source_files = "components/private/#{ss.base_name}/src/*.{h,m}"
270-
end
271-
272266
pss.subspec "KeyboardWatcher" do |ss|
273267
ss.ios.deployment_target = '7.0'
274268
ss.public_header_files = "components/private/#{ss.base_name}/src/*.h"
@@ -298,7 +292,6 @@ Pod::Spec.new do |s|
298292
ss.dependency "MaterialComponents/ShadowElevations"
299293
ss.dependency "MaterialComponents/ShadowLayer"
300294
ss.dependency "MaterialComponents/Typography"
301-
ss.dependency "MaterialComponents/private/Color"
302295
ss.dependency "MaterialComponents/private/RTL"
303296
end
304297

MaterialComponentsCatalog.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialComponentsCatalog"
3-
s.version = "19.0.4"
3+
s.version = "20.0.0"
44
s.authors = "The Material Components authors."
55
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
66
s.homepage = "https://github.com/material-components/material-components-ios"

MaterialComponentsUnitTests.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialComponentsUnitTests"
3-
s.version = "19.0.4"
3+
s.version = "20.0.0"
44
s.authors = "The Material Motion authors."
55
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
66
s.homepage = "https://github.com/material-components/material-components-ios"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Material Components for iOS
22

3+
<img align="right" src="mdc_hero.png" width="300px">
4+
5+
[![Build Status](https://travis-ci.org/material-components/material-components-ios.svg?branch=develop)](https://travis-ci.org/material-components/material-components-ios)
6+
[![Code coverage](https://img.shields.io/codecov/c/github/material-components/material-components-ios/develop.svg)](https://codecov.io/gh/material-components/material-components-ios/branch/develop)
7+
38
Material Components for iOS (MDC-iOS) helps developers execute [Material Design](https://www.material.io). Developed by a core team of engineers and UX designers at Google, these components enable a reliable development workflow to build beautiful and functional iOS apps. Learn more about how Material Design supports design and usability best practices across platforms in the [Material Design Platform Adaptation guidelines](https://material.io/guidelines/platforms/platform-adaptation.html).
49

510
Material Components for iOS are written in Objective-C and support Swift and Interface Builder.

catalog/.swiftlint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.swiftlint.yml

catalog/MDCCatalog.xcodeproj/project.pbxproj

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@
353353
664524AF1C6BA62A001ADBF8 /* Sources */,
354354
664524B01C6BA62A001ADBF8 /* Frameworks */,
355355
664524B11C6BA62A001ADBF8 /* Resources */,
356+
5951872D1E1DA83700AC2110 /* SwiftLint */,
356357
72ACDAA295D1F2087113246F /* [CP] Embed Pods Frameworks */,
357358
8164F6F5D8C80F373A698031 /* [CP] Copy Pods Resources */,
358359
64307B471DF74FEF004AE4AC /* Embed App Extensions */,
@@ -379,18 +380,18 @@
379380
TargetAttributes = {
380381
0B50E1981D91B0BD00DED250 = {
381382
CreatedOnToolsVersion = 7.3.1;
383+
ProvisioningStyle = Automatic;
382384
TestTargetID = 664524B21C6BA62A001ADBF8;
383385
};
384386
64307B371DF74FEF004AE4AC = {
385387
CreatedOnToolsVersion = 8.2;
386-
DevelopmentTeam = EQHXZ8M8AV;
387388
LastSwiftMigration = 0810;
388389
ProvisioningStyle = Automatic;
389390
};
390391
664524B21C6BA62A001ADBF8 = {
391392
CreatedOnToolsVersion = 7.3;
392-
DevelopmentTeam = EQHXZ8M8AV;
393393
LastSwiftMigration = 0810;
394+
ProvisioningStyle = Automatic;
394395
};
395396
};
396397
};
@@ -494,6 +495,20 @@
494495
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MDCInteractionTests/Pods-MDCInteractionTests-frameworks.sh\"\n";
495496
showEnvVarsInLog = 0;
496497
};
498+
5951872D1E1DA83700AC2110 /* SwiftLint */ = {
499+
isa = PBXShellScriptBuildPhase;
500+
buildActionMask = 2147483647;
501+
files = (
502+
);
503+
inputPaths = (
504+
);
505+
name = SwiftLint;
506+
outputPaths = (
507+
);
508+
runOnlyForDeploymentPostprocessing = 0;
509+
shellPath = /bin/sh;
510+
shellScript = "${SRCROOT}/../scripts/lint.sh";
511+
};
497512
72ACDAA295D1F2087113246F /* [CP] Embed Pods Frameworks */ = {
498513
isa = PBXShellScriptBuildPhase;
499514
buildActionMask = 2147483647;
@@ -715,8 +730,9 @@
715730
buildSettings = {
716731
BUNDLE_LOADER = "$(TEST_HOST)";
717732
CLANG_ANALYZER_NONNULL = YES;
733+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
734+
DEVELOPMENT_TEAM = "";
718735
INFOPLIST_FILE = MDCInteractionTests/Info.plist;
719-
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
720736
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
721737
PRODUCT_BUNDLE_IDENTIFIER = com.google.MDCInteractionTests;
722738
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -730,8 +746,9 @@
730746
buildSettings = {
731747
BUNDLE_LOADER = "$(TEST_HOST)";
732748
CLANG_ANALYZER_NONNULL = YES;
749+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
750+
DEVELOPMENT_TEAM = "";
733751
INFOPLIST_FILE = MDCInteractionTests/Info.plist;
734-
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
735752
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
736753
PRODUCT_BUNDLE_IDENTIFIER = com.google.MDCInteractionTests;
737754
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -748,7 +765,8 @@
748765
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
749766
CLANG_WARN_INFINITE_RECURSION = YES;
750767
CLANG_WARN_SUSPICIOUS_MOVE = YES;
751-
DEVELOPMENT_TEAM = EQHXZ8M8AV;
768+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
769+
DEVELOPMENT_TEAM = "";
752770
INFOPLIST_FILE = MDCActionExtension/Info.plist;
753771
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
754772
PRODUCT_BUNDLE_IDENTIFIER = "com.google.mdc-catalog.MDCActionExtension";
@@ -767,7 +785,8 @@
767785
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
768786
CLANG_WARN_INFINITE_RECURSION = YES;
769787
CLANG_WARN_SUSPICIOUS_MOVE = YES;
770-
DEVELOPMENT_TEAM = EQHXZ8M8AV;
788+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
789+
DEVELOPMENT_TEAM = "";
771790
INFOPLIST_FILE = MDCActionExtension/Info.plist;
772791
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
773792
PRODUCT_BUNDLE_IDENTIFIER = "com.google.mdc-catalog.MDCActionExtension";
@@ -867,7 +886,8 @@
867886
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
868887
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
869888
CLANG_ENABLE_MODULES = YES;
870-
DEVELOPMENT_TEAM = EQHXZ8M8AV;
889+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
890+
DEVELOPMENT_TEAM = "";
871891
INFOPLIST_FILE = MDCCatalog/Info.plist;
872892
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
873893
PRODUCT_BUNDLE_IDENTIFIER = com.google.MDCCatalog;
@@ -885,7 +905,8 @@
885905
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
886906
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
887907
CLANG_ENABLE_MODULES = YES;
888-
DEVELOPMENT_TEAM = EQHXZ8M8AV;
908+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
909+
DEVELOPMENT_TEAM = "";
889910
INFOPLIST_FILE = MDCCatalog/Info.plist;
890911
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
891912
PRODUCT_BUNDLE_IDENTIFIER = com.google.MDCCatalog;

0 commit comments

Comments
 (0)