Commit d828de11 authored by wanglei's avatar wanglei

...

parent 9d15a298
...@@ -24,6 +24,16 @@ android { ...@@ -24,6 +24,16 @@ android {
} }
setProperty("archivesBaseName", "pdf-v${System.currentTimeMillis().toFormatTime3()}") setProperty("archivesBaseName", "pdf-v${System.currentTimeMillis().toFormatTime3()}")
signingConfigs {
create("release") {
storeFile = file("../smartcl.jks")
storePassword = "123456"
keyAlias = "key0"
keyPassword = "123456"
}
}
// ndk { // ndk {
// abiFilters.add("arm64-v8a") // abiFilters.add("arm64-v8a")
...@@ -41,6 +51,7 @@ android { ...@@ -41,6 +51,7 @@ android {
release { release {
isMinifyEnabled = false isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
signingConfig = signingConfigs.getByName("release")
} }
} }
compileOptions { compileOptions {
...@@ -82,10 +93,8 @@ dependencies { ...@@ -82,10 +93,8 @@ dependencies {
//Word库 //Word库
//PPT库 //PPT库
api(project(":library"))
//Excel库 //Excel库
api(project(":library"))
} }
\ No newline at end of file
File added
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