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