Skip to content

Commit

Permalink
发布构建修复
Browse files Browse the repository at this point in the history
  • Loading branch information
StArrayJaN committed Oct 21, 2023
1 parent dc00191 commit 8662dc6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ android {
compileSdkVersion 30
buildToolsVersion '30.0.2'
namespace "thercn.wmw"

signingConfigs {
release {
storeFile file('thercn.jks')
storePassword 'thercn'
keyAlias 'thercn'
keyPassword 'thercn'
}
}
defaultConfig {
applicationId "thercn.wmw"
minSdkVersion 19
Expand All @@ -15,6 +22,7 @@ android {

buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
Expand All @@ -28,6 +36,9 @@ android {
jniLibs.srcDirs = ['libs']
}
}
lintOptions {
checkReleaseBuilds false
}
}
repositories {
maven {
Expand Down
Binary file added app/thercn.jks
Binary file not shown.

0 comments on commit 8662dc6

Please sign in to comment.