Skip to content

Commit d438787

Browse files
committed
2.3.2: android ios jcore 5.2.0
1 parent 00ca947 commit d438787

File tree

14 files changed

+15
-14
lines changed

14 files changed

+15
-14
lines changed
-881 KB
Binary file not shown.
915 KB
Binary file not shown.

cursor.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@
2323
请按照以下步骤完成:
2424

2525
1. 找到需要升级的iOS JPush SDK,替换ios/RCTJPushModule/jcore-ios-x.x.x.xcframework 为需要更新的版本。
26-
2. 找到需要升级的Android JPush SDK,替换android/libs/jcore-android-x.x.x.jar 为需要更新的版本。
27-
3. 在插件中封装需求中需要封装的SDK方法,并在插件示例demo中提供示例调用代码,注意rn插件新增方法还需要再index.js和index.d.ts文件中声明哦。(如果没有需求中没有需要新增的方法,则跳过该步骤)
28-
4. 在package.json中更新插件版本号,在现有版本号上 + 0.0.1
26+
2. 将ios/RCTJCoreModule.xcodeproj/project.pbxproj中关于jcore-ios-x.x.x.xcframework相关的引用,替换为需要更新的版本。
27+
3. 找到需要升级的Android JPush SDK,替换android/libs/jcore-android-x.x.x.jar 为需要更新的版本。
28+
4. 在插件中封装需求中需要封装的SDK方法,并在插件示例demo中提供示例调用代码,注意rn插件新增方法还需要再index.js和index.d.ts文件中声明哦。(如果没有需求中没有需要新增的方法,则跳过该步骤)
29+
5. 在package.json中更新插件版本号,在现有版本号上 + 0.0.1
2930

3031

3132

ios/RCTJCoreModule.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 52;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
1010
08166A7B27EC622A00C7233B /* RCTJCoreModule.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6212E9EF1F3991D500BDF51A /* RCTJCoreModule.h */; };
1111
6212E9F11F3991D500BDF51A /* RCTJCoreModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6212E9F01F3991D500BDF51A /* RCTJCoreModule.m */; };
12-
A4358E9E2E2F654F0050EB84 /* jcore-ios-5.1.0.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4358E9D2E2F654F0050EB84 /* jcore-ios-5.1.0.xcframework */; };
12+
62A780B02EA728CB0065922E /* jcore-ios-5.2.1.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62A780AF2EA728CB0065922E /* jcore-ios-5.2.1.xcframework */; };
1313
/* End PBXBuildFile section */
1414

1515
/* Begin PBXCopyFilesBuildPhase section */
@@ -29,15 +29,15 @@
2929
6212E9B41F3990DC00BDF51A /* libRCTJCoreModule.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTJCoreModule.a; sourceTree = BUILT_PRODUCTS_DIR; };
3030
6212E9EF1F3991D500BDF51A /* RCTJCoreModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTJCoreModule.h; sourceTree = "<group>"; };
3131
6212E9F01F3991D500BDF51A /* RCTJCoreModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTJCoreModule.m; sourceTree = "<group>"; };
32-
A4358E9D2E2F654F0050EB84 /* jcore-ios-5.1.0.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "jcore-ios-5.1.0.xcframework"; path = "RCTJCoreModule/jcore-ios-5.1.0.xcframework"; sourceTree = "<group>"; };
32+
62A780AF2EA728CB0065922E /* jcore-ios-5.2.1.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "jcore-ios-5.2.1.xcframework"; path = "RCTJCoreModule/jcore-ios-5.2.1.xcframework"; sourceTree = "<group>"; };
3333
/* End PBXFileReference section */
3434

3535
/* Begin PBXFrameworksBuildPhase section */
3636
6212E9B11F3990DC00BDF51A /* Frameworks */ = {
3737
isa = PBXFrameworksBuildPhase;
3838
buildActionMask = 2147483647;
3939
files = (
40-
A4358E9E2E2F654F0050EB84 /* jcore-ios-5.1.0.xcframework in Frameworks */,
40+
62A780B02EA728CB0065922E /* jcore-ios-5.2.1.xcframework in Frameworks */,
4141
);
4242
runOnlyForDeploymentPostprocessing = 0;
4343
};
@@ -47,7 +47,7 @@
4747
5CE8168A22FC0295007D710C /* Frameworks */ = {
4848
isa = PBXGroup;
4949
children = (
50-
A4358E9D2E2F654F0050EB84 /* jcore-ios-5.1.0.xcframework */,
50+
62A780AF2EA728CB0065922E /* jcore-ios-5.2.1.xcframework */,
5151
);
5252
name = Frameworks;
5353
sourceTree = "<group>";

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/Info.plist renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@
88
<key>HeadersPath</key>
99
<string>Headers</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64_x86_64-simulator</string>
11+
<string>ios-arm64</string>
1212
<key>LibraryPath</key>
1313
<string>libJCore.a</string>
1414
<key>SupportedArchitectures</key>
1515
<array>
1616
<string>arm64</string>
17-
<string>x86_64</string>
1817
</array>
1918
<key>SupportedPlatform</key>
2019
<string>ios</string>
21-
<key>SupportedPlatformVariant</key>
22-
<string>simulator</string>
2320
</dict>
2421
<dict>
2522
<key>HeadersPath</key>
2623
<string>Headers</string>
2724
<key>LibraryIdentifier</key>
28-
<string>ios-arm64</string>
25+
<string>ios-arm64_x86_64-simulator</string>
2926
<key>LibraryPath</key>
3027
<string>libJCore.a</string>
3128
<key>SupportedArchitectures</key>
3229
<array>
3330
<string>arm64</string>
31+
<string>x86_64</string>
3432
</array>
3533
<key>SupportedPlatform</key>
3634
<string>ios</string>
35+
<key>SupportedPlatformVariant</key>
36+
<string>simulator</string>
3737
</dict>
3838
</array>
3939
<key>CFBundlePackageType</key>

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/ios-arm64/Headers/JGCOREAPI.h renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/ios-arm64/Headers/JGCOREAPI.h

File renamed without changes.

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/ios-arm64/Headers/JGInforCollectionAuth.h renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/ios-arm64/Headers/JGInforCollectionAuth.h

File renamed without changes.

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/ios-arm64/PrivacyInfo.xcprivacy renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/ios-arm64/PrivacyInfo.xcprivacy

File renamed without changes.

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/ios-arm64/libJCore.a renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/ios-arm64/libJCore.a

7.38 MB
Binary file not shown.

ios/RCTJCoreModule/jcore-ios-5.1.0.xcframework/ios-arm64_x86_64-simulator/Headers/JGCOREAPI.h renamed to ios/RCTJCoreModule/jcore-ios-5.2.1.xcframework/ios-arm64_x86_64-simulator/Headers/JGCOREAPI.h

File renamed without changes.

0 commit comments

Comments
 (0)