UNPKG

react-native-mjcore

Version:

React Native JCore component for Android and iOS

41 lines (33 loc) 1.46 kB
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cn.jiguang.plugins.core"> <application> <receiver android:name="cn.jpush.android.service.AlarmReceiver" android:exported="false" /> <receiver android:name="cn.jpush.android.service.PushReceiver" android:enabled="true" android:exported="false"> <intent-filter android:priority="1000"> <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <category android:name="${applicationId}" /> </intent-filter> </receiver> <service android:name="cn.jpush.android.service.PushService" android:exported="false"> <intent-filter> <action android:name="cn.jpush.android.intent.REGISTER" /> <action android:name="cn.jpush.android.intent.REPORT" /> <action android:name="cn.jpush.android.intent.PushService" /> <action android:name="cn.jpush.android.intent.PUSH_TIME" /> </intent-filter> </service> <service android:name="cn.jiguang.plugins.service.JCoreModuleService" android:exported="true"> <intent-filter> <action android:name="cn.jiguang.user.service.action" /> </intent-filter> </service> </application> </manifest>