-
Notifications
You must be signed in to change notification settings - Fork 28
/
zinc_aaptOptions.gradle
62 lines (51 loc) · 2.03 KB
/
zinc_aaptOptions.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
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'
}
}
// 资源合并优先级:
// Variant(helloDebug) > buildType(Debug) > zinc_flavor(hello) > (main > aapt -S) > dependencies
// aapt 编译资源文件
// 命令行通过 aapt 可以查看可输入的
// https://developer.android.com/studio/command-line/aapt2
aaptOptions{
// // aapt 执行的额外参数
// // --rename-manifest-package 更改包名
// additionalParameters '--rename-manifest-package','com.zinc.test'
// additionalParameters '-R', 'src/main/res2/', '--auto-add-overlay'
// additionalParameters '-v'
// 对 png 进行优化检查
// cruncherEnabled false
// failOnMissingConfigEntry true
// cruncherProcesses 4
// 忽略掉 png 后缀的图像,只会排除 assets 下的资源,res下的资源不会排除
// ignoreAssets "*.png"
// ignoreAssetsPattern '*.png'
// 是否对资源进行压缩,如果传入'',则表明不会进行压缩,默认不对"jpg"、"png"压缩
// aapt l -v apk路径 进行查看
// noCompress ''
// 不对 bat 进行压缩
// noCompress '.bat'
}
}
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'
}