File tree 2 files changed +3
-15
lines changed
2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -119,29 +119,17 @@ android {
119
119
}
120
120
}
121
121
122
- signingConfigs {
123
- create(" default" ) {
124
- keyAlias = " androiddebugkey"
125
- keyPassword = " android"
126
- storePassword = " android"
127
- storeFile = file(" $projectDir /debug.keystore" )
128
- }
129
- }
130
-
131
122
buildTypes {
132
123
debug {
133
124
val debug = " .debug"
134
125
applicationIdSuffix = debug
135
126
versionNameSuffix = debug
136
127
resValue(" string" , " app_name" , " DNSNet Debug" )
137
- signingConfig = signingConfigs.getByName(" default" )
138
128
}
139
129
140
130
release {
141
- signingConfig = if (storeFilePath != null ) {
142
- signingConfigs.getByName(" release" )
143
- } else {
144
- signingConfigs.getByName(" default" )
131
+ if (storeFilePath != null ) {
132
+ signingConfig = signingConfigs.getByName(" release" )
145
133
}
146
134
isMinifyEnabled = true
147
135
proguardFiles(
@@ -159,7 +147,7 @@ android {
159
147
getDefaultProguardFile(" proguard-android.txt" ),
160
148
" proguard-rules.pro"
161
149
)
162
- signingConfig = signingConfigs.getByName(" default " )
150
+ signingConfig = signingConfigs.getByName(" debug " )
163
151
resValue(" string" , " app_name" , " DNSNet Benchmark" )
164
152
}
165
153
}
You can’t perform that action at this time.
0 commit comments