Обновлен проект. Добавлена БД

This commit is contained in:
2025-03-03 23:57:55 +03:00
parent 273e68557a
commit cb6ce05059
726 changed files with 9424 additions and 478 deletions

View File

@@ -74,6 +74,30 @@
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<!--
Declares a provider which allows us to store files to share in
'.../caches/share_plus' and grant the receiving action access
-->
<provider
android:name="dev.fluttercommunity.plus.share.ShareFileProvider"
android:authorities="ru.remever.mobile.remever.flutter.share_provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/flutter_share_file_paths" />
</provider>
<!--
This manifest declared broadcast receiver allows us to use an explicit
Intent when creating a PendingItent to be informed of the user's choice
-->
<receiver
android:name="dev.fluttercommunity.plus.share.SharePlusPendingIntent"
android:exported="false" >
<intent-filter>
<action android:name="EXTRA_CHOSEN_COMPONENT" />
</intent-filter>
</receiver>
<uses-library
android:name="androidx.window.extensions"