diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 777faa3a5..3d043575f 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -245,6 +245,9 @@ <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity" android:theme="@style/BackgroundOnlyTheme"/> + <activity android:name="com.android.contacts.common.vcard.ShareVCardActivity" + android:theme="@style/BackgroundOnlyTheme" /> + <service android:name="com.android.contacts.common.vcard.VCardService" android:exported="false"/> @@ -329,5 +332,15 @@ android:exported="false" android:multiprocess="false" /> + + <provider + android:name="android.support.v4.content.FileProvider" + android:authorities="@string/contacts_file_provider_authority" + android:grantUriPermissions="true" + android:exported="false"> + <meta-data + android:name="android.support.FILE_PROVIDER_PATHS" + android:resource="@xml/file_paths" /> + </provider> </application> </manifest> |