-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Closed
Copy link
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: tech-debtTechnical debt, code quality, testing, etc.Technical debt, code quality, testing, etc.platform-androidAndroid applications specificallyAndroid applications specificallyteam-toolOwned by Flutter Tool teamOwned by Flutter Tool team
Description
Example where error is written (test/integration.shard/android_plugin_skip_unsupported_test.dart I think?):
Source of error:
flutter/packages/flutter_tools/gradle/src/main/groovy/flutter.groovy
Lines 748 to 759 in b77db0b
| private static File settingsGradleFile(Project project) { | |
| File settingsGradle = new File(project.projectDir.parentFile, "settings.gradle") | |
| File settingsGradleKts = new File(project.projectDir.parentFile, "settings.gradle.kts") | |
| if (settingsGradle.exists() && settingsGradleKts.exists()) { | |
| project.logger.error( | |
| "Both settings.gradle and settings.gradle.kts exist, so " + | |
| "settings.gradle.kts is ignored. This is likely a mistake." | |
| ) | |
| } | |
| return settingsGradle.exists() ? settingsGradle : settingsGradleKts | |
| } |
AbdeMohlbi
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: tech-debtTechnical debt, code quality, testing, etc.Technical debt, code quality, testing, etc.platform-androidAndroid applications specificallyAndroid applications specificallyteam-toolOwned by Flutter Tool teamOwned by Flutter Tool team