Merge pull request #774 from deckerst/agp8-compat-flutter

[Flutter] AGP8 compatibility
This commit is contained in:
Taner Sener 2023-07-16 18:11:54 +01:00 committed by GitHub
commit 497bda9b0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,11 @@ rootProject.allprojects {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace 'com.arthenica.ffmpegkit.flutter'
}
compileSdkVersion 31 compileSdkVersion 31
defaultConfig { defaultConfig {