Create placeholder ContentProviders for database observations.

Required for the API 26 migration.

See https://developer.android.com/about/versions/oreo/android-8.0-changes#ccn
This commit is contained in:
Greyson Parrelli
2018-08-21 13:28:01 -07:00
parent 1c75f375c3
commit c3bdc48ee3
3 changed files with 86 additions and 10 deletions

View File

@@ -557,6 +557,18 @@
</provider>
<provider android:name=".database.DatabaseContentProviders$Conversation"
android:authorities="org.thoughtcrime.securesms.database.conversation"
android:exported="false" />
<provider android:name=".database.DatabaseContentProviders$ConversationList"
android:authorities="org.thoughtcrime.securesms.database.conversationlist"
android:exported="false" />
<provider android:name=".database.DatabaseContentProviders$Attachment"
android:authorities="org.thoughtcrime.securesms.database.attachment"
android:exported="false" />
<receiver android:name=".service.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>