You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (group =='com.didi.virtualapk'&& artifact =='core') {
142
+
checked.add("${group}:${artifact}:${version}")
143
+
}
144
+
145
+
// com.android.support:all
146
+
if (group =='com.android.support'|| group.startsWith('com.android.support.')) {
147
+
checked.add("${group}:${artifact}:${version}")
148
+
}
149
+
150
+
// com.android.databinding:all
151
+
if (group =='com.android.databinding'|| group.startsWith('com.android.databinding.')) {
152
+
checked.add("${group}:${artifact}:${version}")
153
+
}
154
+
}
155
+
156
+
if (!checked.empty) {
157
+
thrownewException("The dependencies [${String.join(', ', checked)}] that will be used in the current plugin must be included in the host app first. Please add it in the host app as well.")
0 commit comments