We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da436c8 commit 29ddc0bCopy full SHA for 29ddc0b
custom/android/build.gradle
@@ -82,6 +82,15 @@ android {
82
noCompress 'rcc'
83
}
84
85
+ signingConfigs {
86
+ debug {
87
+ storeFile file('debug.keystore')
88
+ storePassword 'android'
89
+ keyAlias 'androiddebugkey'
90
+ keyPassword 'android'
91
+ }
92
93
+
94
defaultConfig {
95
resConfig "en"
96
minSdkVersion qtMinSdkVersion
@@ -100,6 +109,12 @@ android {
100
109
println "versionName: ${versionName}"
101
110
102
111
112
+ buildTypes {
113
+ release {
114
+ signingConfig signingConfigs.debug
115
116
117
103
118
println "timestamp: " + getTimestampStr()
104
119
println "androidCompileSdkVersion: ${compileSdkVersion}"
105
120
println "androidBuildToolsVersion: ${buildToolsVersion}"
0 commit comments