Skip to content

Commit b6abcef

Browse files
committed
feat(keystore): upload keystore which is getting from CA
1 parent e2d4478 commit b6abcef

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

app/build.gradle

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,27 @@ dependencies {
1515

1616
android {
1717
compileSdkVersion 25
18-
buildToolsVersion "25.0.2"
18+
buildToolsVersion "25.0.3"
1919

2020
signingConfigs {
21+
release {
22+
storeFile rootProject.file("keystore/Android.keystore")
23+
storePassword 'Wangpeiming110'
24+
keyAlias 'android.keystore'
25+
keyPassword 'Wangpeiming110'
26+
}
27+
2128
debug {
2229
storeFile rootProject.file("keystore/debug.keystore")
2330
}
2431
}
2532

33+
signingConfigs {
34+
debug {
35+
36+
}
37+
}
38+
2639
defaultConfig {
2740
applicationId "com.tinkerpatch.easy_sample"
2841
minSdkVersion 15

app/tinkerpatch.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import java.util.regex.Pattern
66
* TODO: 请按自己的需求修改为适应自己工程的参数
77
*/
88
def bakPath = file("${buildDir}/bakApk/")
9-
def baseInfo = "app-3.0.1-0524-18-09-33"
10-
def variantName = "debug"
9+
def baseInfo = "app-3.0.1-0717-19-33-38"
10+
def variantName = "release"
1111

1212
/**
1313
* 对于插件各参数的详细解析请参考

keystore/Android.keystore

4.65 KB
Binary file not shown.

0 commit comments

Comments
 (0)