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