forked from chris-horner/SocketWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (28 loc) · 879 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
buildscript {
apply from: 'gradle/dependencies.gradle'
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath deps.androidGradlePlugin
classpath deps.kotlin.gradlePlugin
classpath deps.molecule
classpath deps.playPublisher
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task updateBaselineProfile(type: Copy, dependsOn: ':benchmark:pixel6Api31BenchmarkAndroidTest') {
from project(':benchmark').layout.buildDirectory.dir('outputs/managed_device_android_test_additional_output/pixel6Api31/BaselineProfileGenerator_generate-baseline-prof.txt')
into project(':app').layout.projectDirectory.dir('src/main')
rename 'BaselineProfileGenerator_generate-baseline-prof.txt', 'baseline-prof.txt'
}