Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Unlock all configurations if a local engine is used #525

Merged
merged 1 commit into from
Jun 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ subprojects {
dependencyLocking {
ignoredDependencies.add('io.flutter:*')
lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile")
lockAllConfigurations()
if (!project.hasProperty('local-engine-repo')) {
lockAllConfigurations()
}
}
}

Expand Down