Skip to content

Commit ffb3533

Browse files
fixed dataAccessExpirationTime on macOS
1 parent bf20118 commit ffb3533

38 files changed

+237
-100
lines changed

examples/with_provider/.metadata

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled.
55

66
version:
7-
revision: f1875d570e39de09040c8f79aa13cc56baab8db1
7+
revision: 6928314d505d2bb4777be05e45d7808a5aa91d2a
88
channel: stable
99

1010
project_type: app
@@ -13,26 +13,11 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
17-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
18-
- platform: android
19-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
20-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
21-
- platform: ios
22-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
23-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
24-
- platform: linux
25-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
26-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
16+
create_revision: 6928314d505d2bb4777be05e45d7808a5aa91d2a
17+
base_revision: 6928314d505d2bb4777be05e45d7808a5aa91d2a
2718
- platform: macos
28-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
29-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
30-
- platform: web
31-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
32-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
33-
- platform: windows
34-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
35-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
19+
create_revision: 6928314d505d2bb4777be05e45d7808a5aa91d2a
20+
base_revision: 6928314d505d2bb4777be05e45d7808a5aa91d2a
3621

3722
# User provided section
3823

examples/with_provider/ios/Podfile.lock

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
PODS:
2-
- FBAEMKit (15.0.0):
3-
- FBSDKCoreKit_Basics (= 15.0.0)
4-
- FBSDKCoreKit (15.0.0):
5-
- FBAEMKit (= 15.0.0)
6-
- FBSDKCoreKit_Basics (= 15.0.0)
7-
- FBSDKCoreKit_Basics (15.0.0)
8-
- FBSDKLoginKit (15.0.0):
9-
- FBSDKCoreKit (= 15.0.0)
2+
- FBAEMKit (15.1.0):
3+
- FBSDKCoreKit_Basics (= 15.1.0)
4+
- FBSDKCoreKit (15.1.0):
5+
- FBAEMKit (= 15.1.0)
6+
- FBSDKCoreKit_Basics (= 15.1.0)
7+
- FBSDKCoreKit_Basics (15.1.0)
8+
- FBSDKLoginKit (15.1.0):
9+
- FBSDKCoreKit (= 15.1.0)
1010
- Flutter (1.0.0)
11-
- flutter_facebook_auth (5.0.0):
12-
- FBSDKLoginKit (= 15.0.0)
11+
- flutter_facebook_auth (5.0.4):
12+
- FBSDKLoginKit (~> 15.1.0)
1313
- Flutter
1414
- flutter_secure_storage (3.3.1):
1515
- Flutter
@@ -35,12 +35,12 @@ EXTERNAL SOURCES:
3535
:path: ".symlinks/plugins/flutter_secure_storage/ios"
3636

3737
SPEC CHECKSUMS:
38-
FBAEMKit: d8312d8451ead46282adc7f3565ffc4965e3a4a7
39-
FBSDKCoreKit: 81879058dd06208c0820fc713d054ca54903e8ba
40-
FBSDKCoreKit_Basics: eebc9bb69a0e5d133b92dca53a20716227faa454
41-
FBSDKLoginKit: 11995469cd7da16fd4d5245e8d2ec61060479270
38+
FBAEMKit: c7f82b5145d446bcbbcd50485c032689032fc6a2
39+
FBSDKCoreKit: 7542746fc63a2a38dd6a865eeb54268341f37b83
40+
FBSDKCoreKit_Basics: 92d6b26c0bed30ab09bbdd96dccaa26e6c9978d1
41+
FBSDKLoginKit: 4e275d30cf90e92bdf3a7c82857a8642abf23037
4242
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
43-
flutter_facebook_auth: ad30745952f77ef167ec2ca5ddf29143c2c8c2e0
43+
flutter_facebook_auth: c69f4e643b1d9cc9063ec87c9411bd9ec268108f
4444
flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec
4545

4646
PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048

examples/with_provider/lib/main.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:provider/provider.dart';
1010

