We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5fd459 commit 8f03b7eCopy full SHA for 8f03b7e
1 file changed
build.gradle
@@ -24,9 +24,9 @@ project.ext.preDexLibs = !project.hasProperty('disablePreDex')
24
25
subprojects {
26
project.plugins.whenPluginAdded { plugin ->
27
- if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
+ if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
28
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
29
- } else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
+ } else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
30
31
}
32
0 commit comments