<?xml version="1.0" encoding="utf-8"?>
<!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools">
    <application android:name="com.unity3d.player.UnityPushApplication">

        <!-- 请填写阿里云的- appKey appSecret -->
        <meta-data android:name="com.alibaba.app.appkey" android:value="您的AppKey" />
        <meta-data android:name="com.alibaba.app.appsecret" android:value="您的AppSecret" />

        <!-- 华为通道的参数appid -->
        <meta-data android:name="com.huawei.hms.client.appid" android:value="appid=您的华为AppId" />

        <!-- 荣耀通道的参数-->
        <meta-data android:name="com.hihonor.push.app_id" android:value="您的荣耀AppId" />

        <!-- 小米通道的参数 -->
        <meta-data android:name="com.aliyun.ams.push.xiaomi.id" android:value="您的小米AppId" />
        <meta-data android:name="com.aliyun.ams.push.xiaomi.key" android:value="您的小米AppKey" />

        <!-- oppo通道的参数 -->
        <meta-data android:name="com.aliyun.ams.push.oppo.key" android:value="您的OPPO AppKey" />
        <meta-data android:name="com.aliyun.ams.push.oppo.secret" android:value="您的OPPO AppSecret" />

        <!-- vivo通道的参数api_key为appkey -->
        <meta-data android:name="com.vivo.push.api_key" android:value="您的vivo AppKey" />
        <meta-data android:name="com.vivo.push.app_id" android:value="您的vivo AppId" />

        <!-- 魅族通道的参数 -->
        <meta-data android:name="com.aliyun.ams.push.meizu.id" android:value="您的魅族AppId" />
        <meta-data android:name="com.aliyun.ams.push.meizu.secret" android:value="您的魅族AppKey" />

        <!-- fcm通道的参数 -->
        <meta-data android:name="com.aliyun.ams.push.gcm.sendid" android:value="您的fcm project_number" />
        <meta-data android:name="com.aliyun.ams.push.gcm.applicationid" android:value="您的fcm mobilesdk_app_id" />
        <meta-data android:name="com.aliyun.ams.push.gcm.projectid" android:value="您的fcm project_id"/>
        <meta-data android:name="com.aliyun.ams.push.gcm.apiKey" android:value="您的fcm current_key"/>

        <activity android:name="com.unity3d.player.UnityPlayerActivity" android:theme="@style/UnityThemeSelector">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>

        <receiver android:name="com.alibaba.sdk.android.pushwrapper.PushMessageReceiver"
            android:exported="false">
            <intent-filter>
                <action android:name="com.alibaba.push2.action.NOTIFICATION_OPENED" />
            </intent-filter>
            <intent-filter>
                <action android:name="com.alibaba.push2.action.NOTIFICATION_REMOVED" />
            </intent-filter>
            <intent-filter>
                <action android:name="com.alibaba.sdk.android.push.RECEIVE" />
            </intent-filter>
        </receiver>

        <activity android:name="com.alibaba.sdk.android.pushwrapper.ThirdPushActivity"
            android:exported="true"
            android:theme="@android:style/Theme.Translucent.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:host="${applicationId}" android:path="/thirdpush" android:scheme="agoo" />
            </intent-filter>
        </activity>

    </application>
</manifest>
