Unify syntax in build.gradle
This commit is contained in:
@@ -149,8 +149,6 @@ dependencyVerification {
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
@@ -288,15 +286,15 @@ android {
|
||||
}
|
||||
|
||||
dexOptions {
|
||||
preDexLibraries = true
|
||||
preDexLibraries true
|
||||
// dexInProcess requires much RAM, which is not available on all dev systems
|
||||
dexInProcess = false
|
||||
jumboMode = true
|
||||
dexInProcess false
|
||||
jumboMode true
|
||||
javaMaxHeapSize "2g"
|
||||
}
|
||||
|
||||
dataBinding {
|
||||
enabled = true
|
||||
enabled true
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
@@ -333,8 +331,8 @@ task jacocoTestReport(type:JacocoReport, dependsOn: "testFdroidDebugWithTestCove
|
||||
executionData = fileTree(dir: "${buildDir}/jacoco", include: "**/*.exec")
|
||||
|
||||
reports {
|
||||
xml.enabled = true
|
||||
html.enabled = true
|
||||
xml.enabled true
|
||||
html.enabled true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user