Skip to content

Commit

Permalink
Copy gradle.properties into buildSrc
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Feb 24, 2022
1 parent d3360b9 commit b991d25
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
37 changes: 37 additions & 0 deletions buildSrc/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
####################################################################################################
#### WARNING: Keep gradle.properties and buildSrc/gradle.properties in sync.
#### This is to let Gradle and the IDE reuse the same Gradle daemon.
####################################################################################################

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m

org.gradle.parallel=true
org.gradle.caching=true
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache-problems=warn

org.gradle.vfs.watch=true

android.useAndroidX=true

android.nonTransitiveRClass=true

android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.shaders=false

kotlin.mpp.stability.nowarn=true

# TODO: Remove when https://github.com/gradle/gradle/issues/18935 is fixed.
kotlin.jvm.target.validation.mode=IGNORE
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
####################################################################################################
#### WARNING: Keep gradle.properties and buildSrc/gradle.properties in sync.
#### This is to let Gradle and the IDE reuse the same Gradle daemon.
####################################################################################################

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
Expand Down

0 comments on commit b991d25

Please sign in to comment.