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.
@@ -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
@@ -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>
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "author" : "wicked.tc130",
6
6
  "license" : "ISC",
7
7
  "main" : "index.js",
8
- "version" : "1.9.1",
8
+ "version" : "1.9.5",
9
9
  "repository" : {
10
10
  "type": "git",
11
11
  "url": "https://github.com/jpush/jcore-react-native"
@@ -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>