Skip to content

Commit 7625197

Browse files
Rename the project
1 parent 8f7c5e1 commit 7625197

31 files changed

+55
-50
lines changed

MessagesFilter/MessageFilterExtension.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ extension MessageFilterExtension: ILMessageFilterQueryHandling {
4747
let sender = queryRequest.sender ?? "No sender"
4848
let messageBody = queryRequest.sender ?? "No body"
4949
print("Sender: \(sender), body: \(messageBody)")
50-
let blockedNumber = UserDefaults(suiteName: "group.com.artemnovichkov.iOS-11-Sampler")?.blockedNumber
50+
let blockedNumber = UserDefaults(suiteName: "group.com.artemnovichkov.iOS-11-by-Examples")?.blockedNumber
5151
if queryRequest.sender == blockedNumber {
5252
return .filter
5353
}

MessagesFilter/MessagesFilter.entitlements

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>com.apple.security.application-groups</key>
66
<array>
7-
<string>group.com.artemnovichkov.iOS-11-Sampler-2</string>
7+
<string>group.com.artemnovichkov.iOS-11-by-Examples</string>
88
</array>
99
</dict>
1010
</plist>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# iOS-11-Sampler
1+
# iOS 11 by Examples
22

33
Code examples for new APIs of iOS 11.
44

iOS-11-Sampler.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

iOS-11-Sampler.xcodeproj/project.pbxproj renamed to iOS-11-by-Examples.xcodeproj/project.pbxproj

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
060519591EF63A4E00EF8CC6 /* MessageFilterExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageFilterExtension.swift; sourceTree = "<group>"; };
6262
0605195B1EF63A4E00EF8CC6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6363
060519631EF63C9600EF8CC6 /* MessagesFilter.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = MessagesFilter.entitlements; sourceTree = "<group>"; };
64-
060519641EF63CC000EF8CC6 /* iOS-11-Sampler.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "iOS-11-Sampler.entitlements"; sourceTree = "<group>"; };
64+
060519641EF63CC000EF8CC6 /* iOS-11-by-Examples.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "iOS-11-by-Examples.entitlements"; sourceTree = "<group>"; };
6565
060519661EF63CE500EF8CC6 /* IdentityLookup.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = IdentityLookup.storyboard; sourceTree = "<group>"; };
6666
060519681EF63CF000EF8CC6 /* IdentityLookupViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IdentityLookupViewController.swift; sourceTree = "<group>"; };
6767
062096081EF6DDD60019E369 /* Inceptionv3.mlmodel */ = {isa = PBXFileReference; lastKnownFileType = file.mlmodel; path = Inceptionv3.mlmodel; sourceTree = "<group>"; };
68-
06B51C741EF543DD00CA9279 /* iOS-11-Sampler.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS-11-Sampler.app"; sourceTree = BUILT_PRODUCTS_DIR; };
68+
06B51C741EF543DD00CA9279 /* iOS-11-by-Examples.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS-11-by-Examples.app"; sourceTree = BUILT_PRODUCTS_DIR; };
6969
06B51C771EF543DD00CA9279 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7070
06B51C791EF543DD00CA9279 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
7171
06B51C7C1EF543DD00CA9279 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
@@ -129,7 +129,7 @@
129129
isa = PBXGroup;
130130
children = (
131131
06B51C901EF5492800CA9279 /* README.md */,
132-
06B51C761EF543DD00CA9279 /* iOS-11-Sampler */,
132+
06B51C761EF543DD00CA9279 /* iOS-11-by-Examples */,
133133
060519581EF63A4E00EF8CC6 /* MessagesFilter */,
134134
06B51C751EF543DD00CA9279 /* Products */,
135135
);
@@ -138,20 +138,20 @@
138138
06B51C751EF543DD00CA9279 /* Products */ = {
139139
isa = PBXGroup;
140140
children = (
141-
06B51C741EF543DD00CA9279 /* iOS-11-Sampler.app */,
141+
06B51C741EF543DD00CA9279 /* iOS-11-by-Examples.app */,
142142
060519571EF63A4E00EF8CC6 /* MessagesFilter.appex */,
143143
);
144144
name = Products;
145145
sourceTree = "<group>";
146146
};
147-
06B51C761EF543DD00CA9279 /* iOS-11-Sampler */ = {
147+
06B51C761EF543DD00CA9279 /* iOS-11-by-Examples */ = {
148148
isa = PBXGroup;
149149
children = (
150150
06F9D6421EF6B01500E0A4FB /* ARKit */,
151151
06F9D61D1EF674EC00E0A4FB /* DeviceCheck */,
152152
06ED736B1EF65BFC0060456F /* CoreNFC */,
153153
060519651EF63CDC00EF8CC6 /* IdentityLookup */,
154-
060519641EF63CC000EF8CC6 /* iOS-11-Sampler.entitlements */,
154+
060519641EF63CC000EF8CC6 /* iOS-11-by-Examples.entitlements */,
155155
06B51C911EF5593300CA9279 /* CoreML */,
156156
06B51C8B1EF547B700CA9279 /* Vision */,
157157
06B51C771EF543DD00CA9279 /* AppDelegate.swift */,
@@ -162,7 +162,7 @@
162162
06B51C801EF543DD00CA9279 /* LaunchScreen.storyboard */,
163163
06B51C831EF543DD00CA9279 /* Info.plist */,
164164
);
165-
path = "iOS-11-Sampler";
165+
path = "iOS-11-by-Examples";
166166
sourceTree = "<group>";
167167
};
168168
06B51C8B1EF547B700CA9279 /* Vision */ = {
@@ -233,9 +233,9 @@
233233
productReference = 060519571EF63A4E00EF8CC6 /* MessagesFilter.appex */;
234234
productType = "com.apple.product-type.app-extension";
235235
};
236-
06B51C731EF543DD00CA9279 /* iOS-11-Sampler */ = {
236+
06B51C731EF543DD00CA9279 /* iOS-11-by-Examples */ = {
237237
isa = PBXNativeTarget;
238-
buildConfigurationList = 06B51C861EF543DD00CA9279 /* Build configuration list for PBXNativeTarget "iOS-11-Sampler" */;
238+
buildConfigurationList = 06B51C861EF543DD00CA9279 /* Build configuration list for PBXNativeTarget "iOS-11-by-Examples" */;
239239
buildPhases = (
240240
06B51C701EF543DD00CA9279 /* Sources */,
241241
06B51C711EF543DD00CA9279 /* Frameworks */,
@@ -247,9 +247,9 @@
247247
dependencies = (
248248
0605195D1EF63A4E00EF8CC6 /* PBXTargetDependency */,
249249
);
250-
name = "iOS-11-Sampler";
250+
name = "iOS-11-by-Examples";
251251
productName = "iOS-11-Sampler";
252-
productReference = 06B51C741EF543DD00CA9279 /* iOS-11-Sampler.app */;
252+
productReference = 06B51C741EF543DD00CA9279 /* iOS-11-by-Examples.app */;
253253
productType = "com.apple.product-type.application";
254254
};
255255
/* End PBXNativeTarget section */
@@ -280,7 +280,7 @@
280280
};
281281
};
282282
};
283-
buildConfigurationList = 06B51C6F1EF543DD00CA9279 /* Build configuration list for PBXProject "iOS-11-Sampler" */;
283+
buildConfigurationList = 06B51C6F1EF543DD00CA9279 /* Build configuration list for PBXProject "iOS-11-by-Examples" */;
284284
compatibilityVersion = "Xcode 8.0";
285285
developmentRegion = en;
286286
hasScannedForEncodings = 0;
@@ -293,7 +293,7 @@
293293
projectDirPath = "";
294294
projectRoot = "";
295295
targets = (
296-
06B51C731EF543DD00CA9279 /* iOS-11-Sampler */,
296+
06B51C731EF543DD00CA9279 /* iOS-11-by-Examples */,
297297
060519561EF63A4E00EF8CC6 /* MessagesFilter */,
298298
);
299299
};
@@ -390,7 +390,7 @@
390390
DEVELOPMENT_TEAM = GPVA8JVMU3;
391391
INFOPLIST_FILE = MessagesFilter/Info.plist;
392392
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
393-
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-Sampler-2.MessagesFilter";
393+
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-by-Examples.MessagesFilter";
394394
PRODUCT_NAME = "$(TARGET_NAME)";
395395
SKIP_INSTALL = YES;
396396
SWIFT_VERSION = 4.0;
@@ -405,7 +405,7 @@
405405
DEVELOPMENT_TEAM = GPVA8JVMU3;
406406
INFOPLIST_FILE = MessagesFilter/Info.plist;
407407
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
408-
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-Sampler-2.MessagesFilter";
408+
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-by-Examples.MessagesFilter";
409409
PRODUCT_NAME = "$(TARGET_NAME)";
410410
SKIP_INSTALL = YES;
411411
SWIFT_VERSION = 4.0;
@@ -521,11 +521,11 @@
521521
buildSettings = {
522522
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
523523
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
524-
CODE_SIGN_ENTITLEMENTS = "iOS-11-Sampler/iOS-11-Sampler.entitlements";
524+
CODE_SIGN_ENTITLEMENTS = "iOS-11-by-Examples/iOS-11-by-Examples.entitlements";
525525
DEVELOPMENT_TEAM = GPVA8JVMU3;
526-
INFOPLIST_FILE = "iOS-11-Sampler/Info.plist";
526+
INFOPLIST_FILE = "$(SRCROOT)/iOS-11-by-Examples/Info.plist";
527527
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
528-
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-Sampler-2";
528+
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-by-Examples";
529529
PRODUCT_NAME = "$(TARGET_NAME)";
530530
SWIFT_VERSION = 4.0;
531531
TARGETED_DEVICE_FAMILY = "1,2";
@@ -537,11 +537,11 @@
537537
buildSettings = {
538538
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
539539
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
540-
CODE_SIGN_ENTITLEMENTS = "iOS-11-Sampler/iOS-11-Sampler.entitlements";
540+
CODE_SIGN_ENTITLEMENTS = "iOS-11-by-Examples/iOS-11-by-Examples.entitlements";
541541
DEVELOPMENT_TEAM = GPVA8JVMU3;
542-
INFOPLIST_FILE = "iOS-11-Sampler/Info.plist";
542+
INFOPLIST_FILE = "$(SRCROOT)/iOS-11-by-Examples/Info.plist";
543543
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
544-
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-Sampler-2";
544+
PRODUCT_BUNDLE_IDENTIFIER = "com.artemnovichkov.iOS-11-by-Examples";
545545
PRODUCT_NAME = "$(TARGET_NAME)";
546546
SWIFT_VERSION = 4.0;
547547
TARGETED_DEVICE_FAMILY = "1,2";
@@ -560,7 +560,7 @@
560560
defaultConfigurationIsVisible = 0;
561561
defaultConfigurationName = Release;
562562
};
563-
06B51C6F1EF543DD00CA9279 /* Build configuration list for PBXProject "iOS-11-Sampler" */ = {
563+
06B51C6F1EF543DD00CA9279 /* Build configuration list for PBXProject "iOS-11-by-Examples" */ = {
564564
isa = XCConfigurationList;
565565
buildConfigurations = (
566566
06B51C841EF543DD00CA9279 /* Debug */,
@@ -569,7 +569,7 @@
569569
defaultConfigurationIsVisible = 0;
570570
defaultConfigurationName = Release;
571571
};
572-
06B51C861EF543DD00CA9279 /* Build configuration list for PBXNativeTarget "iOS-11-Sampler" */ = {
572+
06B51C861EF543DD00CA9279 /* Build configuration list for PBXNativeTarget "iOS-11-by-Examples" */ = {
573573
isa = XCConfigurationList;
574574
buildConfigurations = (
575575
06B51C871EF543DD00CA9279 /* Debug */,

iOS-11-by-Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>

iOS-11-Sampler/ARKit/ARKitViewController.swift renamed to iOS-11-by-Examples/ARKit/ARKitViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ARKitViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 18/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/AppDelegate.swift renamed to iOS-11-by-Examples/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// AppDelegate.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 17/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/Base.lproj/Main.storyboard renamed to iOS-11-by-Examples/Base.lproj/Main.storyboard

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
99
</dependencies>
1010
<scenes>
11-
<!--👨🏻‍💻 iOS 11 Sampler-->
11+
<!--👨🏻‍💻 iOS 11 by Examples-->
1212
<scene sceneID="8lt-KV-AV0">
1313
<objects>
14-
<tableViewController id="z1k-Y2-8pl" customClass="ViewController" customModule="iOS_11_Sampler" customModuleProvider="target" sceneMemberID="viewController">
14+
<tableViewController id="z1k-Y2-8pl" customClass="ViewController" customModule="iOS_11_by_Examples" customModuleProvider="target" sceneMemberID="viewController">
1515
<tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" id="3KK-Di-FKx">
1616
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
1717
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
@@ -47,7 +47,7 @@
4747
<outlet property="delegate" destination="z1k-Y2-8pl" id="AUC-od-K0r"/>
4848
</connections>
4949
</tableView>
50-
<navigationItem key="navigationItem" title="👨🏻‍💻 iOS 11 Sampler" id="Vfp-gO-Zf6"/>
50+
<navigationItem key="navigationItem" title="👨🏻‍💻 iOS 11 by Examples" id="Vfp-gO-Zf6"/>
5151
</tableViewController>
5252
<placeholder placeholderIdentifier="IBFirstResponder" id="77R-hC-nQg" userLabel="First Responder" sceneMemberID="firstResponder"/>
5353
</objects>

iOS-11-Sampler/CoreML/CoreMLViewController.swift renamed to iOS-11-by-Examples/CoreML/CoreMLViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CoreMLViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 17/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/CoreML/UIImage+Processing.swift renamed to iOS-11-by-Examples/CoreML/UIImage+Processing.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// UIImage+Processing.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 18/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/CoreNFC/CoreNFCViewController.swift renamed to iOS-11-by-Examples/CoreNFC/CoreNFCViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CoreNFCViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 18/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/DataSource.swift renamed to iOS-11-by-Examples/DataSource.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// DataSource.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 17/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/DeviceCheck/DeviceCheckViewController.swift renamed to iOS-11-by-Examples/DeviceCheck/DeviceCheckViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// DeviceCheckViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 18/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/IdentityLookup/IdentityLookupViewController.swift renamed to iOS-11-by-Examples/IdentityLookup/IdentityLookupViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// IdentityLookupViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 18/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.
@@ -17,7 +17,7 @@ class IdentityLookupViewController: UIViewController {
1717
}
1818

1919
@IBAction func filterButtonAction(_ sender: Any) {
20-
UserDefaults(suiteName: "group.com.artemnovichkov.iOS-11-Sampler")?.blockedNumber = textField.text
20+
UserDefaults(suiteName: "group.com.artemnovichkov.iOS-11-by-Examples")?.blockedNumber = textField.text
2121
}
2222
}
2323

iOS-11-Sampler/Info.plist renamed to iOS-11-by-Examples/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NFCReaderUsageDescription</key>
6-
<string>NFC tags</string>
75
<key>CFBundleDevelopmentRegion</key>
86
<string>$(DEVELOPMENT_LANGUAGE)</string>
97
<key>CFBundleExecutable</key>
@@ -22,6 +20,8 @@
2220
<string>1</string>
2321
<key>LSRequiresIPhoneOS</key>
2422
<true/>
23+
<key>NFCReaderUsageDescription</key>
24+
<string>NFC tags</string>
2525
<key>NSCameraUsageDescription</key>
2626
<string>Take a photo</string>
2727
<key>NSPhotoLibraryUsageDescription</key>

iOS-11-Sampler/ViewController.swift renamed to iOS-11-by-Examples/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 17/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/Vision/VisionViewController.swift renamed to iOS-11-by-Examples/Vision/VisionViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// VisionViewController.swift
3-
// iOS-11-Sampler
3+
// iOS-11-by-Examples
44
//
55
// Created by Artem Novichkov on 17/06/2017.
66
// Copyright © 2017 Artem Novichkov. All rights reserved.

iOS-11-Sampler/iOS-11-Sampler.entitlements renamed to iOS-11-by-Examples/iOS-11-by-Examples.entitlements

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</array>
99
<key>com.apple.security.application-groups</key>
1010
<array>
11-
<string>group.com.artemnovichkov.iOS-11-Sampler-2</string>
11+
<string>group.com.artemnovichkov.iOS-11-by-Examples</string>
1212
</array>
1313
</dict>
1414
</plist>

0 commit comments

Comments
 (0)