Skip to content

Commit b070343

Browse files
committed
Fix #30
1 parent 9439ee2 commit b070343

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- Alamofire (3.5.0)
2+
- Alamofire (3.5.1)
33
- Heimdallr (3.5.0):
44
- Heimdallr/Core (= 3.5.0)
55
- Heimdallr/Core (3.5.0):
@@ -32,7 +32,7 @@ CHECKOUT OPTIONS:
3232
:git: https://github.com/turbolinks/turbolinks-ios.git
3333

3434
SPEC CHECKSUMS:
35-
Alamofire: b70a7352335f8ea5babd0a923eb7e8eacc67b877
35+
Alamofire: 0dfba1184a543e2aa160f4e39cac4e8aba48d223
3636
Heimdallr: 5451a68028a6dc02f009fb6b73923d7f88b702c7
3737
PKHUD: 001c11518f125a273ddf026bcc64918423744ea2
3838
Result: 18e1a7597fbcca5923c565b40a25a98afafdee02

ruby-china-ios.xcodeproj/project.pbxproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
27849C620AD961F60F073D43 /* Pods-ruby-china-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ruby-china-ios.release.xcconfig"; path = "Pods/Target Support Files/Pods-ruby-china-ios/Pods-ruby-china-ios.release.xcconfig"; sourceTree = "<group>"; };
6969
3D8873230E620CCF5BBCEE42 /* Pods_ruby_china_ios.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ruby_china_ios.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7070
961580A61D477A7600B32BDA /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
71+
964D990A1DA9457100539868 /* Ruby China.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Ruby China.entitlements"; sourceTree = "<group>"; };
7172
9670F18C1D4235D200128F8A /* Ruby China.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Ruby China.app"; sourceTree = BUILT_PRODUCTS_DIR; };
7273
9670F18F1D4235D200128F8A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7374
9670F1941D4235D200128F8A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
@@ -191,6 +192,7 @@
191192
9670F18E1D4235D200128F8A /* ruby-china-ios */ = {
192193
isa = PBXGroup;
193194
children = (
195+
964D990A1DA9457100539868 /* Ruby China.entitlements */,
194196
967684761D45D88300EC9BD9 /* Constants.swift */,
195197
9670F18F1D4235D200128F8A /* AppDelegate.swift */,
196198
24742CE91D50FE2E00D16CA9 /* Models */,
@@ -250,6 +252,9 @@
250252
DevelopmentTeam = A38T799N53;
251253
LastSwiftMigration = 0800;
252254
SystemCapabilities = {
255+
com.apple.Keychain = {
256+
enabled = 1;
257+
};
253258
com.apple.Push = {
254259
enabled = 1;
255260
};
@@ -487,6 +492,7 @@
487492
buildSettings = {
488493
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489494
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
495+
CODE_SIGN_ENTITLEMENTS = "ruby-china-ios/Ruby China.entitlements";
490496
CODE_SIGN_IDENTITY = "iPhone Developer";
491497
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
492498
INFOPLIST_FILE = "ruby-china-ios/Info.plist";
@@ -505,6 +511,7 @@
505511
buildSettings = {
506512
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
507513
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
514+
CODE_SIGN_ENTITLEMENTS = "ruby-china-ios/Ruby China.entitlements";
508515
CODE_SIGN_IDENTITY = "iPhone Developer";
509516
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
510517
INFOPLIST_FILE = "ruby-china-ios/Info.plist";

ruby-china-ios/Ruby China.entitlements

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
<dict>
55
<key>aps-environment</key>
66
<string>development</string>
7+
<key>keychain-access-groups</key>
8+
<array>
9+
<string>$(AppIdentifierPrefix)org.ruby-china.app</string>
10+
</array>
711
</dict>
812
</plist>

0 commit comments

Comments
 (0)