65 lines
2.0 KiB
Groovy
65 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply from: '../.winboll/winboll_app_build.gradle'
|
|
apply from: '../.winboll/winboll_lint_build.gradle'
|
|
|
|
def genVersionName(def versionName){
|
|
// 检查编译标志位配置
|
|
assert (winbollBuildProps['stageCount'] != null)
|
|
assert (winbollBuildProps['baseVersion'] != null)
|
|
// 保存基础版本号
|
|
winbollBuildProps.setProperty("baseVersion", "${versionName}");
|
|
//保存编译标志配置
|
|
FileOutputStream fos = new FileOutputStream(winbollBuildPropsFile)
|
|
winbollBuildProps.store(fos, "${winbollBuildPropsDesc}");
|
|
fos.close();
|
|
|
|
// 返回编译版本号
|
|
return "${versionName}." + winbollBuildProps['stageCount']
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
buildToolsVersion "33.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "cc.winboll.studio.jc"
|
|
minSdkVersion 24
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
// versionName 更新后需要手动设置
|
|
// .winboll/winbollBuildProps.properties 文件的 stageCount=0
|
|
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
|
versionName "1.0"
|
|
if(true) {
|
|
versionName = genVersionName("${versionName}")
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
|
|
//implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
|
implementation 'org.bouncycastle:bcprov-jdk15to18:1.69'
|
|
implementation 'org.bouncycastle:bcpkix-jdk15to18:1.69'
|
|
|
|
api project(':libjc')
|
|
api 'androidx.appcompat:appcompat:1.0.0'
|
|
api 'com.google.android.material:material:1.0.0'
|
|
|
|
api 'cc.winboll.studio:libapputils:9.1.0'
|
|
api 'cc.winboll.studio:libappbase:1.0.3'
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|