fix(gradle): avoid BuildConfig conflict (#1847) (PR #1931)

This commit is contained in:
nitram84 2023-07-01 17:41:57 +02:00 committed by GitHub
parent 53e51c76a5
commit c0c35f32a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,9 +28,13 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
lintOptions {
abortOnError false
}
buildFeatures {
buildConfig = false
}
}
dependencies {