Improve build times for local builds (#4655)

improve
This commit is contained in:
AwkwardPeak7 2024-08-25 07:44:42 +05:00 committed by GitHub
parent b4b86e70b4
commit e0b8976aeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 4 deletions

View File

@ -1,12 +1,14 @@
# Editor configuration, see https://editorconfig.org
root = true
[*]
insert_final_newline = true
end_of_line = lf
[*.kt]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true
@ -15,5 +17,3 @@ ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
[*.properties]
charset = utf-8
end_of_line = lf
insert_final_newline = true

View File

@ -9,6 +9,7 @@ assert !ext.has("libVersion")
assert extName.chars().max().asInt < 0x180 : "Extension name should be romanized"
Project theme = ext.has("themePkg") ? project(":lib-multisrc:$themePkg") : null
if (theme != null) evaluationDependsOn(theme.path)
android {
compileSdk AndroidConfig.compileSdk

View File

@ -25,3 +25,5 @@ android.useAndroidX=true
android.enableBuildConfigAsBytecode=true
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
org.gradle.configureondemand=true