Index: chrome/android/shell/java/AndroidManifest.xml |
diff --git a/chrome/android/shell/java/AndroidManifest.xml b/chrome/android/shell/java/AndroidManifest.xml |
index ad27000310c2847b8b80b7ba9efd171bb233a328..b5dff54f5fd293a185520acbcc4d8911c2d56de4 100644 |
--- a/chrome/android/shell/java/AndroidManifest.xml |
+++ b/chrome/android/shell/java/AndroidManifest.xml |
@@ -217,6 +217,15 @@ |
android:authorities="org.chromium.chrome.shell" |
android:exported="true" /> |
+ <!-- Provider for FileProvider. --> |
+ <provider android:name="android.support.v4.content.FileProvider" |
+ android:authorities="org.chromium.chrome.shell.FileProvider" |
+ android:exported="false" |
+ android:grantUriPermissions="true"> |
+ <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
Ted C
2014/08/21 00:54:51
based on this name alone, I assume this is needed
qinmin
2014/08/21 17:45:43
Yes, or otherwise chrome will not start.
|
+ android:resource="@xml/file_paths" /> |
Ted C
2014/08/21 00:54:51
+3 indent
qinmin
2014/08/21 17:45:43
Done.
|
+ </provider> |
+ |
<!-- Sync adapter for browser sync. --> |
<service android:exported="false" |
android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAdapterService"> |