implement a comprehensive vocabulary export/import system with JSON support and conflict resolution

This commit is contained in:
jonasgaudian
2026-02-17 22:06:14 +01:00
parent ff77086ab1
commit 3c1e71d805
15 changed files with 1902 additions and 51 deletions

View File

@@ -33,6 +33,16 @@
</intent-filter>
</activity>
<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>