UNPKG

@heytea/jcore-react-native

Version:

React Native JCore component for Android and iOS

51 lines (42 loc) 2.03 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> <!-- <intent-filter>--> <!-- <action android:name="android.intent.action.USER_PRESENT" />--> <!-- <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />--> <!-- </intent-filter>--> <!-- <intent-filter>--> <!-- <action android:name="android.intent.action.PACKAGE_ADDED" />--> <!-- <action android:name="android.intent.action.PACKAGE_REMOVED" />--> <!-- <data android:scheme="package" />--> <!-- </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>