Exclude Android asset-pack and asset-pack-bundle plugins

'kotlin-android' plugins will not try to configure the project, when
any of these two plugins are applied. Usually these plugins are used
to handle Android resources and no compilation is required.

^KT-51898 Fixed
This commit is contained in:
Yahor Berdnikau
2022-05-10 11:41:33 +02:00
committed by Space
parent e9346a7f2c
commit b5449f6ed3
@@ -9,10 +9,12 @@ internal val androidPluginIds = listOf(
"com.android.application",
"com.android.library",
"com.android.dynamic-feature",
"com.android.asset-pack",
"com.android.asset-pack-bundle",
"com.android.test",
// Deprecated android plugins
"com.android.instantapp",
"com.android.feature"
// For following plugins 'kotlin-android' should never be applied
// see https://issuetracker.google.com/issues/228449122
//"com.android.asset-pack",
//"com.android.asset-pack-bundle",
)