jcore-react-native 1.9.1 → 1.9.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/.github/workflows/nodejs.yml +22 -0
- package/android/libs/arm64-v8a/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/armeabi/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/armeabi-v7a/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/jcore-android-3.1.0.jar +0 -0
- package/android/libs/mips/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/mips64/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/x86/{libjcore260.so → libjcore310.so} +0 -0
- package/android/libs/x86_64/{libjcore260.so → libjcore310.so} +0 -0
- package/android/src/main/AndroidManifest.xml +2 -2
- package/ios/RCTJCoreModule/{libjcore-ios-2.4.0.a → libjcore-ios-2.7.1.a} +0 -0
- package/package.json +1 -1
- package/android/libs/jcore-android-2.6.0.jar +0 -0
- package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcuserdata/ys.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RCTJCoreModule.xcodeproj/xcuserdata/ys.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
|
3
|
+
name: npm-publish
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- master # Change this to your default branch
|
|
8
|
+
jobs:
|
|
9
|
+
npm-publish:
|
|
10
|
+
name: npm-publish
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout repository
|
|
14
|
+
uses: actions/checkout@master
|
|
15
|
+
- name: Set up Node.js
|
|
16
|
+
uses: actions/setup-node@master
|
|
17
|
+
with:
|
|
18
|
+
node-version: 10.0.0
|
|
19
|
+
registry-url: https://registry.npmjs.org/
|
|
20
|
+
- run: npm publish
|
|
21
|
+
env: # More info about the environment variables in the README
|
|
22
|
+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} # You need to set this in your repo settings
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
<category android:name="${applicationId}" />
|
|
17
17
|
</intent-filter>
|
|
18
18
|
<intent-filter>
|
|
19
|
-
<action android:name="android.intent.action.USER_PRESENT" />
|
|
20
19
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
21
20
|
</intent-filter>
|
|
22
21
|
<intent-filter>
|
|
@@ -38,7 +37,8 @@
|
|
|
38
37
|
</intent-filter>
|
|
39
38
|
</service>
|
|
40
39
|
|
|
41
|
-
<service android:name="cn.jiguang.plugins.service.JCoreModuleService"
|
|
40
|
+
<service android:name="cn.jiguang.plugins.service.JCoreModuleService"
|
|
41
|
+
android:exported="true">
|
|
42
42
|
<intent-filter>
|
|
43
43
|
<action android:name="cn.jiguang.user.service.action" />
|
|
44
44
|
</intent-filter>
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/ios/RCTJCoreModule.xcodeproj/xcuserdata/ys.xcuserdatad/xcschemes/xcschememanagement.plist
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
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>
|