android.os.FileUriExposedException: file:///storage/emulated/0/app-debug.apk exposed beyond app through Intent.getData
()
把以下代码加到oncreate()
if (Build
.VERSION
.SDK_INT
>= Build
.VERSION_CODES
.N
) {
StrictMode
.VmPolicy
.Builder builder
= new StrictMode.VmPolicy.Builder();
StrictMode
.setVmPolicy(builder
.build());
}
转载请注明原文地址:https://blackberry.8miu.com/read-17765.html