-
Notifications
You must be signed in to change notification settings - Fork 28
/
zinc_dexOptions.gradle
65 lines (53 loc) · 2 KB
/
zinc_dexOptions.gradle
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
56
57
58
59
60
61
62
63
64
65
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "29.0.1"
defaultConfig {
applicationId "com.zinc.gradlestudy"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
// 开启 dex 分包
multiDexEnabled true
// 设置将需要保存至主dex的文件
multiDexKeepFile file('keep/keep_in_main_dex.txt')
}
}
dexOptions {
// 可以使用 "dx --help" 进行查看
// 例如:dex 的 分包 [--multi-dex [--main-dex-list=<file> [--minimal-main-dex]]
// dex 的 分包需要达到65,而如果设置了--minimal-main-dex ,则会让 proguardFile 设置的文件放进主dex文件
// 1. multiDexEnabled --> --multi-dex
// 2. proguardFile --> --main-dex-list=<file>
additionalParameters '--minimal-main-dex'
// 设置运行内存
javaMaxHeapSize '2048m'
// 大模式
jumboMode true
// 是否保存 被运行时注解的类 保存至主dex
keepRuntimeAnnotatedClasses false
// 最大进程数 默认为4
maxProcessCount 4
// 线程数
threadCount 4
// 预编译 dex lib,在我们build的时候会快些,但clean时便会慢,默认开启
preDexLibraries true
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}