Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
# This should return the following output:
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
# This should return the following output:
1. switch to virtual box folder
vboxmanage clonehd xxxxx.vdi xxxxx.vmdk --format VMDK
2. copy VMDK to vsphere server (scp or ...)
webview 內的顯示要照手機本地端語系
In your info.plist you can set a value called CFBundleAllowMixedLocalizations, if you check that everything should be translated to the right localized language.
在 info.plist 新增一個 key 為 true 的 CFBundkeAllowMixedLocalizations
wkwebview add mail to and tel:
from : https://www.itread01.com/content/1541933583.html
1.在res資料夾下建立一個xml資料夾,然後建立一個network_security_config.xml檔案,檔案內容如下:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
2.接著,在AndroidManifest.xml檔案下的application標籤增加以下屬性:
<application
...
android:networkSecurityConfig="@xml/network_security_config"
...
/>
完成,這個時候App就可以訪問網路了。