We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812771e commit b249689Copy full SHA for b249689
1 file changed
build.gradle
@@ -42,7 +42,8 @@ subprojects {
42
apply from: rootProject.file('common-android-app.gradle')
43
}
44
45
- if (!project.name.endsWith("-native") && enableSpotBugs != "false" ) {
+ def isAndroidApp = project.plugins.hasPlugin('com.android.application')
46
+ if (!project.name.endsWith("-native") && !isAndroidApp && enableSpotBugs != "false" ) {
47
apply plugin: 'com.github.spotbugs'
48
49
// Currently we only warn about issues and try to fix them as we go, but those aren't mission critical.
0 commit comments