Unify syntax in build.gradle

This commit is contained in:
Dominik Schürmann
2017-02-01 19:32:28 +01:00
parent 0fcdc3df58
commit 2b9144a863

View File

@@ -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
}
}