AndroidManifest.xml 870 字节
Newer Older
1 2 3 4
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" 
  package="io.dcloud.hellouts">
   
5 6
    <application android:networkSecurityConfig="@xml/custom_network_security_config"
>
7 8
        <!--meta-data-->
        <meta-data android:name="TencentMapSDK" android:value="您申请的腾讯定位App Key" />
9 10 11 12 13 14 15 16 17 18
		<!--fileprovider注册,请注意authorities 需要替换为自己的唯一标识-->
		 <provider
			   android:name="androidx.core.content.FileProvider"
			   android:authorities="io.dcloud.hellouts.uts_nativepage.fileprovider"
			   android:grantUriPermissions="true"
			   android:exported="false">
			   <meta-data
				   android:name="android.support.FILE_PROVIDER_PATHS"
				   android:resource="@xml/filepaths" />
		</provider>
19 20
    </application>
</manifest>