mirror of
https://github.com/flutter/flutter
synced 2024-11-05 18:37:51 +00:00
5188df0821
* Revert "Mark last failing test after gradle update as flaky. (#91423)" This reverts commit46a52d03bd
. * Revert "fix android template for Gradle 7 (#91411)" This reverts commit51d06d537f
. * Revert "Add explicit version for mac and windows openjdk. (#91408)" This reverts commitbf429f2771
. * Revert "Update the openjdk version used by linux android tests. (#91405)" This reverts commit2144ab8b45
. * Revert "Migrate to Gradle 7.0.2 / AGP 7.0.1 (#90642)" This reverts commitb6459f9b63
.
52 lines
1.2 KiB
Groovy
52 lines
1.2 KiB
Groovy
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// This file is auto generated.
|
|
// To update all the build.gradle files in the Flutter repo,
|
|
// See dev/tools/bin/generate_gradle_lockfiles.dart.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.4.32'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
|
|
configurations.classpath {
|
|
resolutionStrategy.activateDependencyLocking()
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(':app')
|
|
|
|
dependencyLocking {
|
|
ignoredDependencies.add('io.flutter:*')
|
|
lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile")
|
|
if (!project.hasProperty('local-engine-repo')) {
|
|
lockAllConfigurations()
|
|
}
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|