Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fa5883b

Browse filesBrowse files
author
Emmanuel Garcia
authored
Add Gradle lockfiles and tool to generate them (flutter#83067)
1 parent 1f36878 commit fa5883b
Copy full SHA for fa5883b

File tree

Expand file treeCollapse file tree

131 files changed

+8711
-64
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

131 files changed

+8711
-64
lines changed

‎dev/benchmarks/complex_layout/android/build.gradle

Copy file name to clipboardExpand all lines: dev/benchmarks/complex_layout/android/build.gradle
+18-1Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,24 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5+
// This file is auto generated.
6+
// To update all the build.gradle files in the Flutter repo,
7+
// See dev/tools/bin/generate_gradle_lockfiles.dart.
8+
59
buildscript {
10+
ext.kotlin_version = '1.4.32'
611
repositories {
712
google()
813
mavenCentral()
914
}
1015

1116
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.1.0'
17+
classpath 'com.android.tools.build:gradle:4.1.3'
18+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
19+
}
20+
21+
configurations.classpath {
22+
resolutionStrategy.activateDependencyLocking()
1323
}
1424
}
1525

@@ -21,9 +31,16 @@ allprojects {
2131
}
2232

2333
rootProject.buildDir = '../build'
34+
2435
subprojects {
2536
project.buildDir = "${rootProject.buildDir}/${project.name}"
2637
project.evaluationDependsOn(':app')
38+
39+
dependencyLocking {
40+
ignoredDependencies.add('io.flutter:*')
41+
lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile")
42+
lockAllConfigurations()
43+
}
2744
}
2845

