我想知道是否可以在我的gradle文件的DefaultConfig中使用versionName变量:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "app"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
在我的gitlab-ci文件中:
stages:
- build
release:
stage: build
only:
- release
script:
- ./gradlew assembleRelease
# Here I need to use the value of versionName in my gradle file.
有一种简单的方法吗?
答案 0 :(得分:3)
我最终使用gitlab-ci文件中的命令行脚本执行此操作:
export VERSION = $(grep -E "versionName " app/build.gradle | cut -d "\"" -f2)
这样我可以在文件中使用$ VERSION访问versionName。