Use authority res strings

This commit is contained in:
Dominik Schürmann 2015-06-10 20:00:29 +02:00
parent aa31abd93f
commit 260364e267

View file

@ -721,13 +721,10 @@
<service
android:name=".service.KeychainService"
android:exported="false" />
<service
android:name=".service.CloudImportService"
android:exported="false" />
<provider
android:name=".provider.KeychainProvider"
android:authorities="${applicationId}.provider"
android:authorities="@string/provider_authority"
android:exported="false" />
<!-- Internal classes of the remote APIs (not exported) -->
@ -805,7 +802,7 @@
<!-- Storage Provider for temporary decrypted files -->
<provider
android:name=".provider.TemporaryStorageProvider"
android:authorities="${applicationId}.tempstorage"
android:authorities="@string/tempstorage_authority"
android:exported="true"
android:writePermission="${applicationId}.WRITE_TEMPORARY_STORAGE" />