diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8b363d5..cbd49584 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,14 +2,15 @@
## 0.2.25
-- Improves: Smaller UI changes
+- New: Import images from the gallery
+- Improves: Media files are now stored in the "twonly" album
- Fix: Migration issue that resulted in a corrupted backup mechanism
- Fix: Database issues causing messages to be lost or the database to be corrupted
- Fix: Permission view did not disappear after they were granted
## 0.2.23
-- Improves: Smaller UI changes
+- Improved: Smaller UI changes
- Fix: Some messages were not marked as opened.
## 0.2.20
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 2f7732ad..b50f9420 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -82,6 +82,8 @@
+
+
diff --git a/android/app/src/main/kotlin/eu/twonly/MainActivity.kt b/android/app/src/main/kotlin/eu/twonly/MainActivity.kt
index 6af76265..96624f14 100644
--- a/android/app/src/main/kotlin/eu/twonly/MainActivity.kt
+++ b/android/app/src/main/kotlin/eu/twonly/MainActivity.kt
@@ -35,7 +35,6 @@ class MainActivity : FlutterFragmentActivity() {
Keyring.initializeNdkContext(applicationContext)
- MediaStoreChannel.configure(flutterEngine, applicationContext)
VideoCompressionChannel.configure(flutterEngine, applicationContext)
}
}
diff --git a/android/app/src/main/kotlin/eu/twonly/MediaStoreChannel.kt b/android/app/src/main/kotlin/eu/twonly/MediaStoreChannel.kt
deleted file mode 100644
index e616e27c..00000000
--- a/android/app/src/main/kotlin/eu/twonly/MediaStoreChannel.kt
+++ /dev/null
@@ -1,92 +0,0 @@
-package eu.twonly
-
-import android.content.ContentValues
-import android.content.Context
-import android.os.Build
-import android.os.Environment
-import android.provider.MediaStore
-import io.flutter.embedding.engine.FlutterEngine
-import io.flutter.plugin.common.MethodChannel
-import java.io.File
-import java.io.FileInputStream
-import java.io.InputStream
-import java.io.OutputStream
-
-object MediaStoreChannel {
- private const val CHANNEL = "eu.twonly/mediaStore"
-
- fun configure(flutterEngine: FlutterEngine, context: Context) {
- val channel = MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL)
-
- channel.setMethodCallHandler { call, result ->
- try {
- if (call.method == "safeFileToDownload") {
- val arguments = call.arguments