File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ android {
19
19
defaultConfig {
20
20
applicationId " org.mozilla.reference.browser"
21
21
minSdkVersion Config . minSdkVersion
22
- compileSdk Config . compileSdkVersion
22
+ compileSdk = Config . compileSdkVersion
23
23
targetSdkVersion Config . targetSdkVersion
24
24
versionCode 1
25
25
versionName Config . generateDebugVersionName()
@@ -43,8 +43,8 @@ android {
43
43
}
44
44
45
45
buildFeatures {
46
- buildConfig true
47
- compose true
46
+ buildConfig = true
47
+ compose = true
48
48
}
49
49
50
50
buildTypes {
@@ -68,12 +68,12 @@ android {
68
68
}
69
69
70
70
testOptions {
71
- execution ' ANDROIDX_TEST_ORCHESTRATOR'
71
+ execution = ' ANDROIDX_TEST_ORCHESTRATOR'
72
72
animationsDisabled = true
73
73
}
74
74
75
75
lintOptions {
76
- lintConfig file(" lint.xml" )
76
+ lintConfig = file(" lint.xml" )
77
77
baseline file(" lint-baseline.xml" )
78
78
disable ' GradleDependency' , ' AndroidGradlePluginVersion'
79
79
}
@@ -84,15 +84,15 @@ android {
84
84
85
85
splits {
86
86
abi {
87
- enable true
87
+ enable = true
88
88
89
89
reset()
90
90
91
91
include " x86" , " armeabi-v7a" , " arm64-v8a" , " x86_64"
92
92
}
93
93
}
94
94
95
- namespace ' org.mozilla.reference.browser'
95
+ namespace = ' org.mozilla.reference.browser'
96
96
}
97
97
98
98
kotlin {
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ allprojects {
47
47
}
48
48
49
49
maven {
50
- name " Mozilla Nightly"
51
- url " https://nightly.maven.mozilla.org/maven2"
50
+ name = " Mozilla Nightly"
51
+ url = " https://nightly.maven.mozilla.org/maven2"
52
52
53
53
content {
54
54
// Always fetch components from the snapshots repository
@@ -57,8 +57,8 @@ allprojects {
57
57
}
58
58
59
59
maven {
60
- name " Mozilla"
61
- url " https://maven.mozilla.org/maven2"
60
+ name = " Mozilla"
61
+ url = " https://maven.mozilla.org/maven2"
62
62
63
63
content {
64
64
// Never fetch components from here. We always want to use snapshots.
@@ -99,8 +99,8 @@ subprojects {
99
99
}
100
100
101
101
lintOptions {
102
- warningsAsErrors true
103
- abortOnError true
102
+ warningsAsErrors = true
103
+ abortOnError = true
104
104
}
105
105
}
106
106
You can’t perform that action at this time.
0 commit comments