-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.gradle
44 lines (40 loc) · 1.27 KB
/
config.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
ext {
//Android编译SDK版本
compileSdkVersion = 32
//Android编译工具版本
buildToolsVersion = "32.0.0"
//Lib 最低适配Android 版本
libMinSdkVersion = 16
//APK 最低适配Android 版本
appMinSdkVersion = 23
//Android 最佳适配Android 版本
targetSdkVersion = 30
//版本号,正式版本会由自动构建替换
versionCode = 1
//版本名,正式版本会由自动构建替换
versionName = "1.0.0"
//Android 构建包时是否混淆代码
minifyEnabled = true
// 所有的CPU 类型
ndk_abiFilters_all = "armeabi,x86,x86_64,armeabi-v7a,arm64-v8a"
// 当前项目支持的CPU类型
ndk_abiFilters_project = "armeabi-v7a,arm64-v8a"
// 项目使用到的so
pickFirstList = ['libc++_shared.so']
excludeList = [
'META-INF/*.kotlin_module',
'META-INF/proguard/androidx-annotations.pro',
'META-INF/proguard/coroutines.pro'
]
//签名信息
signingConfigs = [
keyAlias : 'androiddebugkey',
keyPassword : 'android',
storeFile : "./../debug.keystore",
storePassword : 'android',
v1SigningEnabled: true,
v2SigningEnabled: true,
]
//使用kotlin版本
kotlin_version = '1.7.10'
}