@fto-consult/expo-ui 6.37.3 → 6.37.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App.js +0 -1
- package/node_modules/.package-lock.json +26218 -26188
- package/node_modules/@fto-consult/common/babel.config.alias.js +18 -1
- package/node_modules/@fto-consult/common/package.json +1 -1
- package/node_modules/@react-native-async-storage/async-storage/LICENSE +21 -0
- package/node_modules/@react-native-async-storage/async-storage/README.md +27 -0
- package/node_modules/@react-native-async-storage/async-storage/RNCAsyncStorage.podspec +19 -0
- package/node_modules/@react-native-async-storage/async-storage/android/build.gradle +142 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/AndroidManifest.xml +6 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncLocalStorageUtil.java +178 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageErrorUtil.java +45 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageExpoMigration.java +154 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageModule.java +424 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStoragePackage.java +58 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/ReactDatabaseSupplier.java +163 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/SerialExecutor.java +40 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/ArgumentHelpers.kt +86 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/ErrorHelpers.kt +39 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/StorageModule.kt +90 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/StorageSupplier.kt +161 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/test/java/com/reactnativecommunity/asyncstorage/next/ArgumentHelpersTest.kt +93 -0
- package/node_modules/@react-native-async-storage/async-storage/android/src/test/java/com/reactnativecommunity/asyncstorage/next/StorageTest.kt +141 -0
- package/node_modules/@react-native-async-storage/async-storage/android/testresults.gradle +38 -0
- package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.h +51 -0
- package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.m +898 -0
- package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.xcodeproj/project.pbxproj +283 -0
- package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorageDelegate.h +73 -0
- package/node_modules/@react-native-async-storage/async-storage/jest/async-storage-mock.d.ts +9 -0
- package/node_modules/@react-native-async-storage/async-storage/jest/async-storage-mock.js +109 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.js +164 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.native.js +366 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.native.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/RCTAsyncStorage.js +30 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/RCTAsyncStorage.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/helpers.js +69 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/helpers.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/hooks.js +44 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/hooks.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/index.js +22 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/index.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/shouldFallbackToLegacyNativeModule.js +39 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/shouldFallbackToLegacyNativeModule.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/types.js +2 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/types.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.js +153 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.native.js +348 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.native.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/RCTAsyncStorage.js +20 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/RCTAsyncStorage.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/helpers.js +56 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/helpers.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/hooks.js +34 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/hooks.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/index.js +4 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/index.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/shouldFallbackToLegacyNativeModule.js +31 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/shouldFallbackToLegacyNativeModule.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/types.js +2 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/module/types.js.map +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.d.ts +10 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.native.d.ts +16 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/RCTAsyncStorage.d.ts +2 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/helpers.d.ts +5 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/hooks.d.ts +2 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/index.d.ts +4 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/shouldFallbackToLegacyNativeModule.d.ts +1 -0
- package/node_modules/@react-native-async-storage/async-storage/lib/typescript/types.d.ts +113 -0
- package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/project.pbxproj +385 -0
- package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/xcshareddata/xcschemes/RNCAsyncStorage-macOS.xcscheme +67 -0
- package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/xcshareddata/xcschemes/RNCAsyncStorage.xcscheme +67 -0
- package/node_modules/@react-native-async-storage/async-storage/package.json +197 -0
- package/node_modules/@react-native-async-storage/async-storage/src/AsyncStorage.native.ts +356 -0
- package/node_modules/@react-native-async-storage/async-storage/src/AsyncStorage.ts +173 -0
- package/node_modules/@react-native-async-storage/async-storage/src/RCTAsyncStorage.ts +28 -0
- package/node_modules/@react-native-async-storage/async-storage/src/helpers.ts +74 -0
- package/node_modules/@react-native-async-storage/async-storage/src/hooks.ts +11 -0
- package/node_modules/@react-native-async-storage/async-storage/src/index.ts +7 -0
- package/node_modules/@react-native-async-storage/async-storage/src/shouldFallbackToLegacyNativeModule.ts +34 -0
- package/node_modules/@react-native-async-storage/async-storage/src/types.ts +155 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/PropertySheet.props +16 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/ReactNativeAsyncStorage.vcxproj +172 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/ReactNativeAsyncStorage.vcxproj.filters +34 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/packages.config +4 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage.sln +172 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/PropertySheet.props +16 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/ReactNativeAsyncStorage61.vcxproj +157 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/ReactNativeAsyncStorage61.vcxproj.filters +34 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/packages.config +4 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61.sln +195 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage62.sln +192 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/DBStorage.cpp +599 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/DBStorage.h +162 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/RNCAsyncStorage.h +118 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactNativeAsyncStorage.def +3 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.cpp +20 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.h +23 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.idl +7 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/pch.cpp +3 -0
- package/node_modules/@react-native-async-storage/async-storage/windows/code/pch.h +15 -0
- package/node_modules/merge-options/index.d.ts +2 -0
- package/node_modules/merge-options/index.js +171 -0
- package/node_modules/merge-options/index.mjs +8 -0
- package/node_modules/merge-options/license +21 -0
- package/node_modules/merge-options/node_modules/is-plain-obj/index.d.ts +29 -0
- package/node_modules/merge-options/node_modules/is-plain-obj/index.js +10 -0
- package/node_modules/merge-options/node_modules/is-plain-obj/license +9 -0
- package/node_modules/merge-options/node_modules/is-plain-obj/package.json +38 -0
- package/node_modules/merge-options/node_modules/is-plain-obj/readme.md +54 -0
- package/node_modules/merge-options/package.json +59 -0
- package/node_modules/merge-options/readme.md +130 -0
- package/package.json +131 -130
- package/src/components/Chart/appexChart/appexChart.html +23 -23
@@ -0,0 +1,385 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
1990B97A223993B0009E5EA1 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */; };
|
11
|
+
1990B97B223993B0009E5EA1 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */; };
|
12
|
+
3893A2E123C509D1009200E3 /* RNCAsyncStorage.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */; };
|
13
|
+
3893A2E223C509D1009200E3 /* RNCAsyncStorageDelegate.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */; };
|
14
|
+
3893A2E523C50AFE009200E3 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */; };
|
15
|
+
3893A2E623C50AFE009200E3 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */; };
|
16
|
+
3893A2E823C50AFE009200E3 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNCAsyncStorage.m */; };
|
17
|
+
3893A2EB23C50AFE009200E3 /* RNCAsyncStorage.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */; };
|
18
|
+
3893A2EC23C50AFE009200E3 /* RNCAsyncStorageDelegate.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */; };
|
19
|
+
B3E7B58A1CC2AC0600A0062D /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNCAsyncStorage.m */; };
|
20
|
+
/* End PBXBuildFile section */
|
21
|
+
|
22
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
23
|
+
3893A2EA23C50AFE009200E3 /* CopyFiles */ = {
|
24
|
+
isa = PBXCopyFilesBuildPhase;
|
25
|
+
buildActionMask = 2147483647;
|
26
|
+
dstPath = include/RNCAsyncStorage;
|
27
|
+
dstSubfolderSpec = 16;
|
28
|
+
files = (
|
29
|
+
3893A2EB23C50AFE009200E3 /* RNCAsyncStorage.h in CopyFiles */,
|
30
|
+
3893A2EC23C50AFE009200E3 /* RNCAsyncStorageDelegate.h in CopyFiles */,
|
31
|
+
);
|
32
|
+
runOnlyForDeploymentPostprocessing = 0;
|
33
|
+
};
|
34
|
+
58B511D91A9E6C8500147676 /* CopyFiles */ = {
|
35
|
+
isa = PBXCopyFilesBuildPhase;
|
36
|
+
buildActionMask = 2147483647;
|
37
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
38
|
+
dstSubfolderSpec = 16;
|
39
|
+
files = (
|
40
|
+
3893A2E123C509D1009200E3 /* RNCAsyncStorage.h in CopyFiles */,
|
41
|
+
3893A2E223C509D1009200E3 /* RNCAsyncStorageDelegate.h in CopyFiles */,
|
42
|
+
);
|
43
|
+
runOnlyForDeploymentPostprocessing = 0;
|
44
|
+
};
|
45
|
+
/* End PBXCopyFilesBuildPhase section */
|
46
|
+
|
47
|
+
/* Begin PBXFileReference section */
|
48
|
+
134814201AA4EA6300B7C361 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
49
|
+
1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ../ios/RNCAsyncStorageDelegate.h; sourceTree = "<group>"; };
|
50
|
+
3893A2F023C50AFE009200E3 /* libRNCAsyncStorage-macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libRNCAsyncStorage-macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
51
|
+
B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ../ios/RNCAsyncStorage.h; sourceTree = "<group>"; };
|
52
|
+
B3E7B5891CC2AC0600A0062D /* RNCAsyncStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ../ios/RNCAsyncStorage.m; sourceTree = "<group>"; };
|
53
|
+
/* End PBXFileReference section */
|
54
|
+
|
55
|
+
/* Begin PBXFrameworksBuildPhase section */
|
56
|
+
3893A2E923C50AFE009200E3 /* Frameworks */ = {
|
57
|
+
isa = PBXFrameworksBuildPhase;
|
58
|
+
buildActionMask = 2147483647;
|
59
|
+
files = (
|
60
|
+
);
|
61
|
+
runOnlyForDeploymentPostprocessing = 0;
|
62
|
+
};
|
63
|
+
58B511D81A9E6C8500147676 /* Frameworks */ = {
|
64
|
+
isa = PBXFrameworksBuildPhase;
|
65
|
+
buildActionMask = 2147483647;
|
66
|
+
files = (
|
67
|
+
);
|
68
|
+
runOnlyForDeploymentPostprocessing = 0;
|
69
|
+
};
|
70
|
+
/* End PBXFrameworksBuildPhase section */
|
71
|
+
|
72
|
+
/* Begin PBXGroup section */
|
73
|
+
134814211AA4EA7D00B7C361 /* Products */ = {
|
74
|
+
isa = PBXGroup;
|
75
|
+
children = (
|
76
|
+
134814201AA4EA6300B7C361 /* libRNCAsyncStorage.a */,
|
77
|
+
);
|
78
|
+
name = Products;
|
79
|
+
sourceTree = "<group>";
|
80
|
+
};
|
81
|
+
58B511D21A9E6C8500147676 = {
|
82
|
+
isa = PBXGroup;
|
83
|
+
children = (
|
84
|
+
B3E7B5881CC2AC0600A0062D /* RNCAsyncStorage.h */,
|
85
|
+
B3E7B5891CC2AC0600A0062D /* RNCAsyncStorage.m */,
|
86
|
+
1990B9402233FE3A009E5EA1 /* RNCAsyncStorageDelegate.h */,
|
87
|
+
134814211AA4EA7D00B7C361 /* Products */,
|
88
|
+
3893A2F023C50AFE009200E3 /* libRNCAsyncStorage-macOS.a */,
|
89
|
+
);
|
90
|
+
sourceTree = "<group>";
|
91
|
+
};
|
92
|
+
/* End PBXGroup section */
|
93
|
+
|
94
|
+
/* Begin PBXHeadersBuildPhase section */
|
95
|
+
19F94B1D2239A948006921A9 /* Headers */ = {
|
96
|
+
isa = PBXHeadersBuildPhase;
|
97
|
+
buildActionMask = 2147483647;
|
98
|
+
files = (
|
99
|
+
1990B97A223993B0009E5EA1 /* RNCAsyncStorage.h in Headers */,
|
100
|
+
1990B97B223993B0009E5EA1 /* RNCAsyncStorageDelegate.h in Headers */,
|
101
|
+
);
|
102
|
+
runOnlyForDeploymentPostprocessing = 0;
|
103
|
+
};
|
104
|
+
3893A2E423C50AFE009200E3 /* Headers */ = {
|
105
|
+
isa = PBXHeadersBuildPhase;
|
106
|
+
buildActionMask = 2147483647;
|
107
|
+
files = (
|
108
|
+
3893A2E523C50AFE009200E3 /* RNCAsyncStorage.h in Headers */,
|
109
|
+
3893A2E623C50AFE009200E3 /* RNCAsyncStorageDelegate.h in Headers */,
|
110
|
+
);
|
111
|
+
runOnlyForDeploymentPostprocessing = 0;
|
112
|
+
};
|
113
|
+
/* End PBXHeadersBuildPhase section */
|
114
|
+
|
115
|
+
/* Begin PBXNativeTarget section */
|
116
|
+
3893A2E323C50AFE009200E3 /* RNCAsyncStorage-macOS */ = {
|
117
|
+
isa = PBXNativeTarget;
|
118
|
+
buildConfigurationList = 3893A2ED23C50AFE009200E3 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage-macOS" */;
|
119
|
+
buildPhases = (
|
120
|
+
3893A2E423C50AFE009200E3 /* Headers */,
|
121
|
+
3893A2E723C50AFE009200E3 /* Sources */,
|
122
|
+
3893A2E923C50AFE009200E3 /* Frameworks */,
|
123
|
+
3893A2EA23C50AFE009200E3 /* CopyFiles */,
|
124
|
+
);
|
125
|
+
buildRules = (
|
126
|
+
);
|
127
|
+
dependencies = (
|
128
|
+
);
|
129
|
+
name = "RNCAsyncStorage-macOS";
|
130
|
+
productName = RCTDataManager;
|
131
|
+
productReference = 3893A2F023C50AFE009200E3 /* libRNCAsyncStorage-macOS.a */;
|
132
|
+
productType = "com.apple.product-type.library.static";
|
133
|
+
};
|
134
|
+
58B511DA1A9E6C8500147676 /* RNCAsyncStorage */ = {
|
135
|
+
isa = PBXNativeTarget;
|
136
|
+
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */;
|
137
|
+
buildPhases = (
|
138
|
+
19F94B1D2239A948006921A9 /* Headers */,
|
139
|
+
58B511D71A9E6C8500147676 /* Sources */,
|
140
|
+
58B511D81A9E6C8500147676 /* Frameworks */,
|
141
|
+
58B511D91A9E6C8500147676 /* CopyFiles */,
|
142
|
+
);
|
143
|
+
buildRules = (
|
144
|
+
);
|
145
|
+
dependencies = (
|
146
|
+
);
|
147
|
+
name = RNCAsyncStorage;
|
148
|
+
productName = RCTDataManager;
|
149
|
+
productReference = 134814201AA4EA6300B7C361 /* libRNCAsyncStorage.a */;
|
150
|
+
productType = "com.apple.product-type.library.static";
|
151
|
+
};
|
152
|
+
/* End PBXNativeTarget section */
|
153
|
+
|
154
|
+
/* Begin PBXProject section */
|
155
|
+
58B511D31A9E6C8500147676 /* Project object */ = {
|
156
|
+
isa = PBXProject;
|
157
|
+
attributes = {
|
158
|
+
LastUpgradeCheck = 0830;
|
159
|
+
ORGANIZATIONNAME = Facebook;
|
160
|
+
TargetAttributes = {
|
161
|
+
58B511DA1A9E6C8500147676 = {
|
162
|
+
CreatedOnToolsVersion = 6.1.1;
|
163
|
+
};
|
164
|
+
};
|
165
|
+
};
|
166
|
+
buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNCAsyncStorage" */;
|
167
|
+
compatibilityVersion = "Xcode 3.2";
|
168
|
+
developmentRegion = English;
|
169
|
+
hasScannedForEncodings = 0;
|
170
|
+
knownRegions = (
|
171
|
+
English,
|
172
|
+
en,
|
173
|
+
);
|
174
|
+
mainGroup = 58B511D21A9E6C8500147676;
|
175
|
+
productRefGroup = 58B511D21A9E6C8500147676;
|
176
|
+
projectDirPath = "";
|
177
|
+
projectRoot = "";
|
178
|
+
targets = (
|
179
|
+
58B511DA1A9E6C8500147676 /* RNCAsyncStorage */,
|
180
|
+
3893A2E323C50AFE009200E3 /* RNCAsyncStorage-macOS */,
|
181
|
+
);
|
182
|
+
};
|
183
|
+
/* End PBXProject section */
|
184
|
+
|
185
|
+
/* Begin PBXSourcesBuildPhase section */
|
186
|
+
3893A2E723C50AFE009200E3 /* Sources */ = {
|
187
|
+
isa = PBXSourcesBuildPhase;
|
188
|
+
buildActionMask = 2147483647;
|
189
|
+
files = (
|
190
|
+
3893A2E823C50AFE009200E3 /* RNCAsyncStorage.m in Sources */,
|
191
|
+
);
|
192
|
+
runOnlyForDeploymentPostprocessing = 0;
|
193
|
+
};
|
194
|
+
58B511D71A9E6C8500147676 /* Sources */ = {
|
195
|
+
isa = PBXSourcesBuildPhase;
|
196
|
+
buildActionMask = 2147483647;
|
197
|
+
files = (
|
198
|
+
B3E7B58A1CC2AC0600A0062D /* RNCAsyncStorage.m in Sources */,
|
199
|
+
);
|
200
|
+
runOnlyForDeploymentPostprocessing = 0;
|
201
|
+
};
|
202
|
+
/* End PBXSourcesBuildPhase section */
|
203
|
+
|
204
|
+
/* Begin XCBuildConfiguration section */
|
205
|
+
3893A2EE23C50AFE009200E3 /* Debug */ = {
|
206
|
+
isa = XCBuildConfiguration;
|
207
|
+
buildSettings = {
|
208
|
+
HEADER_SEARCH_PATHS = (
|
209
|
+
"$(inherited)",
|
210
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
211
|
+
);
|
212
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
213
|
+
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
214
|
+
OTHER_LDFLAGS = "-ObjC";
|
215
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
216
|
+
SDKROOT = macosx;
|
217
|
+
SKIP_INSTALL = YES;
|
218
|
+
};
|
219
|
+
name = Debug;
|
220
|
+
};
|
221
|
+
3893A2EF23C50AFE009200E3 /* Release */ = {
|
222
|
+
isa = XCBuildConfiguration;
|
223
|
+
buildSettings = {
|
224
|
+
HEADER_SEARCH_PATHS = (
|
225
|
+
"$(inherited)",
|
226
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
227
|
+
);
|
228
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
229
|
+
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
230
|
+
OTHER_LDFLAGS = "-ObjC";
|
231
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
232
|
+
SDKROOT = macosx;
|
233
|
+
SKIP_INSTALL = YES;
|
234
|
+
};
|
235
|
+
name = Release;
|
236
|
+
};
|
237
|
+
58B511ED1A9E6C8500147676 /* Debug */ = {
|
238
|
+
isa = XCBuildConfiguration;
|
239
|
+
buildSettings = {
|
240
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
241
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
242
|
+
CLANG_CXX_LIBRARY = "libc++";
|
243
|
+
CLANG_ENABLE_MODULES = YES;
|
244
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
245
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
246
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
247
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
248
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
249
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
250
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
251
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
252
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
253
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
254
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
255
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
256
|
+
COPY_PHASE_STRIP = NO;
|
257
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
258
|
+
ENABLE_TESTABILITY = YES;
|
259
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
260
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
261
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
262
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
263
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
264
|
+
"DEBUG=1",
|
265
|
+
"$(inherited)",
|
266
|
+
);
|
267
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
268
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
269
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
270
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
271
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
272
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
273
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
274
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
275
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
276
|
+
ONLY_ACTIVE_ARCH = YES;
|
277
|
+
SDKROOT = iphoneos;
|
278
|
+
};
|
279
|
+
name = Debug;
|
280
|
+
};
|
281
|
+
58B511EE1A9E6C8500147676 /* Release */ = {
|
282
|
+
isa = XCBuildConfiguration;
|
283
|
+
buildSettings = {
|
284
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
285
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
286
|
+
CLANG_CXX_LIBRARY = "libc++";
|
287
|
+
CLANG_ENABLE_MODULES = YES;
|
288
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
289
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
290
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
291
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
292
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
293
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
294
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
295
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
296
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
297
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
298
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
299
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
300
|
+
COPY_PHASE_STRIP = YES;
|
301
|
+
ENABLE_NS_ASSERTIONS = NO;
|
302
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
303
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
304
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
305
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
306
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
307
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
308
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
309
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
310
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
311
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
312
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
313
|
+
SDKROOT = iphoneos;
|
314
|
+
VALIDATE_PRODUCT = YES;
|
315
|
+
};
|
316
|
+
name = Release;
|
317
|
+
};
|
318
|
+
58B511F01A9E6C8500147676 /* Debug */ = {
|
319
|
+
isa = XCBuildConfiguration;
|
320
|
+
buildSettings = {
|
321
|
+
HEADER_SEARCH_PATHS = (
|
322
|
+
"$(inherited)",
|
323
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
324
|
+
"$(SRCROOT)/../../../React/**",
|
325
|
+
"$(SRCROOT)/../../react-native/React/**",
|
326
|
+
);
|
327
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
328
|
+
OTHER_LDFLAGS = "-ObjC";
|
329
|
+
PRODUCT_NAME = RNCAsyncStorage;
|
330
|
+
SKIP_INSTALL = YES;
|
331
|
+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvsimulator appletvos";
|
332
|
+
};
|
333
|
+
name = Debug;
|
334
|
+
};
|
335
|
+
58B511F11A9E6C8500147676 /* Release */ = {
|
336
|
+
isa = XCBuildConfiguration;
|
337
|
+
buildSettings = {
|
338
|
+
HEADER_SEARCH_PATHS = (
|
339
|
+
"$(inherited)",
|
340
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
341
|
+
"$(SRCROOT)/../../../React/**",
|
342
|
+
"$(SRCROOT)/../../react-native/React/**",
|
343
|
+
);
|
344
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
345
|
+
OTHER_LDFLAGS = "-ObjC";
|
346
|
+
PRODUCT_NAME = RNCAsyncStorage;
|
347
|
+
SKIP_INSTALL = YES;
|
348
|
+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvsimulator appletvos";
|
349
|
+
};
|
350
|
+
name = Release;
|
351
|
+
};
|
352
|
+
/* End XCBuildConfiguration section */
|
353
|
+
|
354
|
+
/* Begin XCConfigurationList section */
|
355
|
+
3893A2ED23C50AFE009200E3 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage-macOS" */ = {
|
356
|
+
isa = XCConfigurationList;
|
357
|
+
buildConfigurations = (
|
358
|
+
3893A2EE23C50AFE009200E3 /* Debug */,
|
359
|
+
3893A2EF23C50AFE009200E3 /* Release */,
|
360
|
+
);
|
361
|
+
defaultConfigurationIsVisible = 0;
|
362
|
+
defaultConfigurationName = Release;
|
363
|
+
};
|
364
|
+
58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNCAsyncStorage" */ = {
|
365
|
+
isa = XCConfigurationList;
|
366
|
+
buildConfigurations = (
|
367
|
+
58B511ED1A9E6C8500147676 /* Debug */,
|
368
|
+
58B511EE1A9E6C8500147676 /* Release */,
|
369
|
+
);
|
370
|
+
defaultConfigurationIsVisible = 0;
|
371
|
+
defaultConfigurationName = Release;
|
372
|
+
};
|
373
|
+
58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = {
|
374
|
+
isa = XCConfigurationList;
|
375
|
+
buildConfigurations = (
|
376
|
+
58B511F01A9E6C8500147676 /* Debug */,
|
377
|
+
58B511F11A9E6C8500147676 /* Release */,
|
378
|
+
);
|
379
|
+
defaultConfigurationIsVisible = 0;
|
380
|
+
defaultConfigurationName = Release;
|
381
|
+
};
|
382
|
+
/* End XCConfigurationList section */
|
383
|
+
};
|
384
|
+
rootObject = 58B511D31A9E6C8500147676 /* Project object */;
|
385
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "1120"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "3893A2E323C50AFE009200E3"
|
18
|
+
BuildableName = "libRNCAsyncStorage-macOS.a"
|
19
|
+
BlueprintName = "RNCAsyncStorage-macOS"
|
20
|
+
ReferencedContainer = "container:RNCAsyncStorage.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
buildConfiguration = "Debug"
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
30
|
+
<Testables>
|
31
|
+
</Testables>
|
32
|
+
</TestAction>
|
33
|
+
<LaunchAction
|
34
|
+
buildConfiguration = "Debug"
|
35
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
36
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
37
|
+
launchStyle = "0"
|
38
|
+
useCustomWorkingDirectory = "NO"
|
39
|
+
ignoresPersistentStateOnLaunch = "NO"
|
40
|
+
debugDocumentVersioning = "YES"
|
41
|
+
debugServiceExtension = "internal"
|
42
|
+
allowLocationSimulation = "YES">
|
43
|
+
</LaunchAction>
|
44
|
+
<ProfileAction
|
45
|
+
buildConfiguration = "Release"
|
46
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
47
|
+
savedToolIdentifier = ""
|
48
|
+
useCustomWorkingDirectory = "NO"
|
49
|
+
debugDocumentVersioning = "YES">
|
50
|
+
<MacroExpansion>
|
51
|
+
<BuildableReference
|
52
|
+
BuildableIdentifier = "primary"
|
53
|
+
BlueprintIdentifier = "3893A2E323C50AFE009200E3"
|
54
|
+
BuildableName = "libRNCAsyncStorage-macOS.a"
|
55
|
+
BlueprintName = "RNCAsyncStorage-macOS"
|
56
|
+
ReferencedContainer = "container:RNCAsyncStorage.xcodeproj">
|
57
|
+
</BuildableReference>
|
58
|
+
</MacroExpansion>
|
59
|
+
</ProfileAction>
|
60
|
+
<AnalyzeAction
|
61
|
+
buildConfiguration = "Debug">
|
62
|
+
</AnalyzeAction>
|
63
|
+
<ArchiveAction
|
64
|
+
buildConfiguration = "Release"
|
65
|
+
revealArchiveInOrganizer = "YES">
|
66
|
+
</ArchiveAction>
|
67
|
+
</Scheme>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "1120"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "58B511DA1A9E6C8500147676"
|
18
|
+
BuildableName = "libRNCAsyncStorage.a"
|
19
|
+
BlueprintName = "RNCAsyncStorage"
|
20
|
+
ReferencedContainer = "container:RNCAsyncStorage.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
buildConfiguration = "Debug"
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
30
|
+
<Testables>
|
31
|
+
</Testables>
|
32
|
+
</TestAction>
|
33
|
+
<LaunchAction
|
34
|
+
buildConfiguration = "Debug"
|
35
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
36
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
37
|
+
launchStyle = "0"
|
38
|
+
useCustomWorkingDirectory = "NO"
|
39
|
+
ignoresPersistentStateOnLaunch = "NO"
|
40
|
+
debugDocumentVersioning = "YES"
|
41
|
+
debugServiceExtension = "internal"
|
42
|
+
allowLocationSimulation = "YES">
|
43
|
+
</LaunchAction>
|
44
|
+
<ProfileAction
|
45
|
+
buildConfiguration = "Release"
|
46
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
47
|
+
savedToolIdentifier = ""
|
48
|
+
useCustomWorkingDirectory = "NO"
|
49
|
+
debugDocumentVersioning = "YES">
|
50
|
+
<MacroExpansion>
|
51
|
+
<BuildableReference
|
52
|
+
BuildableIdentifier = "primary"
|
53
|
+
BlueprintIdentifier = "58B511DA1A9E6C8500147676"
|
54
|
+
BuildableName = "libRNCAsyncStorage.a"
|
55
|
+
BlueprintName = "RNCAsyncStorage"
|
56
|
+
ReferencedContainer = "container:RNCAsyncStorage.xcodeproj">
|
57
|
+
</BuildableReference>
|
58
|
+
</MacroExpansion>
|
59
|
+
</ProfileAction>
|
60
|
+
<AnalyzeAction
|
61
|
+
buildConfiguration = "Debug">
|
62
|
+
</AnalyzeAction>
|
63
|
+
<ArchiveAction
|
64
|
+
buildConfiguration = "Release"
|
65
|
+
revealArchiveInOrganizer = "YES">
|
66
|
+
</ArchiveAction>
|
67
|
+
</Scheme>
|