2946
task clean(type: Delete) {
+118Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
androidx.databinding:databinding-common:4.1.3=classpath
5+
androidx.databinding:databinding-compiler-common:4.1.3=classpath
6+
com.android.databinding:baseLibrary:4.1.3=classpath
7+
com.android.tools.analytics-library:crash:27.1.3=classpath
8+
com.android.tools.analytics-library:protos:27.1.3=classpath
9+
com.android.tools.analytics-library:shared:27.1.3=classpath
10+
com.android.tools.analytics-library:tracker:27.1.3=classpath
11+
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09=classpath
12+
com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta09=classpath
13+
com.android.tools.build:aapt2-proto:4.1.3-6503028=classpath
14+
com.android.tools.build:aaptcompiler:4.1.3=classpath
15+
com.android.tools.build:apksig:4.1.3=classpath
16+
com.android.tools.build:apkzlib:4.1.3=classpath
17+
com.android.tools.build:builder-model:4.1.3=classpath
18+
com.android.tools.build:builder-test-api:4.1.3=classpath
19+
com.android.tools.build:builder:4.1.3=classpath
20+
com.android.tools.build:bundletool:0.14.0=classpath
21+
com.android.tools.build:gradle-api:4.1.3=classpath
22+
com.android.tools.build:gradle:4.1.3=classpath
23+
com.android.tools.build:manifest-merger:27.1.3=classpath
24+
com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api=classpath
25+
com.android.tools.ddms:ddmlib:27.1.3=classpath
26+
com.android.tools.layoutlib:layoutlib-api:27.1.3=classpath
27+
com.android.tools.lint:lint-gradle-api:27.1.3=classpath
28+
com.android.tools.lint:lint-model:27.1.3=classpath
29+
com.android.tools:annotations:27.1.3=classpath
30+
com.android.tools:common:27.1.3=classpath
31+
com.android.tools:dvlib:27.1.3=classpath
32+
com.android.tools:repository:27.1.3=classpath
33+
com.android.tools:sdk-common:27.1.3=classpath
34+
com.android.tools:sdklib:27.1.3=classpath
35+
com.android:signflinger:4.1.3=classpath
36+
com.android:zipflinger:4.1.3=classpath
37+
com.github.gundy:semver4j:0.16.4=classpath
38+
com.google.auto.value:auto-value-annotations:1.6.2=classpath
39+
com.google.code.findbugs:jsr305:3.0.2=classpath
40+
com.google.code.gson:gson:2.8.6=classpath
41+
com.google.crypto.tink:tink:1.3.0-rc2=classpath
42+
com.google.errorprone:error_prone_annotations:2.3.2=classpath
43+
com.google.flatbuffers:flatbuffers-java:1.12.0=classpath
44+
com.google.guava:failureaccess:1.0.1=classpath
45+
com.google.guava:guava:28.1-jre=classpath
46+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=classpath
47+
com.google.j2objc:j2objc-annotations:1.3=classpath
48+
com.google.jimfs:jimfs:1.1=classpath
49+
com.google.protobuf:protobuf-java-util:3.10.0=classpath
50+
com.google.protobuf:protobuf-java:3.10.0=classpath
51+
com.google.test.platform:core-proto:0.0.2-dev=classpath
52+
com.googlecode.json-simple:json-simple:1.1=classpath
53+
com.googlecode.juniversalchardet:juniversalchardet:1.0.3=classpath
54+
com.squareup:javapoet:1.10.0=classpath
55+
com.squareup:javawriter:2.5.0=classpath
56+
com.sun.activation:javax.activation:1.2.0=classpath
57+
com.sun.istack:istack-commons-runtime:3.0.7=classpath
58+
com.sun.xml.fastinfoset:FastInfoset:1.2.15=classpath
59+
commons-codec:commons-codec:1.10=classpath
60+
commons-io:commons-io:2.4=classpath
61+
commons-logging:commons-logging:1.2=classpath
62+
de.undercouch:gradle-download-task:4.0.2=classpath
63+
it.unimi.dsi:fastutil:7.2.0=classpath
64+
javax.activation:javax.activation-api:1.2.0=classpath
65+
javax.inject:javax.inject:1=classpath
66+
javax.xml.bind:jaxb-api:2.3.1=classpath
67+
net.sf.jopt-simple:jopt-simple:4.9=classpath
68+
net.sf.kxml:kxml2:2.3.0=classpath
69+
net.sf.proguard:proguard-base:6.0.3=classpath
70+
net.sf.proguard:proguard-gradle:6.0.3=classpath
71+
org.antlr:antlr4-runtime:4.5.2-1=classpath
72+
org.antlr:antlr4:4.5.3=classpath
73+
org.apache.commons:commons-compress:1.12=classpath
74+
org.apache.httpcomponents:httpclient:4.5.6=classpath
75+
org.apache.httpcomponents:httpcore:4.4.10=classpath
76+
org.apache.httpcomponents:httpmime:4.5.6=classpath
77+
org.bouncycastle:bcpkix-jdk15on:1.56=classpath
78+
org.bouncycastle:bcprov-jdk15on:1.56=classpath
79+
org.checkerframework:checker-qual:2.8.1=classpath
80+
org.codehaus.mojo:animal-sniffer-annotations:1.18=classpath
81+
org.glassfish.jaxb:jaxb-runtime:2.3.1=classpath
82+
org.glassfish.jaxb:txw2:2.3.1=classpath
83+
org.jdom:jdom2:2.0.6=classpath
84+
org.jetbrains.intellij.deps:trove4j:1.0.20181211=classpath
85+
org.jetbrains.kotlin:kotlin-android-extensions:1.4.32=classpath
86+
org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.4.32=classpath
87+
org.jetbrains.kotlin:kotlin-build-common:1.4.32=classpath
88+
org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.32=classpath
89+
org.jetbrains.kotlin:kotlin-compiler-runner:1.4.32=classpath
90+
org.jetbrains.kotlin:kotlin-daemon-client:1.4.32=classpath
91+
org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.32=classpath
92+
org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.4.32=classpath
93+
org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.4.32=classpath
94+
org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32=classpath
95+
org.jetbrains.kotlin:kotlin-reflect:1.4.32=classpath
96+
org.jetbrains.kotlin:kotlin-script-runtime:1.4.32=classpath
97+
org.jetbrains.kotlin:kotlin-scripting-common:1.4.32=classpath
98+
org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.4.32=classpath
99+
org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.4.32=classpath
100+
org.jetbrains.kotlin:kotlin-scripting-jvm:1.4.32=classpath
101+
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32=classpath
102+
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72=classpath
103+
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72=classpath
104+
org.jetbrains.kotlin:kotlin-stdlib:1.4.32=classpath
105+
org.jetbrains.kotlin:kotlin-util-io:1.4.32=classpath
106+
org.jetbrains.kotlin:kotlin-util-klib:1.4.32=classpath
107+
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8=classpath
108+
org.jetbrains.trove4j:trove4j:20160824=classpath
109+
org.jetbrains:annotations:13.0=classpath
110+
org.json:json:20180813=classpath
111+
org.jvnet.staxex:stax-ex:1.8=classpath
112+
org.ow2.asm:asm-analysis:7.0=classpath
113+
org.ow2.asm:asm-commons:7.0=classpath
114+
org.ow2.asm:asm-tree:7.0=classpath
115+
org.ow2.asm:asm-util:7.0=classpath
116+
org.ow2.asm:asm:7.0=classpath
117+
org.tensorflow:tensorflow-lite-metadata:0.1.0-rc1=classpath
118+
empty=

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.