Always define signingConfigs.release.
This commit is contained in:
committed by
Joshua Granick
parent
e6e7e5265a
commit
1ecb95598b
@@ -22,7 +22,7 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
::else::
|
::else::
|
||||||
File signingFile = file('signing.properties');
|
File signingFile = file('signing.properties')
|
||||||
if(signingFile.exists()) {
|
if(signingFile.exists()) {
|
||||||
Properties signing = new Properties()
|
Properties signing = new Properties()
|
||||||
signing.load(new FileInputStream(signingFile))
|
signing.load(new FileInputStream(signingFile))
|
||||||
@@ -35,6 +35,10 @@ android {
|
|||||||
keyPassword signing["KEY_STORE_ALIAS_PASSWORD"]
|
keyPassword signing["KEY_STORE_ALIAS_PASSWORD"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
signingConfigs {
|
||||||
|
release
|
||||||
|
}
|
||||||
}
|
}
|
||||||
::end::
|
::end::
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user