Skip to content

Commit 29ddc0b

Browse files
committed
Add signing config for relwithdebinfo
1 parent da436c8 commit 29ddc0b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

custom/android/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,15 @@ android {
8282
noCompress 'rcc'
8383
}
8484

85+
signingConfigs {
86+
debug {
87+
storeFile file('debug.keystore')
88+
storePassword 'android'
89+
keyAlias 'androiddebugkey'
90+
keyPassword 'android'
91+
}
92+
}
93+
8594
defaultConfig {
8695
resConfig "en"
8796
minSdkVersion qtMinSdkVersion
@@ -100,6 +109,12 @@ android {
100109
println "versionName: ${versionName}"
101110
}
102111

112+
buildTypes {
113+
release {
114+
signingConfig signingConfigs.debug
115+
}
116+
}
117+
103118
println "timestamp: " + getTimestampStr()
104119
println "androidCompileSdkVersion: ${compileSdkVersion}"
105120
println "androidBuildToolsVersion: ${buildToolsVersion}"

0 commit comments

Comments
 (0)