Commit 7cc76e04 by sikang

add walle

parent ae5ba663
apply plugin: 'walle'
walle {
// 指定渠道包的输出路径
apkOutputFolder = new File("${project.buildDir}/outputs/channels")
// 定制渠道包的APK的文件名称
apkFileNameFormat = '${packageName}_${channel}.apk'
// 渠道配置文件
channelFile = new File("${project.getProjectDir()}/channel")
}
defaultTasks 'clean', 'resguardAppProductWebsiteRelease'
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
// classpath 'com.google.gms:google-services:4.0.1'
// classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
// classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.5.4"
}
}
defaultTasks 'clean', 'assembleAppProductWebsiteReleaseChannels'
ext {
// sdk & tools
......
......@@ -25,4 +25,4 @@ sed -i "" "s#^signging_certificatePassword=.*#signging_certificatePassword=${cer
sed -i "" "s#^signging_storePassword=.*#signging_storePassword=${storePassword}#g" gradle.properties
echo "ready to create new kestore ${alias}"
keytool -genkey -alias "${alias}" -keyalg RSA -validity 20000 -keystore jks/"${alias}".keystore
\ No newline at end of file
keytool -genkey -alias "${alias}" -keypass "${alias}" -storepass "${alias}" -dname "CN=Unknown, OU=Unknown, O=Unknown, L=Unknown, ST=Unknown, C=Unknown" -keyalg RSA -validity 20000 -keystore jks/"${alias}".keystore
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment