<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.getui.reactnativegetui">

    <application>

        <!-- 用户自定义服务继承自GTIntentService,作为SDK与APP桥梁服务,用来接收各种消息和命令回复 -->
        <service
            android:name="com.getui.reactnativegetui.PushIntentService"/>
        <!-- 配置SDK核心服务 -->
        <service
            android:name="com.getui.reactnativegetui.DemoPushService"
            android:exported="true"
            android:label="PushService"
            android:process=":pushservice" />

        
        <!-- 个推SDK配置结束 -->

    </application>

     <!-- 适配android 11及以上，强烈建议加上 -->
    <queries>
        <intent>
            <action android:name="com.getui.sdk.action" />
        </intent>
    </queries>

</manifest>
