Browse Source

Merge pull request #105 from authpass/agp8

conditionally add namespace for AGP 8 support.
main
Khoren Markosyan 1 year ago committed by GitHub
parent
commit
b89fd4c3c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      android/build.gradle

4
android/build.gradle

@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'
android {
// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace 'com.markosyan.flutter_zxing'
}
compileSdkVersion 31
externalNativeBuild {

Loading…
Cancel
Save