2020-06-28 17:52:29 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-15 17:53:40 +08:00
|
|
|
package="com.mht.tcxcsb.project">
|
2020-06-28 17:52:29 +08:00
|
|
|
|
|
|
|
|
<application
|
2020-07-16 17:00:24 +08:00
|
|
|
android:name="com.lingdong.packsdk.PSDKApplication"
|
2020-06-28 17:52:29 +08:00
|
|
|
android:allowBackup="true"
|
2020-06-30 18:59:44 +08:00
|
|
|
android:supportsRtl="true">
|
2020-07-16 17:00:24 +08:00
|
|
|
|
|
|
|
|
<meta-data android:name="PSDK_GAME_PROXY_APPLICATION" android:value="com.mht.tcxcsb.project.GameApplication" />
|
|
|
|
|
<meta-data android:name="channelId" android:value="MHT" />
|
|
|
|
|
<meta-data android:name="mhtrhappid" android:value="7bb5f604306ccd93fc19f05d3a374e84" />
|
|
|
|
|
<meta-data android:name="mhtappid" android:value="e4ecefecc8034cffaa69e81b2c044f2c" />
|
|
|
|
|
<meta-data android:name="channellevel1" android:value="MHT" />
|
|
|
|
|
<meta-data android:name="channellevel2" android:value="MHT" />
|
|
|
|
|
<!--广点通-->
|
|
|
|
|
<!--<meta-data android:name="gactionId" android:value="\1110267592" />-->
|
|
|
|
|
<!--<meta-data android:name="gappSecretKey" android:value="d942ce86d51d7579cdccaafe8790e8c0"/>-->
|
|
|
|
|
|
|
|
|
|
<activity android:name="com.lingdong.packsdk.ui.PayWebActivity"></activity>
|
2020-07-15 17:53:40 +08:00
|
|
|
<activity android:name=".MhtActivity">
|
2020-06-28 17:52:29 +08:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
</application>
|
2020-06-30 18:59:44 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2020-06-28 17:52:29 +08:00
|
|
|
</manifest>
|