@chen834921478/react-native-select-contact 1.6.3
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/.github/workflows/npm-publish.yml +33 -0
- package/CHANGELOG.md +57 -0
- package/RCTSelectContact.podspec +23 -0
- package/README.md +177 -0
- package/android/build.gradle +52 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradlew +188 -0
- package/android/gradlew.bat +100 -0
- package/android/keystores/BUCK +8 -0
- package/android/keystores/debug.keystore.properties +4 -0
- package/android/src/main/AndroidManifest.xml +6 -0
- package/android/src/main/java/com/streem/selectcontact/SelectContactModule.java +271 -0
- package/android/src/main/java/com/streem/selectcontact/SelectContactPackage.java +25 -0
- package/android/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/android/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/android/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/android/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/android/src/main/res/values/strings.xml +3 -0
- package/android/src/main/res/values/styles.xml +8 -0
- package/index.js +204 -0
- package/ios/RCTSelectContact/RCTSelectContact.h +13 -0
- package/ios/RCTSelectContact/RCTSelectContact.m +107 -0
- package/ios/SelectContact.xcodeproj/project.pbxproj +291 -0
- package/ios/SelectContact.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/SelectContact.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/SelectContact.xcodeproj/project.xcworkspace/xcuserdata/oliverjacobs.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/SelectContact.xcodeproj/project.xcworkspace/xcuserdata/seanadkinson.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/SelectContact.xcodeproj/xcshareddata/xcschemes/SelectContact.xcscheme +115 -0
- package/ios/SelectContact.xcodeproj/xcuserdata/oliverjacobs.xcuserdatad/xcschemes/RCTContactsWrapper.xcscheme +80 -0
- package/ios/SelectContact.xcodeproj/xcuserdata/oliverjacobs.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/ios/SelectContact.xcodeproj/xcuserdata/seanadkinson.xcuserdatad/xcschemes/RCTSelectContact.xcscheme +80 -0
- package/ios/SelectContact.xcodeproj/xcuserdata/seanadkinson.xcuserdatad/xcschemes/xcschememanagement.plist +27 -0
- package/license.txt +21 -0
- package/package.json +44 -0
- package/react-native-select-contact.podspec +19 -0
- package/selectContact.d.ts +62 -0
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
2B58405D1D10DE8700235F31 /* RCTSelectContact.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2B58405C1D10DE8700235F31 /* RCTSelectContact.h */; };
|
|
11
|
+
2B58405F1D10DE8700235F31 /* RCTSelectContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B58405E1D10DE8700235F31 /* RCTSelectContact.m */; };
|
|
12
|
+
/* End PBXBuildFile section */
|
|
13
|
+
|
|
14
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
15
|
+
2B5840581D10DE8700235F31 /* CopyFiles */ = {
|
|
16
|
+
isa = PBXCopyFilesBuildPhase;
|
|
17
|
+
buildActionMask = 2147483647;
|
|
18
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
19
|
+
dstSubfolderSpec = 16;
|
|
20
|
+
files = (
|
|
21
|
+
2B58405D1D10DE8700235F31 /* RCTSelectContact.h in CopyFiles */,
|
|
22
|
+
);
|
|
23
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
24
|
+
};
|
|
25
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
26
|
+
|
|
27
|
+
/* Begin PBXFileReference section */
|
|
28
|
+
2B58405A1D10DE8700235F31 /* libRCTSelectContact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTSelectContact.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
29
|
+
2B58405C1D10DE8700235F31 /* RCTSelectContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RCTSelectContact.h; sourceTree = "<group>"; };
|
|
30
|
+
2B58405E1D10DE8700235F31 /* RCTSelectContact.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RCTSelectContact.m; sourceTree = "<group>"; };
|
|
31
|
+
/* End PBXFileReference section */
|
|
32
|
+
|
|
33
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
34
|
+
2B5840571D10DE8700235F31 /* Frameworks */ = {
|
|
35
|
+
isa = PBXFrameworksBuildPhase;
|
|
36
|
+
buildActionMask = 2147483647;
|
|
37
|
+
files = (
|
|
38
|
+
);
|
|
39
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
40
|
+
};
|
|
41
|
+
/* End PBXFrameworksBuildPhase section */
|
|
42
|
+
|
|
43
|
+
/* Begin PBXGroup section */
|
|
44
|
+
2B58405B1D10DE8700235F31 /* RCTSelectContact */ = {
|
|
45
|
+
isa = PBXGroup;
|
|
46
|
+
children = (
|
|
47
|
+
2B58405C1D10DE8700235F31 /* RCTSelectContact.h */,
|
|
48
|
+
2B58405E1D10DE8700235F31 /* RCTSelectContact.m */,
|
|
49
|
+
);
|
|
50
|
+
path = RCTSelectContact;
|
|
51
|
+
sourceTree = "<group>";
|
|
52
|
+
};
|
|
53
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
54
|
+
isa = PBXGroup;
|
|
55
|
+
children = (
|
|
56
|
+
2B58405B1D10DE8700235F31 /* RCTSelectContact */,
|
|
57
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
58
|
+
);
|
|
59
|
+
indentWidth = 2;
|
|
60
|
+
sourceTree = "<group>";
|
|
61
|
+
tabWidth = 2;
|
|
62
|
+
};
|
|
63
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
64
|
+
isa = PBXGroup;
|
|
65
|
+
children = (
|
|
66
|
+
2B58405A1D10DE8700235F31 /* libRCTSelectContact.a */,
|
|
67
|
+
);
|
|
68
|
+
name = Products;
|
|
69
|
+
sourceTree = "<group>";
|
|
70
|
+
};
|
|
71
|
+
/* End PBXGroup section */
|
|
72
|
+
|
|
73
|
+
/* Begin PBXNativeTarget section */
|
|
74
|
+
2B5840591D10DE8700235F31 /* RCTSelectContact */ = {
|
|
75
|
+
isa = PBXNativeTarget;
|
|
76
|
+
buildConfigurationList = 2B5840621D10DE8700235F31 /* Build configuration list for PBXNativeTarget "RCTSelectContact" */;
|
|
77
|
+
buildPhases = (
|
|
78
|
+
2B5840561D10DE8700235F31 /* Sources */,
|
|
79
|
+
2B5840571D10DE8700235F31 /* Frameworks */,
|
|
80
|
+
2B5840581D10DE8700235F31 /* CopyFiles */,
|
|
81
|
+
);
|
|
82
|
+
buildRules = (
|
|
83
|
+
);
|
|
84
|
+
dependencies = (
|
|
85
|
+
);
|
|
86
|
+
name = RCTSelectContact;
|
|
87
|
+
productName = RCTContactsWrapper;
|
|
88
|
+
productReference = 2B58405A1D10DE8700235F31 /* libRCTSelectContact.a */;
|
|
89
|
+
productType = "com.apple.product-type.library.static";
|
|
90
|
+
};
|
|
91
|
+
/* End PBXNativeTarget section */
|
|
92
|
+
|
|
93
|
+
/* Begin PBXProject section */
|
|
94
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
95
|
+
isa = PBXProject;
|
|
96
|
+
attributes = {
|
|
97
|
+
LastUpgradeCheck = 0610;
|
|
98
|
+
ORGANIZATIONNAME = Facebook;
|
|
99
|
+
TargetAttributes = {
|
|
100
|
+
2B5840591D10DE8700235F31 = {
|
|
101
|
+
CreatedOnToolsVersion = 7.3.1;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SelectContact" */;
|
|
106
|
+
compatibilityVersion = "Xcode 3.2";
|
|
107
|
+
developmentRegion = English;
|
|
108
|
+
hasScannedForEncodings = 0;
|
|
109
|
+
knownRegions = (
|
|
110
|
+
en,
|
|
111
|
+
Base,
|
|
112
|
+
);
|
|
113
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
114
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
115
|
+
projectDirPath = "";
|
|
116
|
+
projectRoot = "";
|
|
117
|
+
targets = (
|
|
118
|
+
2B5840591D10DE8700235F31 /* RCTSelectContact */,
|
|
119
|
+
);
|
|
120
|
+
};
|
|
121
|
+
/* End PBXProject section */
|
|
122
|
+
|
|
123
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
124
|
+
2B5840561D10DE8700235F31 /* Sources */ = {
|
|
125
|
+
isa = PBXSourcesBuildPhase;
|
|
126
|
+
buildActionMask = 2147483647;
|
|
127
|
+
files = (
|
|
128
|
+
2B58405F1D10DE8700235F31 /* RCTSelectContact.m in Sources */,
|
|
129
|
+
);
|
|
130
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
131
|
+
};
|
|
132
|
+
/* End PBXSourcesBuildPhase section */
|
|
133
|
+
|
|
134
|
+
/* Begin XCBuildConfiguration section */
|
|
135
|
+
2B5840601D10DE8700235F31 /* Debug */ = {
|
|
136
|
+
isa = XCBuildConfiguration;
|
|
137
|
+
buildSettings = {
|
|
138
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
139
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
140
|
+
ENABLE_TESTABILITY = YES;
|
|
141
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
142
|
+
HEADER_SEARCH_PATHS = (
|
|
143
|
+
"$(inherited)",
|
|
144
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
145
|
+
"$(SRCROOT)/../../../React/**",
|
|
146
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
147
|
+
"$(SRCROOT)/node_modules/react-native/React/**",
|
|
148
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
|
149
|
+
"$(SRCROOT)/../../node_modules/react-native/React",
|
|
150
|
+
);
|
|
151
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
152
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
153
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
154
|
+
SKIP_INSTALL = YES;
|
|
155
|
+
};
|
|
156
|
+
name = Debug;
|
|
157
|
+
};
|
|
158
|
+
2B5840611D10DE8700235F31 /* Release */ = {
|
|
159
|
+
isa = XCBuildConfiguration;
|
|
160
|
+
buildSettings = {
|
|
161
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
162
|
+
COPY_PHASE_STRIP = NO;
|
|
163
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
164
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
165
|
+
HEADER_SEARCH_PATHS = (
|
|
166
|
+
"$(inherited)",
|
|
167
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
168
|
+
"$(SRCROOT)/../../../React/**",
|
|
169
|
+
"$(SRCROOT)/../../react-native/React/**",
|
|
170
|
+
"$(SRCROOT)/node_modules/react-native/React/**",
|
|
171
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
|
172
|
+
"$(SRCROOT)/../../node_modules/react-native/React",
|
|
173
|
+
);
|
|
174
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
|
175
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
176
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
177
|
+
SKIP_INSTALL = YES;
|
|
178
|
+
};
|
|
179
|
+
name = Release;
|
|
180
|
+
};
|
|
181
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
182
|
+
isa = XCBuildConfiguration;
|
|
183
|
+
buildSettings = {
|
|
184
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
185
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
186
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
187
|
+
CLANG_ENABLE_MODULES = YES;
|
|
188
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
189
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
190
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
191
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
192
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
193
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
194
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
195
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
196
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
197
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
198
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
199
|
+
COPY_PHASE_STRIP = NO;
|
|
200
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
201
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
202
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
203
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
204
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
205
|
+
"DEBUG=1",
|
|
206
|
+
"$(inherited)",
|
|
207
|
+
);
|
|
208
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
209
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
210
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
211
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
212
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
213
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
214
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
215
|
+
HEADER_SEARCH_PATHS = (
|
|
216
|
+
"$(inherited)",
|
|
217
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
218
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
|
219
|
+
);
|
|
220
|
+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
|
221
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
222
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
223
|
+
SDKROOT = iphoneos;
|
|
224
|
+
};
|
|
225
|
+
name = Debug;
|
|
226
|
+
};
|
|
227
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
228
|
+
isa = XCBuildConfiguration;
|
|
229
|
+
buildSettings = {
|
|
230
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
231
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
232
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
233
|
+
CLANG_ENABLE_MODULES = YES;
|
|
234
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
235
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
236
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
237
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
238
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
239
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
240
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
241
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
242
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
243
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
244
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
245
|
+
COPY_PHASE_STRIP = YES;
|
|
246
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
247
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
248
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
249
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
250
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
251
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
252
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
253
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
254
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
255
|
+
HEADER_SEARCH_PATHS = (
|
|
256
|
+
"$(inherited)",
|
|
257
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
258
|
+
"$(SRCROOT)/../node_modules/react-native/React/**",
|
|
259
|
+
);
|
|
260
|
+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
|
261
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
262
|
+
SDKROOT = iphoneos;
|
|
263
|
+
VALIDATE_PRODUCT = YES;
|
|
264
|
+
};
|
|
265
|
+
name = Release;
|
|
266
|
+
};
|
|
267
|
+
/* End XCBuildConfiguration section */
|
|
268
|
+
|
|
269
|
+
/* Begin XCConfigurationList section */
|
|
270
|
+
2B5840621D10DE8700235F31 /* Build configuration list for PBXNativeTarget "RCTSelectContact" */ = {
|
|
271
|
+
isa = XCConfigurationList;
|
|
272
|
+
buildConfigurations = (
|
|
273
|
+
2B5840601D10DE8700235F31 /* Debug */,
|
|
274
|
+
2B5840611D10DE8700235F31 /* Release */,
|
|
275
|
+
);
|
|
276
|
+
defaultConfigurationIsVisible = 0;
|
|
277
|
+
defaultConfigurationName = Release;
|
|
278
|
+
};
|
|
279
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SelectContact" */ = {
|
|
280
|
+
isa = XCConfigurationList;
|
|
281
|
+
buildConfigurations = (
|
|
282
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
283
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
284
|
+
);
|
|
285
|
+
defaultConfigurationIsVisible = 0;
|
|
286
|
+
defaultConfigurationName = Release;
|
|
287
|
+
};
|
|
288
|
+
/* End XCConfigurationList section */
|
|
289
|
+
};
|
|
290
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
291
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0620"
|
|
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 = "13B07F861A680F5B00A75B9A"
|
|
18
|
+
BuildableName = "ContactsWrapper.app"
|
|
19
|
+
BlueprintName = "ContactsWrapper"
|
|
20
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
<BuildActionEntry
|
|
24
|
+
buildForTesting = "YES"
|
|
25
|
+
buildForRunning = "YES"
|
|
26
|
+
buildForProfiling = "NO"
|
|
27
|
+
buildForArchiving = "NO"
|
|
28
|
+
buildForAnalyzing = "YES">
|
|
29
|
+
<BuildableReference
|
|
30
|
+
BuildableIdentifier = "primary"
|
|
31
|
+
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
32
|
+
BuildableName = "ContactsWrapperTests.xctest"
|
|
33
|
+
BlueprintName = "ContactsWrapperTests"
|
|
34
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
35
|
+
</BuildableReference>
|
|
36
|
+
</BuildActionEntry>
|
|
37
|
+
</BuildActionEntries>
|
|
38
|
+
</BuildAction>
|
|
39
|
+
<TestAction
|
|
40
|
+
buildConfiguration = "Debug"
|
|
41
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
42
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
43
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
44
|
+
<Testables>
|
|
45
|
+
<TestableReference
|
|
46
|
+
skipped = "NO">
|
|
47
|
+
<BuildableReference
|
|
48
|
+
BuildableIdentifier = "primary"
|
|
49
|
+
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
50
|
+
BuildableName = "ContactsWrapperTests.xctest"
|
|
51
|
+
BlueprintName = "ContactsWrapperTests"
|
|
52
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
53
|
+
</BuildableReference>
|
|
54
|
+
</TestableReference>
|
|
55
|
+
</Testables>
|
|
56
|
+
<MacroExpansion>
|
|
57
|
+
<BuildableReference
|
|
58
|
+
BuildableIdentifier = "primary"
|
|
59
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
60
|
+
BuildableName = "ContactsWrapper.app"
|
|
61
|
+
BlueprintName = "ContactsWrapper"
|
|
62
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
63
|
+
</BuildableReference>
|
|
64
|
+
</MacroExpansion>
|
|
65
|
+
<AdditionalOptions>
|
|
66
|
+
</AdditionalOptions>
|
|
67
|
+
</TestAction>
|
|
68
|
+
<LaunchAction
|
|
69
|
+
buildConfiguration = "Debug"
|
|
70
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
71
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
72
|
+
launchStyle = "0"
|
|
73
|
+
useCustomWorkingDirectory = "NO"
|
|
74
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
75
|
+
debugDocumentVersioning = "YES"
|
|
76
|
+
debugServiceExtension = "internal"
|
|
77
|
+
allowLocationSimulation = "YES">
|
|
78
|
+
<BuildableProductRunnable
|
|
79
|
+
runnableDebuggingMode = "0">
|
|
80
|
+
<BuildableReference
|
|
81
|
+
BuildableIdentifier = "primary"
|
|
82
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
83
|
+
BuildableName = "ContactsWrapper.app"
|
|
84
|
+
BlueprintName = "ContactsWrapper"
|
|
85
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
86
|
+
</BuildableReference>
|
|
87
|
+
</BuildableProductRunnable>
|
|
88
|
+
<AdditionalOptions>
|
|
89
|
+
</AdditionalOptions>
|
|
90
|
+
</LaunchAction>
|
|
91
|
+
<ProfileAction
|
|
92
|
+
buildConfiguration = "Release"
|
|
93
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
94
|
+
savedToolIdentifier = ""
|
|
95
|
+
useCustomWorkingDirectory = "NO"
|
|
96
|
+
debugDocumentVersioning = "YES">
|
|
97
|
+
<BuildableProductRunnable
|
|
98
|
+
runnableDebuggingMode = "0">
|
|
99
|
+
<BuildableReference
|
|
100
|
+
BuildableIdentifier = "primary"
|
|
101
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
102
|
+
BuildableName = "ContactsWrapper.app"
|
|
103
|
+
BlueprintName = "ContactsWrapper"
|
|
104
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
105
|
+
</BuildableReference>
|
|
106
|
+
</BuildableProductRunnable>
|
|
107
|
+
</ProfileAction>
|
|
108
|
+
<AnalyzeAction
|
|
109
|
+
buildConfiguration = "Debug">
|
|
110
|
+
</AnalyzeAction>
|
|
111
|
+
<ArchiveAction
|
|
112
|
+
buildConfiguration = "Release"
|
|
113
|
+
revealArchiveInOrganizer = "YES">
|
|
114
|
+
</ArchiveAction>
|
|
115
|
+
</Scheme>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0730"
|
|
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 = "2B5840591D10DE8700235F31"
|
|
18
|
+
BuildableName = "libRCTContactsWrapper.a"
|
|
19
|
+
BlueprintName = "RCTContactsWrapper"
|
|
20
|
+
ReferencedContainer = "container:ContactsWrapper.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
|
+
<AdditionalOptions>
|
|
33
|
+
</AdditionalOptions>
|
|
34
|
+
</TestAction>
|
|
35
|
+
<LaunchAction
|
|
36
|
+
buildConfiguration = "Debug"
|
|
37
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
+
launchStyle = "0"
|
|
40
|
+
useCustomWorkingDirectory = "NO"
|
|
41
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
+
debugDocumentVersioning = "YES"
|
|
43
|
+
debugServiceExtension = "internal"
|
|
44
|
+
allowLocationSimulation = "YES">
|
|
45
|
+
<MacroExpansion>
|
|
46
|
+
<BuildableReference
|
|
47
|
+
BuildableIdentifier = "primary"
|
|
48
|
+
BlueprintIdentifier = "2B5840591D10DE8700235F31"
|
|
49
|
+
BuildableName = "libRCTContactsWrapper.a"
|
|
50
|
+
BlueprintName = "RCTContactsWrapper"
|
|
51
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
52
|
+
</BuildableReference>
|
|
53
|
+
</MacroExpansion>
|
|
54
|
+
<AdditionalOptions>
|
|
55
|
+
</AdditionalOptions>
|
|
56
|
+
</LaunchAction>
|
|
57
|
+
<ProfileAction
|
|
58
|
+
buildConfiguration = "Release"
|
|
59
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
+
savedToolIdentifier = ""
|
|
61
|
+
useCustomWorkingDirectory = "NO"
|
|
62
|
+
debugDocumentVersioning = "YES">
|
|
63
|
+
<MacroExpansion>
|
|
64
|
+
<BuildableReference
|
|
65
|
+
BuildableIdentifier = "primary"
|
|
66
|
+
BlueprintIdentifier = "2B5840591D10DE8700235F31"
|
|
67
|
+
BuildableName = "libRCTContactsWrapper.a"
|
|
68
|
+
BlueprintName = "RCTContactsWrapper"
|
|
69
|
+
ReferencedContainer = "container:ContactsWrapper.xcodeproj">
|
|
70
|
+
</BuildableReference>
|
|
71
|
+
</MacroExpansion>
|
|
72
|
+
</ProfileAction>
|
|
73
|
+
<AnalyzeAction
|
|
74
|
+
buildConfiguration = "Debug">
|
|
75
|
+
</AnalyzeAction>
|
|
76
|
+
<ArchiveAction
|
|
77
|
+
buildConfiguration = "Release"
|
|
78
|
+
revealArchiveInOrganizer = "YES">
|
|
79
|
+
</ArchiveAction>
|
|
80
|
+
</Scheme>
|
|
@@ -0,0 +1,37 @@
|
|
|
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>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>ContactsWrapper.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
<key>RCTContactsWrapper.xcscheme</key>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>orderHint</key>
|
|
15
|
+
<integer>1</integer>
|
|
16
|
+
</dict>
|
|
17
|
+
</dict>
|
|
18
|
+
<key>SuppressBuildableAutocreation</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>00E356ED1AD99517003FC87E</key>
|
|
21
|
+
<dict>
|
|
22
|
+
<key>primary</key>
|
|
23
|
+
<true/>
|
|
24
|
+
</dict>
|
|
25
|
+
<key>13B07F861A680F5B00A75B9A</key>
|
|
26
|
+
<dict>
|
|
27
|
+
<key>primary</key>
|
|
28
|
+
<true/>
|
|
29
|
+
</dict>
|
|
30
|
+
<key>2B5840591D10DE8700235F31</key>
|
|
31
|
+
<dict>
|
|
32
|
+
<key>primary</key>
|
|
33
|
+
<true/>
|
|
34
|
+
</dict>
|
|
35
|
+
</dict>
|
|
36
|
+
</dict>
|
|
37
|
+
</plist>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0940"
|
|
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 = "2B5840591D10DE8700235F31"
|
|
18
|
+
BuildableName = "libRCTSelectContact.a"
|
|
19
|
+
BlueprintName = "RCTSelectContact"
|
|
20
|
+
ReferencedContainer = "container:SelectContact.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
|
+
<AdditionalOptions>
|
|
33
|
+
</AdditionalOptions>
|
|
34
|
+
</TestAction>
|
|
35
|
+
<LaunchAction
|
|
36
|
+
buildConfiguration = "Debug"
|
|
37
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
+
launchStyle = "0"
|
|
40
|
+
useCustomWorkingDirectory = "NO"
|
|
41
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
+
debugDocumentVersioning = "YES"
|
|
43
|
+
debugServiceExtension = "internal"
|
|
44
|
+
allowLocationSimulation = "YES">
|
|
45
|
+
<MacroExpansion>
|
|
46
|
+
<BuildableReference
|
|
47
|
+
BuildableIdentifier = "primary"
|
|
48
|
+
BlueprintIdentifier = "2B5840591D10DE8700235F31"
|
|
49
|
+
BuildableName = "libRCTSelectContact.a"
|
|
50
|
+
BlueprintName = "RCTSelectContact"
|
|
51
|
+
ReferencedContainer = "container:SelectContact.xcodeproj">
|
|
52
|
+
</BuildableReference>
|
|
53
|
+
</MacroExpansion>
|
|
54
|
+
<AdditionalOptions>
|
|
55
|
+
</AdditionalOptions>
|
|
56
|
+
</LaunchAction>
|
|
57
|
+
<ProfileAction
|
|
58
|
+
buildConfiguration = "Release"
|
|
59
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
+
savedToolIdentifier = ""
|
|
61
|
+
useCustomWorkingDirectory = "NO"
|
|
62
|
+
debugDocumentVersioning = "YES">
|
|
63
|
+
<MacroExpansion>
|
|
64
|
+
<BuildableReference
|
|
65
|
+
BuildableIdentifier = "primary"
|
|
66
|
+
BlueprintIdentifier = "2B5840591D10DE8700235F31"
|
|
67
|
+
BuildableName = "libRCTSelectContact.a"
|
|
68
|
+
BlueprintName = "RCTSelectContact"
|
|
69
|
+
ReferencedContainer = "container:SelectContact.xcodeproj">
|
|
70
|
+
</BuildableReference>
|
|
71
|
+
</MacroExpansion>
|
|
72
|
+
</ProfileAction>
|
|
73
|
+
<AnalyzeAction
|
|
74
|
+
buildConfiguration = "Debug">
|
|
75
|
+
</AnalyzeAction>
|
|
76
|
+
<ArchiveAction
|
|
77
|
+
buildConfiguration = "Release"
|
|
78
|
+
revealArchiveInOrganizer = "YES">
|
|
79
|
+
</ArchiveAction>
|
|
80
|
+
</Scheme>
|
|
@@ -0,0 +1,27 @@
|
|
|
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>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>RCTSelectContact.xcscheme</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>1</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
<key>SelectContact.xcscheme_^#shared#^_</key>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>orderHint</key>
|
|
15
|
+
<integer>0</integer>
|
|
16
|
+
</dict>
|
|
17
|
+
</dict>
|
|
18
|
+
<key>SuppressBuildableAutocreation</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>2B5840591D10DE8700235F31</key>
|
|
21
|
+
<dict>
|
|
22
|
+
<key>primary</key>
|
|
23
|
+
<true/>
|
|
24
|
+
</dict>
|
|
25
|
+
</dict>
|
|
26
|
+
</dict>
|
|
27
|
+
</plist>
|
package/license.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 LynxIT Digital
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|