react-native-getui-haidai
v1.1.43
Published
Getui push sdk plugin for rect-native
Downloads
3
Readme
解决react-native-getui-haidai组件开机自启动问题。
改动点: android/src/main/AndroidManifest.xml
- manifest标签新增 xmlns:tools="http://schemas.android.com/tools"
- RECEIVE_BOOT_COMPLETED权限 tools:node="remove"
- PushReceiver action tools:node="remove"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" tools:node="remove" />
<receiver android:name="com.igexin.sdk.PushReceiver">
<intent-filter tools:node="remove">
...
</intent-filter>
</receiver>
</manifest>