mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05:06 -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
.gitignore
vendored
3
.gitignore
vendored
|
@ -12,4 +12,5 @@ node_modules
|
|||
*.zip
|
||||
app/release/
|
||||
.parcel-cache/
|
||||
dist
|
||||
dist
|
||||
keystore.properties
|
|
@ -15,8 +15,14 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
|
|||
|
||||
# Changelog
|
||||
|
||||
## next goals
|
||||
## Todo
|
||||
|
||||
- build an apk every time
|
||||
- ./gradlew tasks
|
||||
|
||||
## Next release
|
||||
|
||||
- simple game data migration system
|
||||
- high score issues
|
||||
|
||||
## 29059721.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
4
keystore.properties.example
Normal file
4
keystore.properties.example
Normal file
|
@ -0,0 +1,4 @@
|
|||
storePassword=myStorePassword
|
||||
keyPassword=mykeyPassword
|
||||
keyAlias=myKeyAlias
|
||||
storeFile=myStoreFileLocation
|
Loading…
Add table
Add a link
Reference in a new issue