mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2025-02-17 04:00:48 +01:00
fixing ci errors
This commit is contained in:
parent
8abc3304d4
commit
abdb3552d0
@ -55,9 +55,12 @@ subprojects {
|
||||
|
||||
if (android.hasProperty('buildTypes') && project.plugins.hasPlugin('com.android.application')) {
|
||||
android.buildTypes.each { buildType ->
|
||||
def cfg = signingConfigs.maybeCreate(buildType.name)
|
||||
loadSigningConfig(cfg, rootProject.file('signing.properties'))
|
||||
buildType.signingConfig = cfg
|
||||
File file = rootProject.file('signing.properties')
|
||||
if (file.exists()) {
|
||||
DefaultSigningConfig cfg = signingConfigs.maybeCreate(buildType.name)
|
||||
loadSigningConfig(cfg, file)
|
||||
buildType.signingConfig = cfg
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user