fix: persist custom push sound for FCM cold start (0.5.11)

Копирование ringtone во внутреннее хранилище, FileProvider, каналы с hash и миграция URI.
This commit is contained in:
PTah
2026-06-21 10:46:18 +10:00
parent 363471c563
commit 6a0758ffad
9 changed files with 137 additions and 30 deletions
+10
View File
@@ -38,5 +38,15 @@
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>