Commit d30d7899 authored by Lisa (AI Assistant)'s avatar Lisa (AI Assistant)

fix: sign debug apk for device install

parent 80e0f000
Pipeline #329 failed with stages
...@@ -11,8 +11,23 @@ android { ...@@ -11,8 +11,23 @@ android {
applicationId = "net.nexlab.hermesnodeandroid" applicationId = "net.nexlab.hermesnodeandroid"
minSdk = 26 minSdk = 26
targetSdk = 35 targetSdk = 35
versionCode = 1 versionCode = 2
versionName = "0.1.0" versionName = "0.1.1"
}
signingConfigs {
getByName("debug") {
storeFile = rootProject.file("debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}
buildTypes {
getByName("debug") {
signingConfig = signingConfigs.getByName("debug")
}
} }
compileOptions { compileOptions {
......
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