1. ホーム

Android 7.0以上では、ClipData.Item.getUri()の問題により、アプリを超えて公開されることがあります。

2022-03-16 10:16:04

// Solve the problem of exposed beyond app through ClipData.Item.getUri() for android 7.0 and above
// i.e. when sharing files.
        StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
        StrictMode.setVmPolicy(builder.build());
        builder.detectFileUriExposure();