Comments indicating how to use a local build of ffmpeg-kit.arr

pull/1007/head
thandal 12 months ago
parent e78b7956c7
commit 9a6eed385a
  1. 7
      flutter/flutter/android/build.gradle

@ -11,6 +11,8 @@ buildscript {
rootProject.allprojects { rootProject.allprojects {
repositories { repositories {
// To use a local build of ffmpeg-kit.arr, set this to your absolute path.
//flatDir { dirs "/YOUR/PATH/TO/ffmpeg-kit/prebuilt/bundle-android-aar/ffmpeg-kit" }
google() google()
mavenCentral() mavenCentral()
} }
@ -49,5 +51,10 @@ android {
dependencies { dependencies {
implementation 'androidx.annotation:annotation:1.5.0' implementation 'androidx.annotation:annotation:1.5.0'
// To use the public build of ffmpeg-kit
implementation 'com.arthenica:ffmpeg-kit-https:6.0-2' implementation 'com.arthenica:ffmpeg-kit-https:6.0-2'
// To use a local build of ffmpeg-kit.arr (see 'repositioris { flatDir }' above!)
//implementation(group: 'com.arthenica', name: 'ffmpeg-kit', ext: 'aar')
} }

Loading…
Cancel
Save