Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.

Commit a21b630

Browse files
authored
Merge pull request #1 from budbee/feature/this_doesnt_seem_to_do_anything
make it work locally
2 parents 3a8d31e + 5830c1f commit a21b630

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

Diff for: Example/SelfieKit.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,12 @@
216216
607FACCF1AFB9204008FA782 = {
217217
CreatedOnToolsVersion = 6.3.1;
218218
DevelopmentTeam = LCKTF29ZYH;
219-
LastSwiftMigration = 0800;
219+
LastSwiftMigration = 0820;
220220
};
221221
607FACE41AFB9204008FA782 = {
222222
CreatedOnToolsVersion = 6.3.1;
223223
DevelopmentTeam = LCKTF29ZYH;
224-
LastSwiftMigration = 0800;
224+
LastSwiftMigration = 0820;
225225
TestTargetID = 607FACCF1AFB9204008FA782;
226226
};
227227
};
@@ -308,7 +308,7 @@
308308
);
309309
runOnlyForDeploymentPostprocessing = 0;
310310
shellPath = /bin/sh;
311-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
311+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
312312
showEnvVarsInLog = 0;
313313
};
314314
4DEB2DE1BE161A06F1FFF3AC /* [CP] Embed Pods Frameworks */ = {
@@ -353,7 +353,7 @@
353353
);
354354
runOnlyForDeploymentPostprocessing = 0;
355355
shellPath = /bin/sh;
356-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
356+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
357357
showEnvVarsInLog = 0;
358358
};
359359
/* End PBXShellScriptBuildPhase section */

Diff for: Example/SelfieKit/Images.xcassets/AppIcon.appiconset/Contents.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"images" : [
3+
{
4+
"idiom" : "iphone",
5+
"size" : "20x20",
6+
"scale" : "2x"
7+
},
8+
{
9+
"idiom" : "iphone",
10+
"size" : "20x20",
11+
"scale" : "3x"
12+
},
313
{
414
"idiom" : "iphone",
515
"size" : "29x29",
@@ -35,4 +45,4 @@
3545
"version" : 1,
3646
"author" : "xcode"
3747
}
38-
}
48+
}

0 commit comments

Comments
 (0)