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
val initialTaskNames:List<String> = project.gradle.startParameter.taskNames
project.gradle.startParameter.setTaskNames(
listOf(":someUsefullRequiredTask") + initialTaskNames.toMutableList()
)
doctor {
allowBuildingAllAndroidAppsSimultaneously.set(true)
}
Hit "Make Project" in IDE
Actual result:
Did you really mean to run all these? [task ':someUsefullRequiredTask', task ':app:assembleDebug', ...
Maybe you just meant to assemble/install one of them? In that case, you can try
./gradlew someUsefullRequiredTask
Expected result:
Did you really mean to run all these? [task ':someUsefullRequiredTask', task ':app:assembleDebug', ...
Maybe you just meant to assemble/install one of them? In that case, you can try
./gradlew :app:assembleDebug
The text was updated successfully, but these errors were encountered:
Scenario:
Actual result:
Expected result:
The text was updated successfully, but these errors were encountered: