jcore-react-native-grove-patch 1.9.0
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/JCore.podspec +21 -0
- package/LICENSE +21 -0
- package/README.md +8 -0
- package/android/build.gradle +25 -0
- package/android/libs/arm64-v8a/libjcore234.so +0 -0
- package/android/libs/armeabi/libjcore234.so +0 -0
- package/android/libs/armeabi-v7a/libjcore234.so +0 -0
- package/android/libs/jcore-android-2.3.4.jar +0 -0
- package/android/libs/mips/libjcore234.so +0 -0
- package/android/libs/mips64/libjcore234.so +0 -0
- package/android/libs/x86/libjcore234.so +0 -0
- package/android/libs/x86_64/libjcore234.so +0 -0
- package/android/src/main/AndroidManifest.xml +49 -0
- package/android/src/main/java/cn/jiguang/plugins/service/JCoreModuleService.java +7 -0
- package/ios/RCTJCoreModule/RCTJCoreModule.h +13 -0
- package/ios/RCTJCoreModule/RCTJCoreModule.m +13 -0
- package/ios/RCTJCoreModule/libjcore-ios-2.4.0.a +0 -0
- package/ios/RCTJCoreModule.xcodeproj/project.pbxproj +295 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcuserdata/HuminiOS.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcuserdata/wicked.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcuserdata/ys.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/HuminiOS.xcuserdatad/xcschemes/RCTJCoreModule.xcscheme +80 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/HuminiOS.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/wicked.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/ys.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/RCTJCoreModule_sim/libjcore-ios-2.4.0.a +0 -0
- package/package.json +20 -0
package/JCore.podspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
pjson = JSON.parse(File.read('package.json'))
|
|
3
|
+
|
|
4
|
+
Pod::Spec.new do |s|
|
|
5
|
+
|
|
6
|
+
s.name = "JCore"
|
|
7
|
+
s.version = pjson["version"]
|
|
8
|
+
s.homepage = pjson["homepage"]
|
|
9
|
+
s.summary = pjson["description"]
|
|
10
|
+
s.license = pjson["license"]
|
|
11
|
+
s.author = pjson["author"]
|
|
12
|
+
|
|
13
|
+
s.ios.deployment_target = '7.0'
|
|
14
|
+
|
|
15
|
+
s.source = { :git => "git@git.code.tencent.com:npm-package/jcore-react-native-grove.git", :tag => "#{s.version}" }
|
|
16
|
+
s.source_files = 'ios/RCTJCoreModule/*.{h,m}'
|
|
17
|
+
s.preserve_paths = "**/*.js"
|
|
18
|
+
s.vendored_libraries = "ios/RCTJCoreModule/*.a"
|
|
19
|
+
|
|
20
|
+
s.dependency 'React'
|
|
21
|
+
end
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 极光开发者
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
apply plugin: 'com.android.library'
|
|
2
|
+
|
|
3
|
+
def safeExtGet(prop, fallback) {
|
|
4
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
android {
|
|
8
|
+
compileSdkVersion safeExtGet('compileSdkVersion', 27)
|
|
9
|
+
defaultConfig {
|
|
10
|
+
minSdkVersion safeExtGet('minSdkVersion', 16)
|
|
11
|
+
targetSdkVersion safeExtGet('targetSdkVersion', 27)
|
|
12
|
+
versionCode 1
|
|
13
|
+
versionName "1.0"
|
|
14
|
+
}
|
|
15
|
+
sourceSets {
|
|
16
|
+
main {
|
|
17
|
+
jniLibs.srcDirs = ['libs']
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
dependencies {
|
|
23
|
+
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
24
|
+
implementation 'com.facebook.react:react-native:+'
|
|
25
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
+
package="cn.jiguang.plugins.core">
|
|
3
|
+
|
|
4
|
+
<application>
|
|
5
|
+
|
|
6
|
+
<receiver
|
|
7
|
+
android:name="cn.jpush.android.service.AlarmReceiver"
|
|
8
|
+
android:exported="false" />
|
|
9
|
+
|
|
10
|
+
<receiver
|
|
11
|
+
android:name="cn.jpush.android.service.PushReceiver"
|
|
12
|
+
android:enabled="true"
|
|
13
|
+
android:exported="false">
|
|
14
|
+
<intent-filter android:priority="1000">
|
|
15
|
+
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
|
|
16
|
+
<category android:name="${applicationId}" />
|
|
17
|
+
</intent-filter>
|
|
18
|
+
<intent-filter>
|
|
19
|
+
<action android:name="android.intent.action.USER_PRESENT" />
|
|
20
|
+
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
21
|
+
</intent-filter>
|
|
22
|
+
<intent-filter>
|
|
23
|
+
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
|
24
|
+
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
|
25
|
+
|
|
26
|
+
<data android:scheme="package" />
|
|
27
|
+
</intent-filter>
|
|
28
|
+
</receiver>
|
|
29
|
+
|
|
30
|
+
<service
|
|
31
|
+
android:name="cn.jpush.android.service.PushService"
|
|
32
|
+
android:exported="false">
|
|
33
|
+
<intent-filter>
|
|
34
|
+
<action android:name="cn.jpush.android.intent.REGISTER" />
|
|
35
|
+
<action android:name="cn.jpush.android.intent.REPORT" />
|
|
36
|
+
<action android:name="cn.jpush.android.intent.PushService" />
|
|
37
|
+
<action android:name="cn.jpush.android.intent.PUSH_TIME" />
|
|
38
|
+
</intent-filter>
|
|
39
|
+
</service>
|
|
40
|
+
|
|
41
|
+
<service android:name="cn.jiguang.plugins.service.JCoreModuleService">
|
|
42
|
+
<intent-filter>
|
|
43
|
+
<action android:name="cn.jiguang.user.service.action" />
|
|
44
|
+
</intent-filter>
|
|
45
|
+
</service>
|
|
46
|
+
|
|
47
|
+
</application>
|
|
48
|
+
|
|
49
|
+
</manifest>
|
|
Binary file
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
5AA2628C253EC7E000196F42 /* libjcore-ios-2.4.0.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AA2628B253EC7E000196F42 /* libjcore-ios-2.4.0.a */; };
|
|
11
|
+
6212E9F11F3991D500BDF51A /* RCTJCoreModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6212E9F01F3991D500BDF51A /* RCTJCoreModule.m */; };
|
|
12
|
+
/* End PBXBuildFile section */
|
|
13
|
+
|
|
14
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
15
|
+
6212E9B21F3990DC00BDF51A /* CopyFiles */ = {
|
|
16
|
+
isa = PBXCopyFilesBuildPhase;
|
|
17
|
+
buildActionMask = 2147483647;
|
|
18
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
19
|
+
dstSubfolderSpec = 16;
|
|
20
|
+
files = (
|
|
21
|
+
);
|
|
22
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
23
|
+
};
|
|
24
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
25
|
+
|
|
26
|
+
/* Begin PBXFileReference section */
|
|
27
|
+
5AA2628B253EC7E000196F42 /* libjcore-ios-2.4.0.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libjcore-ios-2.4.0.a"; path = "RCTJCoreModule/libjcore-ios-2.4.0.a"; sourceTree = "<group>"; };
|
|
28
|
+
6212E9B41F3990DC00BDF51A /* libRCTJCoreModule.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTJCoreModule.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
29
|
+
6212E9EF1F3991D500BDF51A /* RCTJCoreModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTJCoreModule.h; sourceTree = "<group>"; };
|
|
30
|
+
6212E9F01F3991D500BDF51A /* RCTJCoreModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTJCoreModule.m; sourceTree = "<group>"; };
|
|
31
|
+
/* End PBXFileReference section */
|
|
32
|
+
|
|
33
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
34
|
+
6212E9B11F3990DC00BDF51A /* Frameworks */ = {
|
|
35
|
+
isa = PBXFrameworksBuildPhase;
|
|
36
|
+
buildActionMask = 2147483647;
|
|
37
|
+
files = (
|
|
38
|
+
5AA2628C253EC7E000196F42 /* libjcore-ios-2.4.0.a in Frameworks */,
|
|
39
|
+
);
|
|
40
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
41
|
+
};
|
|
42
|
+
/* End PBXFrameworksBuildPhase section */
|
|
43
|
+
|
|
44
|
+
/* Begin PBXGroup section */
|
|
45
|
+
5CE8168A22FC0295007D710C /* Frameworks */ = {
|
|
46
|
+
isa = PBXGroup;
|
|
47
|
+
children = (
|
|
48
|
+
5AA2628B253EC7E000196F42 /* libjcore-ios-2.4.0.a */,
|
|
49
|
+
);
|
|
50
|
+
name = Frameworks;
|
|
51
|
+
sourceTree = "<group>";
|
|
52
|
+
};
|
|
53
|
+
6212E9AB1F3990DC00BDF51A = {
|
|
54
|
+
isa = PBXGroup;
|
|
55
|
+
children = (
|
|
56
|
+
6212E9B61F3990DC00BDF51A /* RCTJCoreModule */,
|
|
57
|
+
6212E9B51F3990DC00BDF51A /* Products */,
|
|
58
|
+
5CE8168A22FC0295007D710C /* Frameworks */,
|
|
59
|
+
);
|
|
60
|
+
sourceTree = "<group>";
|
|
61
|
+
};
|
|
62
|
+
6212E9B51F3990DC00BDF51A /* Products */ = {
|
|
63
|
+
isa = PBXGroup;
|
|
64
|
+
children = (
|
|
65
|
+
6212E9B41F3990DC00BDF51A /* libRCTJCoreModule.a */,
|
|
66
|
+
);
|
|
67
|
+
name = Products;
|
|
68
|
+
sourceTree = "<group>";
|
|
69
|
+
};
|
|
70
|
+
6212E9B61F3990DC00BDF51A /* RCTJCoreModule */ = {
|
|
71
|
+
isa = PBXGroup;
|
|
72
|
+
children = (
|
|
73
|
+
6212E9EF1F3991D500BDF51A /* RCTJCoreModule.h */,
|
|
74
|
+
6212E9F01F3991D500BDF51A /* RCTJCoreModule.m */,
|
|
75
|
+
);
|
|
76
|
+
path = RCTJCoreModule;
|
|
77
|
+
sourceTree = "<group>";
|
|
78
|
+
};
|
|
79
|
+
/* End PBXGroup section */
|
|
80
|
+
|
|
81
|
+
/* Begin PBXNativeTarget section */
|
|
82
|
+
6212E9B31F3990DC00BDF51A /* RCTJCoreModule */ = {
|
|
83
|
+
isa = PBXNativeTarget;
|
|
84
|
+
buildConfigurationList = 6212E9BD1F3990DC00BDF51A /* Build configuration list for PBXNativeTarget "RCTJCoreModule" */;
|
|
85
|
+
buildPhases = (
|
|
86
|
+
6212E9B01F3990DC00BDF51A /* Sources */,
|
|
87
|
+
6212E9B11F3990DC00BDF51A /* Frameworks */,
|
|
88
|
+
6212E9B21F3990DC00BDF51A /* CopyFiles */,
|
|
89
|
+
);
|
|
90
|
+
buildRules = (
|
|
91
|
+
);
|
|
92
|
+
dependencies = (
|
|
93
|
+
);
|
|
94
|
+
name = RCTJCoreModule;
|
|
95
|
+
productName = RCTJCoreModule;
|
|
96
|
+
productReference = 6212E9B41F3990DC00BDF51A /* libRCTJCoreModule.a */;
|
|
97
|
+
productType = "com.apple.product-type.library.static";
|
|
98
|
+
};
|
|
99
|
+
/* End PBXNativeTarget section */
|
|
100
|
+
|
|
101
|
+
/* Begin PBXProject section */
|
|
102
|
+
6212E9AC1F3990DC00BDF51A /* Project object */ = {
|
|
103
|
+
isa = PBXProject;
|
|
104
|
+
attributes = {
|
|
105
|
+
LastUpgradeCheck = 0830;
|
|
106
|
+
ORGANIZATIONNAME = HXHG;
|
|
107
|
+
TargetAttributes = {
|
|
108
|
+
6212E9B31F3990DC00BDF51A = {
|
|
109
|
+
CreatedOnToolsVersion = 8.3.3;
|
|
110
|
+
DevelopmentTeam = RL64Y54S9V;
|
|
111
|
+
ProvisioningStyle = Automatic;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
buildConfigurationList = 6212E9AF1F3990DC00BDF51A /* Build configuration list for PBXProject "RCTJCoreModule" */;
|
|
116
|
+
compatibilityVersion = "Xcode 3.2";
|
|
117
|
+
developmentRegion = English;
|
|
118
|
+
hasScannedForEncodings = 0;
|
|
119
|
+
knownRegions = (
|
|
120
|
+
English,
|
|
121
|
+
en,
|
|
122
|
+
);
|
|
123
|
+
mainGroup = 6212E9AB1F3990DC00BDF51A;
|
|
124
|
+
productRefGroup = 6212E9B51F3990DC00BDF51A /* Products */;
|
|
125
|
+
projectDirPath = "";
|
|
126
|
+
projectRoot = "";
|
|
127
|
+
targets = (
|
|
128
|
+
6212E9B31F3990DC00BDF51A /* RCTJCoreModule */,
|
|
129
|
+
);
|
|
130
|
+
};
|
|
131
|
+
/* End PBXProject section */
|
|
132
|
+
|
|
133
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
134
|
+
6212E9B01F3990DC00BDF51A /* Sources */ = {
|
|
135
|
+
isa = PBXSourcesBuildPhase;
|
|
136
|
+
buildActionMask = 2147483647;
|
|
137
|
+
files = (
|
|
138
|
+
6212E9F11F3991D500BDF51A /* RCTJCoreModule.m in Sources */,
|
|
139
|
+
);
|
|
140
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
141
|
+
};
|
|
142
|
+
/* End PBXSourcesBuildPhase section */
|
|
143
|
+
|
|
144
|
+
/* Begin XCBuildConfiguration section */
|
|
145
|
+
6212E9BB1F3990DC00BDF51A /* Debug */ = {
|
|
146
|
+
isa = XCBuildConfiguration;
|
|
147
|
+
buildSettings = {
|
|
148
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
149
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
150
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
151
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
152
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
153
|
+
CLANG_ENABLE_MODULES = YES;
|
|
154
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
155
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
156
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
157
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
158
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
159
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
160
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
161
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
162
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
163
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
164
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
165
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
166
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
167
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
168
|
+
COPY_PHASE_STRIP = NO;
|
|
169
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
170
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
171
|
+
ENABLE_TESTABILITY = YES;
|
|
172
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
173
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
174
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
175
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
176
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
177
|
+
"DEBUG=1",
|
|
178
|
+
"$(inherited)",
|
|
179
|
+
);
|
|
180
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
181
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
182
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
183
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
184
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
185
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
186
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
|
187
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
188
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
189
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
190
|
+
};
|
|
191
|
+
name = Debug;
|
|
192
|
+
};
|
|
193
|
+
6212E9BC1F3990DC00BDF51A /* Release */ = {
|
|
194
|
+
isa = XCBuildConfiguration;
|
|
195
|
+
buildSettings = {
|
|
196
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
197
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
198
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
199
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
200
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
201
|
+
CLANG_ENABLE_MODULES = YES;
|
|
202
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
203
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
204
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
205
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
206
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
207
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
208
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
209
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
210
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
211
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
212
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
213
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
214
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
215
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
216
|
+
COPY_PHASE_STRIP = NO;
|
|
217
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
218
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
219
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
220
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
221
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
222
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
223
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
224
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
225
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
226
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
227
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
228
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
|
229
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
230
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
231
|
+
VALIDATE_PRODUCT = YES;
|
|
232
|
+
};
|
|
233
|
+
name = Release;
|
|
234
|
+
};
|
|
235
|
+
6212E9BE1F3990DC00BDF51A /* Debug */ = {
|
|
236
|
+
isa = XCBuildConfiguration;
|
|
237
|
+
buildSettings = {
|
|
238
|
+
DEVELOPMENT_TEAM = RL64Y54S9V;
|
|
239
|
+
LIBRARY_SEARCH_PATHS = (
|
|
240
|
+
"$(inherited)",
|
|
241
|
+
"$(PROJECT_DIR)/RCTJCoreModule",
|
|
242
|
+
);
|
|
243
|
+
"LIBRARY_SEARCH_PATHS[sdk=iphonesimulator*]" = (
|
|
244
|
+
"$(SRCROOT)/RCTJCoreModule_sim",
|
|
245
|
+
"$(inherited)",
|
|
246
|
+
);
|
|
247
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
248
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
249
|
+
SKIP_INSTALL = YES;
|
|
250
|
+
};
|
|
251
|
+
name = Debug;
|
|
252
|
+
};
|
|
253
|
+
6212E9BF1F3990DC00BDF51A /* Release */ = {
|
|
254
|
+
isa = XCBuildConfiguration;
|
|
255
|
+
buildSettings = {
|
|
256
|
+
DEVELOPMENT_TEAM = RL64Y54S9V;
|
|
257
|
+
LIBRARY_SEARCH_PATHS = (
|
|
258
|
+
"$(inherited)",
|
|
259
|
+
"$(PROJECT_DIR)/RCTJCoreModule",
|
|
260
|
+
);
|
|
261
|
+
"LIBRARY_SEARCH_PATHS[sdk=iphonesimulator*]" = (
|
|
262
|
+
"$(SRCROOT)/RCTJCoreModule_sim",
|
|
263
|
+
"$(inherited)",
|
|
264
|
+
);
|
|
265
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
266
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
267
|
+
SKIP_INSTALL = YES;
|
|
268
|
+
};
|
|
269
|
+
name = Release;
|
|
270
|
+
};
|
|
271
|
+
/* End XCBuildConfiguration section */
|
|
272
|
+
|
|
273
|
+
/* Begin XCConfigurationList section */
|
|
274
|
+
6212E9AF1F3990DC00BDF51A /* Build configuration list for PBXProject "RCTJCoreModule" */ = {
|
|
275
|
+
isa = XCConfigurationList;
|
|
276
|
+
buildConfigurations = (
|
|
277
|
+
6212E9BB1F3990DC00BDF51A /* Debug */,
|
|
278
|
+
6212E9BC1F3990DC00BDF51A /* Release */,
|
|
279
|
+
);
|
|
280
|
+
defaultConfigurationIsVisible = 0;
|
|
281
|
+
defaultConfigurationName = Release;
|
|
282
|
+
};
|
|
283
|
+
6212E9BD1F3990DC00BDF51A /* Build configuration list for PBXNativeTarget "RCTJCoreModule" */ = {
|
|
284
|
+
isa = XCConfigurationList;
|
|
285
|
+
buildConfigurations = (
|
|
286
|
+
6212E9BE1F3990DC00BDF51A /* Debug */,
|
|
287
|
+
6212E9BF1F3990DC00BDF51A /* Release */,
|
|
288
|
+
);
|
|
289
|
+
defaultConfigurationIsVisible = 0;
|
|
290
|
+
defaultConfigurationName = Release;
|
|
291
|
+
};
|
|
292
|
+
/* End XCConfigurationList section */
|
|
293
|
+
};
|
|
294
|
+
rootObject = 6212E9AC1F3990DC00BDF51A /* Project object */;
|
|
295
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0830"
|
|
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 = "6212E9B31F3990DC00BDF51A"
|
|
18
|
+
BuildableName = "libRCTJCoreModule.a"
|
|
19
|
+
BlueprintName = "RCTJCoreModule"
|
|
20
|
+
ReferencedContainer = "container:RCTJCoreModule.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 = "6212E9B31F3990DC00BDF51A"
|
|
49
|
+
BuildableName = "libRCTJCoreModule.a"
|
|
50
|
+
BlueprintName = "RCTJCoreModule"
|
|
51
|
+
ReferencedContainer = "container:RCTJCoreModule.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 = "6212E9B31F3990DC00BDF51A"
|
|
67
|
+
BuildableName = "libRCTJCoreModule.a"
|
|
68
|
+
BlueprintName = "RCTJCoreModule"
|
|
69
|
+
ReferencedContainer = "container:RCTJCoreModule.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,22 @@
|
|
|
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>RCTJCoreModule.xcscheme</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
<key>SuppressBuildableAutocreation</key>
|
|
14
|
+
<dict>
|
|
15
|
+
<key>6212E9B31F3990DC00BDF51A</key>
|
|
16
|
+
<dict>
|
|
17
|
+
<key>primary</key>
|
|
18
|
+
<true/>
|
|
19
|
+
</dict>
|
|
20
|
+
</dict>
|
|
21
|
+
</dict>
|
|
22
|
+
</plist>
|
package/ios/RCTJCoreModule.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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>RCTJCoreModule.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>45</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
|
@@ -0,0 +1,14 @@
|
|
|
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>RCTJCoreModule.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
package/ios/RCTJCoreModule.xcodeproj/xcuserdata/ys.xcuserdatad/xcschemes/xcschememanagement.plist
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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>RCTJCoreModule.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "jcore-react-native-grove-patch",
|
|
3
|
+
"description": "React Native JCore component for Android and iOS",
|
|
4
|
+
"homepage" : "https://git.code.tencent.com/npm-package/jcore-react-native-grove-patch",
|
|
5
|
+
"author" : "wicked.tc130",
|
|
6
|
+
"license" : "ISC",
|
|
7
|
+
"main" : "index.js",
|
|
8
|
+
"version" : "1.9.0",
|
|
9
|
+
"repository" : {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://git.code.tencent.com/npm-package/jcore-react-native-grove-patch"
|
|
12
|
+
},
|
|
13
|
+
"keywords" : [
|
|
14
|
+
"react-native",
|
|
15
|
+
"jiguang",
|
|
16
|
+
"JCore",
|
|
17
|
+
"grove",
|
|
18
|
+
"patch"
|
|
19
|
+
]
|
|
20
|
+
}
|