1111
void main() async {
1212
WidgetsFlutterBinding.ensureInitialized();
13-
if (kIsWeb) {
13+
if (kIsWeb || defaultTargetPlatform == TargetPlatform.macOS) {
1414
await FacebookAuth.i.webAndDesktopInitialize(
1515
appId: '1329834907365798',
1616
cookie: true,
@@ -41,13 +41,13 @@ class MyApp extends StatelessWidget {
4141
Widget build(BuildContext context) {
4242
return FutureBuilder<bool>(
4343
future: () async {
44-
final sessionRepository = Provider.of<SessionRepository>(context);
45-
final user = await sessionRepository.user;
46-
if (user != null) {
47-
// ignore: use_build_context_synchronously
48-
context.read<SessionController>().updateUser(user);
49-
return true;
50-
}
44+
// final sessionRepository = Provider.of<SessionRepository>(context);
45+
// final user = await sessionRepository.user;
46+
// if (user != null) {
47+
// // ignore: use_build_context_synchronously
48+
// context.read<SessionController>().updateUser(user);
49+
// return true;
50+
// }
5151
return false;
5252
}.call(),
5353
builder: (_, snapShot) {

examples/with_provider/macos/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :osx, '10.11'
1+
platform :osx, '11.0'
22

33
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
44
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
PODS:
2+
- facebook_auth_desktop (0.0.3):
3+
- FlutterMacOS
4+
- flutter_secure_storage_macos (3.3.1):
5+
- FlutterMacOS
6+
- FlutterMacOS (1.0.0)
7+
8+
DEPENDENCIES:
9+
- facebook_auth_desktop (from `Flutter/ephemeral/.symlinks/plugins/facebook_auth_desktop/macos`)
10+
- flutter_secure_storage_macos (from `Flutter/ephemeral/.symlinks/plugins/flutter_secure_storage_macos/macos`)
11+
- FlutterMacOS (from `Flutter/ephemeral`)
12+
13+
EXTERNAL SOURCES:
14+
facebook_auth_desktop:
15+
:path: Flutter/ephemeral/.symlinks/plugins/facebook_auth_desktop/macos
16+
flutter_secure_storage_macos:
17+
:path: Flutter/ephemeral/.symlinks/plugins/flutter_secure_storage_macos/macos
18+
FlutterMacOS:
19+
:path: Flutter/ephemeral
20+
21+
SPEC CHECKSUMS:
22+
facebook_auth_desktop: 0ec755e3b01669ec14776af18b6945671a788916
23+
flutter_secure_storage_macos: 6ceee8fbc7f484553ad17f79361b556259df89aa
24+
FlutterMacOS: ae6af50a8ea7d6103d888583d46bd8328a7e9811
25+
26+
PODFILE CHECKSUM: 8d40c19d3cbdb380d870685c3a564c989f1efa52
27+
28+
COCOAPODS: 1.11.3

examples/with_provider/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
2727
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
2828
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
29+
CB5A73CD82E67CC6A8AAE5E7 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 823548DCCF977AA93620FA86 /* Pods_Runner.framework */; };
2930
/* End PBXBuildFile section */
3031

3132
/* Begin PBXContainerItemProxy section */
@@ -54,7 +55,7 @@
5455
/* Begin PBXFileReference section */
5556
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
5657
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
57-
33CC10ED2044A3C60003C045 /* flutter_facebook_auth_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "flutter_facebook_auth_example.app"; sourceTree = BUILT_PRODUCTS_DIR; };
58+
33CC10ED2044A3C60003C045 /* flutter_facebook_auth_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = flutter_facebook_auth_example.app; sourceTree = BUILT_PRODUCTS_DIR; };
5859
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
5960
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
6061
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -66,15 +67,21 @@
6667
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
6768
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
6869
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
70+
6B69730D838EB8851A8C3681 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
6971
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
72+
823548DCCF977AA93620FA86 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7073
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
74+
BBB064ACC8E9B18B69074960 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
75+
D6B55BA329183D4200810047 /* RunnerDebug.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RunnerDebug.entitlements; sourceTree = "<group>"; };
76+
FAFDE4619DDC2CADC017E105 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
7177
/* End PBXFileReference section */
7278

7379
/* Begin PBXFrameworksBuildPhase section */
7480
33CC10EA2044A3C60003C045 /* Frameworks */ = {
7581
isa = PBXFrameworksBuildPhase;
7682
buildActionMask = 2147483647;
7783
files = (
84+
CB5A73CD82E67CC6A8AAE5E7 /* Pods_Runner.framework in Frameworks */,
7885
);
7986
runOnlyForDeploymentPostprocessing = 0;
8087
};
@@ -99,6 +106,7 @@
99106
33CEB47122A05771004F2AC0 /* Flutter */,
100107
33CC10EE2044A3C60003C045 /* Products */,
101108
D73912EC22F37F3D000D13A0 /* Frameworks */,
109+
A104072BD55E1B5B6AB2FBC7 /* Pods */,
102110
);
103111
sourceTree = "<group>";
104112
};
@@ -135,6 +143,7 @@
135143
33FAB671232836740065AC1E /* Runner */ = {
136144
isa = PBXGroup;
137145
children = (
146+
D6B55BA329183D4200810047 /* RunnerDebug.entitlements */,
138147
33CC10F02044A3C60003C045 /* AppDelegate.swift */,
139148
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
140149
33E51913231747F40026EE4D /* DebugProfile.entitlements */,
@@ -145,9 +154,20 @@
145154
path = Runner;
146155
sourceTree = "<group>";
147156
};
157+
A104072BD55E1B5B6AB2FBC7 /* Pods */ = {
158+
isa = PBXGroup;
159+
children = (
160+
FAFDE4619DDC2CADC017E105 /* Pods-Runner.debug.xcconfig */,
161+
6B69730D838EB8851A8C3681 /* Pods-Runner.release.xcconfig */,
162+
BBB064ACC8E9B18B69074960 /* Pods-Runner.profile.xcconfig */,
163+
);
164+
path = Pods;
165+
sourceTree = "<group>";
166+
};
148167
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
149168
isa = PBXGroup;
150169
children = (
170+
823548DCCF977AA93620FA86 /* Pods_Runner.framework */,
151171
);
152172
name = Frameworks;
153173
sourceTree = "<group>";
@@ -159,11 +179,13 @@
159179
isa = PBXNativeTarget;
160180
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
161181
buildPhases = (
182+
C5F85E89BFB49CAB29BBFDED /* [CP] Check Pods Manifest.lock */,
162183
33CC10E92044A3C60003C045 /* Sources */,
163184
33CC10EA2044A3C60003C045 /* Frameworks */,
164185
33CC10EB2044A3C60003C045 /* Resources */,
165186
33CC110E2044A8840003C045 /* Bundle Framework */,
166187
3399D490228B24CF009A79C7 /* ShellScript */,
188+
396B2D1E2C25F9670306ABAC /* [CP] Embed Pods Frameworks */,
167189
);
168190
buildRules = (
169191
);
@@ -270,6 +292,45 @@
270292
shellPath = /bin/sh;
271293
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
272294
};
295+
396B2D1E2C25F9670306ABAC /* [CP] Embed Pods Frameworks */ = {
296+
isa = PBXShellScriptBuildPhase;
297+
buildActionMask = 2147483647;
298+
files = (
299+
);
300+
inputFileListPaths = (
301+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
302+
);
303+
name = "[CP] Embed Pods Frameworks";
304+
outputFileListPaths = (
305+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
306+
);
307+
runOnlyForDeploymentPostprocessing = 0;
308+
shellPath = /bin/sh;
309+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
310+
showEnvVarsInLog = 0;
311+
};
312+
C5F85E89BFB49CAB29BBFDED /* [CP] Check Pods Manifest.lock */ = {
313+
isa = PBXShellScriptBuildPhase;
314+
buildActionMask = 2147483647;
315+
files = (
316+
);
317+
inputFileListPaths = (
318+
);
319+
inputPaths = (
320+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
321+
"${PODS_ROOT}/Manifest.lock",
322+
);
323+
name = "[CP] Check Pods Manifest.lock";
324+
outputFileListPaths = (
325+
);
326+
outputPaths = (
327+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
328+
);
329+
runOnlyForDeploymentPostprocessing = 0;
330+
shellPath = /bin/sh;
331+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
332+
showEnvVarsInLog = 0;
333+
};
273334
/* End PBXShellScriptBuildPhase section */
274335

275336
/* Begin PBXSourcesBuildPhase section */
@@ -359,13 +420,16 @@
359420
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
360421
CLANG_ENABLE_MODULES = YES;
361422
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
423+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
362424
CODE_SIGN_STYLE = Automatic;
363425
COMBINE_HIDPI_IMAGES = YES;
426+
DEVELOPMENT_TEAM = 4X8W3GTB3N;
364427
INFOPLIST_FILE = Runner/Info.plist;
365428
LD_RUNPATH_SEARCH_PATHS = (
366429
"$(inherited)",
367430
"@executable_path/../Frameworks",
368431
);
432+
MACOSX_DEPLOYMENT_TARGET = 11.0;
369433
PROVISIONING_PROFILE_SPECIFIER = "";
370434
SWIFT_VERSION = 5.0;
371435
};
@@ -484,14 +548,17 @@
484548
buildSettings = {
485549
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
486550
CLANG_ENABLE_MODULES = YES;
487-
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
551+
CODE_SIGN_ENTITLEMENTS = Runner/RunnerDebug.entitlements;
552+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
488553
CODE_SIGN_STYLE = Automatic;
489554
COMBINE_HIDPI_IMAGES = YES;
555+
DEVELOPMENT_TEAM = 4X8W3GTB3N;
490556
INFOPLIST_FILE = Runner/Info.plist;
491557
LD_RUNPATH_SEARCH_PATHS = (
492558
"$(inherited)",
493559
"@executable_path/../Frameworks",
494560
);
561+
MACOSX_DEPLOYMENT_TARGET = 11.0;
495562
PROVISIONING_PROFILE_SPECIFIER = "";
496563
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
497564
SWIFT_VERSION = 5.0;
@@ -505,13 +572,16 @@
505572
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
506573
CLANG_ENABLE_MODULES = YES;
507574
CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
575+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
508576
CODE_SIGN_STYLE = Automatic;
509577
COMBINE_HIDPI_IMAGES = YES;
578+
DEVELOPMENT_TEAM = 4X8W3GTB3N;
510579
INFOPLIST_FILE = Runner/Info.plist;
511580
LD_RUNPATH_SEARCH_PATHS = (
512581
"$(inherited)",
513582
"@executable_path/../Frameworks",
514583
);
584+
MACOSX_DEPLOYMENT_TARGET = 11.0;
515585
PROVISIONING_PROFILE_SPECIFIER = "";
516586
SWIFT_VERSION = 5.0;
517587
};

examples/with_provider/macos/Runner.xcworkspace/contents.xcworkspacedata

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/with_provider/macos/Runner/DebugProfile.entitlements

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<true/>
77
<key>com.apple.security.cs.allow-jit</key>
88
<true/>
9+
<key>com.apple.security.network.client</key>
10+
<true/>
911
<key>com.apple.security.network.server</key>
1012
<true/>
13+
<key>keychain-access-groups</key>
14+
<array/>
1115
</dict>
1216
</plist>

examples/with_provider/macos/Runner/Release.entitlements

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@
44
<dict>
55
<key>com.apple.security.app-sandbox</key>
66
<true/>
7+
<key>com.apple.security.network.client</key>
8+
<true/>
9+
<key>com.apple.security.network.server</key>
10+
<true/>
11+
<key>keychain-access-groups</key>
12+
<array/>
713
</dict>
814
</plist>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
7+
<key>com.apple.security.cs.allow-jit</key>
8+
<true/>
9+
<key>com.apple.security.network.client</key>
10+
<true/>
11+
<key>com.apple.security.network.server</key>
12+
<true/>
13+
<key>keychain-access-groups</key>
14+
<array/>
15+
</dict>
16+
</plist>

0 commit comments

Comments
 (0)