File tree 13 files changed +73
-42
lines changed
13 files changed +73
-42
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ object Config {
2
2
const val minSdk = 15
3
3
const val compileSdk = 34
4
4
const val targetSdk = 34
5
+ const val buildToolsVersion = " 35.0.0"
5
6
}
6
7
7
8
object Versions {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ dependencies {
33
33
}
34
34
35
35
android {
36
- buildToolsVersion = " 35.0.0 "
36
+ buildToolsVersion = Config .buildToolsVersion
37
37
namespace = " com.facebook.applinks"
38
38
compileSdk = Config .compileSdk
39
39
@@ -44,7 +44,10 @@ android {
44
44
consumerProguardFiles(" proguard-rules.pro" )
45
45
}
46
46
47
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
47
+ sourceSets {
48
+ getByName(" test" )
49
+ { java.srcDir(" src/test/kotlin" ) }
50
+ }
48
51
49
52
buildTypes {
50
53
getByName(" release" ) {
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ dependencies {
50
50
}
51
51
52
52
android {
53
- buildToolsVersion = " 35.0.0 "
53
+ buildToolsVersion = Config .buildToolsVersion
54
54
namespace = " com.facebook.bolts"
55
55
compileSdk = Config .compileSdk
56
56
@@ -63,11 +63,11 @@ android {
63
63
64
64
buildTypes {
65
65
getByName(" debug" ) {
66
- isTestCoverageEnabled = true
66
+ enableUnitTestCoverage = true
67
67
}
68
68
}
69
69
70
- lintOptions { isAbortOnError = false }
70
+ lint { abortOnError = false }
71
71
72
72
compileOptions {
73
73
sourceCompatibility(JavaVersion .VERSION_1_8 )
@@ -81,7 +81,10 @@ android {
81
81
}
82
82
}
83
83
84
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
84
+ sourceSets {
85
+ getByName(" test" )
86
+ { java.srcDir(" src/test/kotlin" ) }
87
+ }
85
88
86
89
if (System .getenv(" SANDCASTLE" ) == " 1" ) {
87
90
testOptions {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ dependencies {
60
60
}
61
61
62
62
android {
63
- buildToolsVersion = " 35.0.0 "
63
+ buildToolsVersion = Config .buildToolsVersion
64
64
namespace = " com.facebook.common"
65
65
compileSdk = Config .compileSdk
66
66
@@ -73,9 +73,9 @@ android {
73
73
multiDexEnabled = true
74
74
}
75
75
76
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
76
+ androidResources { additionalParameters(" --no-version-vectors" ) }
77
77
78
- lintOptions { isAbortOnError = false }
78
+ lint { abortOnError = false }
79
79
80
80
compileOptions {
81
81
sourceCompatibility(JavaVersion .VERSION_1_8 )
@@ -89,10 +89,13 @@ android {
89
89
unitTests.isIncludeAndroidResources = true
90
90
}
91
91
92
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
92
+ sourceSets {
93
+ getByName(" test" )
94
+ { java.srcDir(" src/test/kotlin" ) }
95
+ }
93
96
94
97
buildTypes {
95
- getByName(" debug" ) { isTestCoverageEnabled = true }
98
+ getByName(" debug" ) { enableUnitTestCoverage = true }
96
99
getByName(" release" ) {
97
100
isMinifyEnabled = false
98
101
proguardFiles(getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro" )
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ dependencies {
59
59
}
60
60
61
61
android {
62
- buildToolsVersion = " 35.0.0 "
62
+ buildToolsVersion = Config .buildToolsVersion
63
63
namespace = " com.facebook.core"
64
64
compileSdk = Config .compileSdk
65
65
@@ -73,11 +73,11 @@ android {
73
73
74
74
buildTypes {
75
75
getByName(" debug" ) {
76
- isTestCoverageEnabled = true
76
+ enableUnitTestCoverage = true
77
77
}
78
78
}
79
79
80
- lintOptions { isAbortOnError = false }
80
+ lint { abortOnError = false }
81
81
82
82
compileOptions {
83
83
sourceCompatibility(JavaVersion .VERSION_1_8 )
@@ -106,7 +106,10 @@ android {
106
106
}
107
107
}
108
108
}
109
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
109
+ sourceSets {
110
+ getByName(" test" )
111
+ { java.srcDir(" src/test/kotlin" ) }
112
+ }
110
113
111
114
if (System .getenv(" SANDCASTLE" ) == " 1" ) {
112
115
testOptions {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ dependencies {
55
55
}
56
56
57
57
android {
58
- buildToolsVersion = " 35.0.0 "
58
+ buildToolsVersion = Config .buildToolsVersion
59
59
namespace = " com.facebook.gamingservices"
60
60
compileSdk = Config .compileSdk
61
61
@@ -67,17 +67,17 @@ android {
67
67
vectorDrawables.useSupportLibrary = true
68
68
}
69
69
70
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
70
+ androidResources { additionalParameters(" --no-version-vectors" ) }
71
71
72
- lintOptions { isAbortOnError = false }
72
+ lint { abortOnError = false }
73
73
74
74
compileOptions {
75
75
sourceCompatibility(JavaVersion .VERSION_1_8 )
76
76
targetCompatibility(JavaVersion .VERSION_1_8 )
77
77
}
78
78
79
79
buildTypes {
80
- getByName(" debug" ) { isTestCoverageEnabled = true }
80
+ getByName(" debug" ) { enableUnitTestCoverage = true }
81
81
getByName(" release" ) {
82
82
isMinifyEnabled = false
83
83
proguardFiles(getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro" )
@@ -98,7 +98,10 @@ android {
98
98
}
99
99
}
100
100
101
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
101
+ sourceSets {
102
+ getByName(" test" )
103
+ { java.srcDir(" src/test/kotlin" ) }
104
+ }
102
105
103
106
if (System .getenv(" SANDCASTLE" ) == " 1" ) {
104
107
testOptions {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ dependencies {
35
35
}
36
36
37
37
android {
38
- buildToolsVersion = " 35.0.0 "
38
+ buildToolsVersion = Config .buildToolsVersion
39
39
namespace = " com.facebook.login"
40
40
compileSdk = Config .compileSdk
41
41
@@ -47,16 +47,19 @@ android {
47
47
vectorDrawables.useSupportLibrary = true
48
48
}
49
49
50
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
50
+ androidResources { additionalParameters(" --no-version-vectors" ) }
51
51
52
- lintOptions { isAbortOnError = false }
52
+ lint { abortOnError = false }
53
53
54
54
compileOptions {
55
55
sourceCompatibility(JavaVersion .VERSION_1_8 )
56
56
targetCompatibility(JavaVersion .VERSION_1_8 )
57
57
}
58
58
59
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
59
+ sourceSets {
60
+ getByName(" test" )
61
+ { java.srcDir(" src/test/kotlin" ) }
62
+ }
60
63
61
64
buildTypes {
62
65
getByName(" release" ) {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ dependencies {
30
30
}
31
31
32
32
android {
33
- buildToolsVersion = " 35.0.0 "
33
+ buildToolsVersion = Config .buildToolsVersion
34
34
namespace = " com.facebook.messenger"
35
35
compileSdk = Config .compileSdk
36
36
@@ -42,16 +42,19 @@ android {
42
42
vectorDrawables.useSupportLibrary = true
43
43
}
44
44
45
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
45
+ androidResources { additionalParameters(" --no-version-vectors" ) }
46
46
47
- lintOptions { isAbortOnError = false }
47
+ lint { abortOnError = false }
48
48
49
49
compileOptions {
50
50
sourceCompatibility(JavaVersion .VERSION_1_8 )
51
51
targetCompatibility(JavaVersion .VERSION_1_8 )
52
52
}
53
53
54
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
54
+ sourceSets {
55
+ getByName(" test" )
56
+ { java.srcDir(" src/test/kotlin" ) }
57
+ }
55
58
56
59
buildTypes {
57
60
getByName(" release" ) {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ dependencies {
32
32
}
33
33
34
34
android {
35
- buildToolsVersion = " 35.0.0 "
35
+ buildToolsVersion = Config .buildToolsVersion
36
36
namespace = " com.facebook.share"
37
37
compileSdk = Config .compileSdk
38
38
@@ -44,16 +44,19 @@ android {
44
44
vectorDrawables.useSupportLibrary = true
45
45
}
46
46
47
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
47
+ androidResources { additionalParameters(" --no-version-vectors" ) }
48
48
49
- lintOptions { isAbortOnError = false }
49
+ lint { abortOnError = false }
50
50
51
51
compileOptions {
52
52
sourceCompatibility(JavaVersion .VERSION_1_8 )
53
53
targetCompatibility(JavaVersion .VERSION_1_8 )
54
54
}
55
55
56
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
56
+ sourceSets {
57
+ getByName(" test" )
58
+ { java.srcDir(" src/test/kotlin" ) }
59
+ }
57
60
58
61
buildTypes {
59
62
getByName(" release" ) {
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ dependencies {
50
50
}
51
51
52
52
android {
53
- buildToolsVersion = " 35.0.0 "
53
+ buildToolsVersion = Config .buildToolsVersion
54
54
namespace = " com.facebook"
55
55
compileSdk = Config .compileSdk
56
56
@@ -61,11 +61,14 @@ android {
61
61
vectorDrawables.useSupportLibrary = true
62
62
}
63
63
64
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
64
+ androidResources { additionalParameters(" --no-version-vectors" ) }
65
65
66
- lintOptions { isAbortOnError = false }
66
+ lint { abortOnError = false }
67
67
68
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
68
+ sourceSets {
69
+ getByName(" test" )
70
+ { java.srcDir(" src/test/kotlin" ) }
71
+ }
69
72
70
73
compileOptions {
71
74
sourceCompatibility(JavaVersion .VERSION_1_8 )
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ dependencies {
62
62
}
63
63
64
64
android {
65
- buildToolsVersion = " 35.0.0 "
65
+ buildToolsVersion = Config .buildToolsVersion
66
66
namespace = " com.facebook"
67
67
compileSdk = Config .compileSdk
68
68
@@ -74,9 +74,9 @@ android {
74
74
vectorDrawables.useSupportLibrary = true
75
75
}
76
76
77
- aaptOptions { additionalParameters(" --no-version-vectors" ) }
77
+ androidResources { additionalParameters(" --no-version-vectors" ) }
78
78
79
- lintOptions { isAbortOnError = false }
79
+ lint { abortOnError = false }
80
80
81
81
compileOptions {
82
82
sourceCompatibility(JavaVersion .VERSION_1_8 )
@@ -90,7 +90,10 @@ android {
90
90
}
91
91
}
92
92
93
- sourceSets { named(" test" ) { java.srcDir(" src/test/kotlin" ) } }
93
+ sourceSets {
94
+ getByName(" test" )
95
+ { java.srcDir(" src/test/kotlin" ) }
96
+ }
94
97
95
98
if (System .getenv(" SANDCASTLE" ) == " 1" ) {
96
99
testOptions {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ apply plugin: 'com.android.application'
10
10
apply plugin : ' kotlin-android'
11
11
12
12
android {
13
- buildToolsVersion = " 35.0.0 "
13
+ buildToolsVersion = Config . buildToolsVersion
14
14
namespace = " com.facebook.fbloginsample"
15
15
compileSdkVersion(31 )
16
16
defaultConfig {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ dependencies {
15
15
}
16
16
17
17
android {
18
- buildToolsVersion = " 35.0.0 "
18
+ buildToolsVersion = Config . buildToolsVersion
19
19
namespace = " com.example.hellofacebook"
20
20
compileSdkVersion(31 )
21
21
You can’t perform that action at this time.
0 commit comments