mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 11:41:08 +00:00
15 lines
399 B
Java
15 lines
399 B
Java
package com.reactnativecommunity.webview;
|
|||
|
|
|
||
|
|
import android.support.v4.content.FileProvider;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Providing a custom {@code FileProvider} prevents manifest {@code <provider>} name collisions.
|
||
|
|
*
|
||
|
|
* See https://developer.android.com/guide/topics/manifest/provider-element.html for details.
|
||
|
|
*/
|
||
|
|
public class RNCWebViewFileProvider extends FileProvider {
|
||
|
|
|
||
|
|
// This class intentionally left blank.
|
||
|
|
|
||
|
|
}
|