added namespace for AGP8 compatibility

This commit is contained in:
Thibault Deckers 2023-07-16 11:50:00 +02:00
parent 5329f9b490
commit 91026936cb

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 {