weex 使用记录

weex 使用中的问题

  1. android多页面打开失败后台报 android.os.FileUriExposedException问题:

    在你的Application中添加:

     if (Build.VERSION.SDK_INT>=18) {
        StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
        StrictMode.setVmPolicy(builder.build());
        builder.detectFileUriExposure();
     }
    

    https://developer.android.google.cn/reference/android/support/v4/content/FileProvider

2.

Table of Contents