-
Notifications
You must be signed in to change notification settings - Fork 203
/
gradle.properties
57 lines (44 loc) · 2.11 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 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
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useDeprecatedNdk = true
android.useAndroidX=true
android.enableJetifier=false
## scene library dependency
MIN_SDK_VERSION = 21
TARGET_SDK_VERSION = 30
COMPILE_SDK_VERSION = 30
KOTLIN_LIB = org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.21
KOTLIN_PLUGIN = org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21
ANDROID_GRADLE_PLUGIN = com.android.tools.build:gradle:3.6.0
APPCOMPAT_LIB = androidx.appcompat:appcompat:1.0.0
CORE_LIB = androidx.core:core:1.5.0
LIFECYCLE_RUNTIME_LIB = androidx.lifecycle:lifecycle-runtime:2.3.1
LIFECYCLE_VIEWMODEL_LIB = androidx.lifecycle:lifecycle-viewmodel:2.3.1
LIFECYCLE_EXTENSIONS_LIB = androidx.lifecycle:lifecycle-extensions:2.0.0
TRANSITION_SUPPORT_LIB = androidx.transition:transition:1.0.0
DESIGN_LIB = com.google.android.material:material:1.0.0
ANNOTATION_LIB = androidx.annotation:annotation:1.0.0
SAVED_STATE_LIB = androidx.savedstate:savedstate:1.1.0
INTERPOLATOR_LIB = androidx.interpolator:interpolator:1.0.0
## unit test dependency
android.enableUnitTestBinaryResources=true
android.jetifier.blacklist=bcprov
ROBOLECTRIC = org.robolectric:robolectric:4.12.2
AUTO_SERVICE = com.google.auto.service:auto-service:1.0-rc4
JUNIT = junit:junit:4.13.2
TRUCH = com.google.truth:truth:1.1.3
## demo dependency
SAMPLE_APPCOMPAT_LIB = androidx.appcompat:appcompat:1.3.0
RECYCLERVIEW_LIB = androidx.recyclerview:recyclerview:1.0.0
GLIDE_LIB = com.github.bumptech.glide:glide:4.12.0