-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
41 lines (35 loc) · 1.63 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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=-Xmx2048m -Dfile.encoding=UTF-8
# -------Kotlin--------
kotlin.code.style=official
kapt.use.worker.api=false
# Enable Compile Avoidance, which skips annotation processing if only method bodies are changed in dependencies
# To turn on Compile Avoidance we need to turn off AP discovery in compile path.
kapt.include.compile.classpath=false
kotlinVersion=1.7.10
# -------Android-------
android.useAndroidX=true
android.enableJetifier=true
# Versions must be changed togeher
#https://developer.android.com/studio/releases/gradle-plugin
agpVersion=7.2.1
agpCoordinates=com.android.tools.build:gradle:7.2.1
navigationVersion=2.3.5
navigationCoordinates=androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5
androidJUnit5Version=1.7.1.1
androidJnit5Coordinates=de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1
agpHiltVersion=2.43
agpHiltCoordinates=com.google.dagger:hilt-android-gradle-plugin:2.43
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
ktlintGradleVersion=10.3.0
detektVersion=1.21.0