Skip to content

Commit d87eada

Browse files
committed
Removed references to specific team IDs in several example projects. Remove SongProcessor from built iOS archives because of dependency on sample files included in playgrounds.
1 parent 18e68eb commit d87eada

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Examples/iOS/MicrophoneAnalysis/MicrophoneAnalysis.xcodeproj/project.pbxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@
124124
TargetAttributes = {
125125
789CA9B11D0A01F500D6EFF1 = {
126126
CreatedOnToolsVersion = 7.3.1;
127-
DevelopmentTeam = PBK2PRY5LG;
128127
};
129128
};
130129
};
@@ -280,6 +279,7 @@
280279
isa = XCBuildConfiguration;
281280
buildSettings = {
282281
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
282+
CODE_SIGN_IDENTITY = "iPhone Developer";
283283
FRAMEWORK_SEARCH_PATHS = "../../../Frameworks/AudioKit-iOS";
284284
INFOPLIST_FILE = MicrophoneAnalysis/Info.plist;
285285
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -292,6 +292,7 @@
292292
isa = XCBuildConfiguration;
293293
buildSettings = {
294294
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
295+
CODE_SIGN_IDENTITY = "iPhone Developer";
295296
FRAMEWORK_SEARCH_PATHS = "../../../Frameworks/AudioKit-iOS";
296297
INFOPLIST_FILE = MicrophoneAnalysis/Info.plist;
297298
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";

Examples/iOS/SamplerDemo/SamplerDemo.xcodeproj/project.pbxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@
151151
TargetAttributes = {
152152
78524B7A1D2C3D3500804C0B = {
153153
CreatedOnToolsVersion = 7.3.1;
154-
DevelopmentTeam = PBK2PRY5LG;
155154
};
156155
};
157156
};
@@ -305,6 +304,7 @@
305304
isa = XCBuildConfiguration;
306305
buildSettings = {
307306
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
307+
CODE_SIGN_IDENTITY = "iPhone Developer";
308308
FRAMEWORK_SEARCH_PATHS = (
309309
"../../../Frameworks/AudioKit-iOS",
310310
"$(inherited)",
@@ -321,6 +321,7 @@
321321
isa = XCBuildConfiguration;
322322
buildSettings = {
323323
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
324+
CODE_SIGN_IDENTITY = "iPhone Developer";
324325
FRAMEWORK_SEARCH_PATHS = (
325326
"../../../Frameworks/AudioKit-iOS",
326327
"$(inherited)",

Examples/iOS/SequencerDemo/SequencerDemo.xcodeproj/project.pbxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@
130130
TargetAttributes = {
131131
78ADAA001D255FB90095C0C7 = {
132132
CreatedOnToolsVersion = 7.3.1;
133-
DevelopmentTeam = W22K9JG3J6;
134133
SystemCapabilities = {
135134
com.apple.BackgroundModes = {
136135
enabled = 1;

Examples/iOS/SporthEditor/SporthEditor.xcodeproj/project.pbxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@
153153
TargetAttributes = {
154154
C485C6331D337759007D1BFD = {
155155
CreatedOnToolsVersion = 7.3.1;
156-
DevelopmentTeam = 5D437HC99E;
157156
};
158157
};
159158
};

Frameworks/build_packages.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ create_package()
3737
cd $DIR
3838
mkdir -p Examples
3939
cp -a ../../Examples/$1/* Examples/
40+
# Exceptions of any example projects to skip
41+
rm -rf Examples/SongProcessor
4042
find Examples -name project.pbxproj -exec gsed -i -f ../fix_paths.sed {} \;
4143
cp ../../README.md ../../VERSION ../../LICENSE ../INSTALL.md .
4244
cp -a ../docs/docsets/AudioKit.docset .

0 commit comments

Comments
 (0)