mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-26 15:06:16 -04:00
Trying to sign apks directly
This commit is contained in:
parent
b46f745310
commit
c86031f4c0
4 changed files with 25 additions and 2 deletions
|
@ -3,7 +3,19 @@ plugins {
|
|||
alias(libs.plugins.jetbrainsKotlinAndroid)
|
||||
}
|
||||
|
||||
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||
def keystoreProperties = new Properties()
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
|
||||
android {
|
||||
signingConfigs {
|
||||
config {
|
||||
keyAlias keystoreProperties['keyAlias']
|
||||
keyPassword keystoreProperties['keyPassword']
|
||||
storeFile file(keystoreProperties['storeFile'])
|
||||
storePassword keystoreProperties['storePassword']
|
||||
}
|
||||
}
|
||||
namespace = "me.lecaro.breakout"
|
||||
compileSdk = 34
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue