16 lines
502 B
XML
16 lines
502 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.unionpay.full">
|
|
|
|
<!-- 基础网络权限 -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<!-- UMS SDK 需要的 meta-data -->
|
|
<application>
|
|
<meta-data
|
|
android:name="PPPaySDK"
|
|
android:value="true" />
|
|
</application>
|
|
</manifest>
|