diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 538fd51..9fd8c28 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -7,6 +7,7 @@
().filesDir, outputName).absolutePath
+ val destPath = File(getApplication().filesDir, outputName).apply { createNewFile() }.absolutePath
val duration = endSec - startSec
VideoCrop.cropVideo(getApplication(), srcVideoPath, destPath, startSec, duration)
diff --git a/ffmpeg/src/main/jniLibs/x86_64/ffmpeg.so b/ffmpeg/src/main/jniLibs/x86_64/ffmpeg.so
new file mode 100644
index 0000000..1f3d135
Binary files /dev/null and b/ffmpeg/src/main/jniLibs/x86_64/ffmpeg.so differ
diff --git a/gradle.properties b/gradle.properties
index 98bed16..79eb82e 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,4 +18,5 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
-kotlin.code.style=official
\ No newline at end of file
+kotlin.code.style=official
+android.injected.testOnly=false
\ No newline at end of file