Files
react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewFileProvider.java
T

15 lines
398 B
Java
Raw Normal View History

package com.reactnativecommunity.webview;
2019-05-16 23:33:25 +01:00
import androidx.core.content.FileProvider;
/**
* Providing a custom {@code FileProvider} prevents manifest {@code <provider>} name collisions.
* <p>
* See https://developer.android.com/guide/topics/manifest/provider-element.html for details.
*/
public class RNCWebViewFileProvider extends FileProvider {
// This class intentionally left blank.
}