Skip to content

Commit 4d59ffe

Browse files
oprisnikfacebook-github-bot
authored andcommitted
Added FrescoConfig for build setup to buildSrc and use for build tools
Summary: We want to move to buildSrc, so I've added a FrescoConfig for SDK / build tools setup. Reviewed By: passy Differential Revision: D20675749 fbshipit-source-id: ba03abd3b41c48fe1fc617c6a094e6f2eca05020
1 parent a468f94 commit 4d59ffe

File tree

49 files changed

+57
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+57
-50
lines changed

animated-base-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ apply from: rootProject.file('release.gradle')
3232

3333
android {
3434

35-
buildToolsVersion rootProject.ext.buildToolsVersion
35+
buildToolsVersion FrescoConfig.buildToolsVersion
3636
compileSdkVersion rootProject.ext.compileSdkVersion
3737

3838
defaultConfig {

animated-base/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ apply from: rootProject.file('release.gradle')
4343

4444
android {
4545

46-
buildToolsVersion rootProject.ext.buildToolsVersion
46+
buildToolsVersion FrescoConfig.buildToolsVersion
4747
compileSdkVersion rootProject.ext.compileSdkVersion
4848

4949
defaultConfig {

animated-drawable/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'com.android.library'
1111
apply plugin: 'maven'
1212

1313
android {
14-
buildToolsVersion rootProject.ext.buildToolsVersion
14+
buildToolsVersion FrescoConfig.buildToolsVersion
1515
compileSdkVersion rootProject.ext.compileSdkVersion
1616

1717
defaultConfig {

animated-gif-lite/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply from: rootProject.file('release.gradle')
1919

2020
android {
2121

22-
buildToolsVersion rootProject.ext.buildToolsVersion
22+
buildToolsVersion FrescoConfig.buildToolsVersion
2323
compileSdkVersion rootProject.ext.compileSdkVersion
2424

2525
defaultConfig {

animated-gif/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ task fetchNativeDeps(dependsOn: [copyGiflib]) {
4343
android {
4444
def ndkLibs = [['gifimage', [copyGiflib]]]
4545

46-
buildToolsVersion rootProject.ext.buildToolsVersion
46+
buildToolsVersion FrescoConfig.buildToolsVersion
4747
compileSdkVersion rootProject.ext.compileSdkVersion
4848

4949
defaultConfig {

animated-webp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ apply from: rootProject.file('release.gradle')
3636

3737
android {
3838

39-
buildToolsVersion rootProject.ext.buildToolsVersion
39+
buildToolsVersion FrescoConfig.buildToolsVersion
4040
compileSdkVersion rootProject.ext.compileSdkVersion
4141

4242
defaultConfig {

build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ plugins {
5353
}
5454

5555
project.ext {
56-
buildToolsVersion = "${BUILD_TOOLS_VERSION}"
5756
compileSdkVersion = COMPILE_SDK_VERSION.toInteger()
5857
minSdkVersion = MIN_SDK_VERSION
5958
samplesMinSdkVersion = SAMPLES_MIN_SDK_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) Facebook, Inc. and its affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
object FrescoConfig {
9+
const val buildToolsVersion = "28.0.3"
10+
}

buildSrc/src/main/java/com/facebook/fresco/buildsrc/GradleDeps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package com.facebook.fresco.buildsrc
99

1010
object GradleDeps {
11-
11+
1212
object Android {
1313
private const val version = "3.5.3"
1414

drawee-backends/drawee-pipeline/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
apply from: rootProject.file('release.gradle')
3434

3535
android {
36-
buildToolsVersion rootProject.ext.buildToolsVersion
36+
buildToolsVersion FrescoConfig.buildToolsVersion
3737
compileSdkVersion rootProject.ext.compileSdkVersion
3838

3939
defaultConfig {

drawee-backends/drawee-volley/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
apply from: rootProject.file('release.gradle')
2121

2222
android {
23-
buildToolsVersion rootProject.ext.buildToolsVersion
23+
buildToolsVersion FrescoConfig.buildToolsVersion
2424
compileSdkVersion rootProject.ext.compileSdkVersion
2525

2626
defaultConfig {

drawee-span/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
apply from: rootProject.file('release.gradle')
3131

3232
android {
33-
buildToolsVersion rootProject.ext.buildToolsVersion
33+
buildToolsVersion FrescoConfig.buildToolsVersion
3434
compileSdkVersion rootProject.ext.compileSdkVersion
3535

3636
defaultConfig {

drawee/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
apply from: rootProject.file('release.gradle')
3737

3838
android {
39-
buildToolsVersion rootProject.ext.buildToolsVersion
39+
buildToolsVersion FrescoConfig.buildToolsVersion
4040
compileSdkVersion rootProject.ext.compileSdkVersion
4141

4242
defaultConfig {

fbcore/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ apply from: rootProject.file('release.gradle')
3535

3636

3737
android {
38-
buildToolsVersion rootProject.ext.buildToolsVersion
38+
buildToolsVersion FrescoConfig.buildToolsVersion
3939
compileSdkVersion rootProject.ext.compileSdkVersion
4040

4141
useLibrary 'org.apache.http.legacy'

gradle.properties

-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ GROUP=com.facebook.fresco
2626
android.useAndroidX=true
2727
android.enableJetifier=true
2828

29-
# Deps for Gradle
30-
BUILD_TOOLS_VERSION=28.0.3
31-
3229
# SDK versions
3330
MIN_SDK_VERSION=9
3431
SAMPLES_MIN_SDK_VERSION=15
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Fri Mar 27 12:36:43 GMT 2020
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

imagepipeline-backends/imagepipeline-okhttp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies {
2424
apply from: rootProject.file('release.gradle')
2525

2626
android {
27-
buildToolsVersion rootProject.ext.buildToolsVersion
27+
buildToolsVersion FrescoConfig.buildToolsVersion
2828
compileSdkVersion rootProject.ext.compileSdkVersion
2929

3030
defaultConfig {

imagepipeline-backends/imagepipeline-okhttp3/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies {
2424
apply from: rootProject.file('release.gradle')
2525

2626
android {
27-
buildToolsVersion rootProject.ext.buildToolsVersion
27+
buildToolsVersion FrescoConfig.buildToolsVersion
2828
compileSdkVersion rootProject.ext.compileSdkVersion
2929

3030
defaultConfig {

imagepipeline-backends/imagepipeline-volley/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
apply from: rootProject.file('release.gradle')
2222

2323
android {
24-
buildToolsVersion rootProject.ext.buildToolsVersion
24+
buildToolsVersion FrescoConfig.buildToolsVersion
2525
compileSdkVersion rootProject.ext.compileSdkVersion
2626

2727
defaultConfig {

imagepipeline-base-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ apply from: rootProject.file('release.gradle')
2323

2424
android {
2525

26-
buildToolsVersion rootProject.ext.buildToolsVersion
26+
buildToolsVersion FrescoConfig.buildToolsVersion
2727
compileSdkVersion rootProject.ext.compileSdkVersion
2828

2929
defaultConfig {

imagepipeline-base/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ apply from: rootProject.file('release.gradle')
4040

4141
android {
4242

43-
buildToolsVersion rootProject.ext.buildToolsVersion
43+
buildToolsVersion FrescoConfig.buildToolsVersion
4444
compileSdkVersion rootProject.ext.compileSdkVersion
4545

4646
defaultConfig {

imagepipeline-native/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
['imagepipeline', []],
4343
['memchunk', []]]
4444

45-
buildToolsVersion rootProject.ext.buildToolsVersion
45+
buildToolsVersion FrescoConfig.buildToolsVersion
4646
compileSdkVersion rootProject.ext.compileSdkVersion
4747

4848
defaultConfig {

imagepipeline-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ apply from: rootProject.file('release.gradle')
3636

3737
android {
3838

39-
buildToolsVersion rootProject.ext.buildToolsVersion
39+
buildToolsVersion FrescoConfig.buildToolsVersion
4040
compileSdkVersion rootProject.ext.compileSdkVersion
4141

4242
defaultConfig {

imagepipeline/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies {
4747
apply from: rootProject.file('release.gradle')
4848

4949
android {
50-
buildToolsVersion rootProject.ext.buildToolsVersion
50+
buildToolsVersion FrescoConfig.buildToolsVersion
5151
compileSdkVersion rootProject.ext.compileSdkVersion
5252

5353
defaultConfig {

memory-types/ashmem/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
apply from: rootProject.file('release.gradle')
3030

3131
android {
32-
buildToolsVersion rootProject.ext.buildToolsVersion
32+
buildToolsVersion FrescoConfig.buildToolsVersion
3333
compileSdkVersion rootProject.ext.compileSdkVersion
3434

3535
defaultConfig {

memory-types/nativememory/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
apply from: rootProject.file('release.gradle')
3535

3636
android {
37-
buildToolsVersion rootProject.ext.buildToolsVersion
37+
buildToolsVersion FrescoConfig.buildToolsVersion
3838
compileSdkVersion rootProject.ext.compileSdkVersion
3939

4040
defaultConfig {

memory-types/simple/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
apply from: rootProject.file('release.gradle')
3131

3232
android {
33-
buildToolsVersion rootProject.ext.buildToolsVersion
33+
buildToolsVersion FrescoConfig.buildToolsVersion
3434
compileSdkVersion rootProject.ext.compileSdkVersion
3535

3636
defaultConfig {

native-filters/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ android {
5252
['filters', []],
5353
['native-filters', []]]
5454

55-
buildToolsVersion rootProject.ext.buildToolsVersion
55+
buildToolsVersion FrescoConfig.buildToolsVersion
5656
compileSdkVersion rootProject.ext.compileSdkVersion
5757

5858
defaultConfig {

native-imagetranscoder/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ android {
5353
def ndkLibs = [
5454
['native-imagetranscoder', [copyLibjpeg]]]
5555

56-
buildToolsVersion rootProject.ext.buildToolsVersion
56+
buildToolsVersion FrescoConfig.buildToolsVersion
5757
compileSdkVersion rootProject.ext.compileSdkVersion
5858

5959
defaultConfig {

samples/animation2/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
}
2222

2323
android {
24-
buildToolsVersion rootProject.ext.buildToolsVersion
24+
buildToolsVersion FrescoConfig.buildToolsVersion
2525
compileSdkVersion rootProject.ext.compileSdkVersion
2626

2727
defaultConfig {

samples/comparison/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
}
4141

4242
android {
43-
buildToolsVersion rootProject.ext.buildToolsVersion
43+
buildToolsVersion FrescoConfig.buildToolsVersion
4444
compileSdkVersion rootProject.ext.compileSdkVersion
4545

4646
useLibrary 'org.apache.http.legacy'

samples/gestures/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
}
2020

2121
android {
22-
buildToolsVersion rootProject.ext.buildToolsVersion
22+
buildToolsVersion FrescoConfig.buildToolsVersion
2323
compileSdkVersion rootProject.ext.compileSdkVersion
2424

2525
defaultConfig {

samples/kotlin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'kotlin-android'
1212
apply plugin: 'kotlin-android-extensions'
1313

1414
android {
15-
buildToolsVersion rootProject.ext.buildToolsVersion
15+
buildToolsVersion FrescoConfig.buildToolsVersion
1616
compileSdkVersion rootProject.ext.compileSdkVersion
1717

1818
defaultConfig {

samples/scrollperf/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply plugin: 'com.android.application'
99

1010
android {
1111
compileSdkVersion rootProject.ext.compileSdkVersion
12-
buildToolsVersion rootProject.ext.buildToolsVersion
12+
buildToolsVersion FrescoConfig.buildToolsVersion
1313

1414
defaultConfig {
1515
applicationId "com.facebook.samples.scrollperf"

samples/showcase/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'kotlin-android'
1212
apply plugin: 'kotlin-android-extensions'
1313

1414
android {
15-
buildToolsVersion rootProject.ext.buildToolsVersion
15+
buildToolsVersion FrescoConfig.buildToolsVersion
1616
compileSdkVersion rootProject.ext.compileSdkVersion
1717

1818
dexOptions {

samples/zoomable/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
}
2121

2222
android {
23-
buildToolsVersion rootProject.ext.buildToolsVersion
23+
buildToolsVersion FrescoConfig.buildToolsVersion
2424
compileSdkVersion rootProject.ext.compileSdkVersion
2525

2626
defaultConfig {

samples/zoomableapp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
apply plugin: 'com.android.application'
99

1010
android {
11-
buildToolsVersion rootProject.ext.buildToolsVersion
11+
buildToolsVersion FrescoConfig.buildToolsVersion
1212
compileSdkVersion rootProject.ext.compileSdkVersion
1313

1414
defaultConfig {

soloader/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
apply from: rootProject.file('release.gradle')
2222

2323
android {
24-
buildToolsVersion rootProject.ext.buildToolsVersion
24+
buildToolsVersion FrescoConfig.buildToolsVersion
2525
compileSdkVersion rootProject.ext.compileSdkVersion
2626

2727
defaultConfig {

static-webp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737

3838
def ndkLibs = [['static-webp', [copyLibjpeg, copyLibpng, copyLibwebp]]]
3939

40-
buildToolsVersion rootProject.ext.buildToolsVersion
40+
buildToolsVersion FrescoConfig.buildToolsVersion
4141
compileSdkVersion rootProject.ext.compileSdkVersion
4242

4343
defaultConfig {

tools/flipper/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
apply from: rootProject.file('release.gradle')
2626

2727
android {
28-
buildToolsVersion rootProject.ext.buildToolsVersion
28+
buildToolsVersion FrescoConfig.buildToolsVersion
2929
compileSdkVersion rootProject.ext.compileSdkVersion
3030

3131
defaultConfig {

tools/stetho/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
apply from: rootProject.file('release.gradle')
2929

3030
android {
31-
buildToolsVersion rootProject.ext.buildToolsVersion
31+
buildToolsVersion FrescoConfig.buildToolsVersion
3232
compileSdkVersion rootProject.ext.compileSdkVersion
3333

3434
defaultConfig {

ui-common/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'maven'
1111
apply from: rootProject.file('release.gradle')
1212

1313
android {
14-
buildToolsVersion rootProject.ext.buildToolsVersion
14+
buildToolsVersion FrescoConfig.buildToolsVersion
1515
compileSdkVersion rootProject.ext.compileSdkVersion
1616

1717
defaultConfig {

vito/core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
}
4141

4242
android {
43-
buildToolsVersion rootProject.ext.buildToolsVersion
43+
buildToolsVersion FrescoConfig.buildToolsVersion
4444
compileSdkVersion rootProject.ext.compileSdkVersion
4545

4646
defaultConfig {

vito/drawee-support/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
}
2626

2727
android {
28-
buildToolsVersion rootProject.ext.buildToolsVersion
28+
buildToolsVersion FrescoConfig.buildToolsVersion
2929
compileSdkVersion rootProject.ext.compileSdkVersion
3030

3131
defaultConfig {

0 commit comments

Comments
 (0)