mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 19:51:10 +00:00
Added an extremely simple `.editorconfig` I inferred from the main part of the project, then reformatted the codebase according to it. 🙂
16 lines
498 B
XML
16 lines
498 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.reactnativecommunity.webview">
|
|
|
|
<application>
|
|
<provider
|
|
android:name=".RNCWebViewFileProvider"
|
|
android:authorities="${applicationId}.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_provider_paths" />
|
|
</provider>
|
|
</application>
|
|
</manifest>
|