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
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@ node_modules
|
||||||
app/release/
|
app/release/
|
||||||
.parcel-cache/
|
.parcel-cache/
|
||||||
dist
|
dist
|
||||||
|
keystore.properties
|
|
@ -15,8 +15,14 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## next goals
|
## Todo
|
||||||
|
|
||||||
|
- build an apk every time
|
||||||
|
- ./gradlew tasks
|
||||||
|
|
||||||
|
## Next release
|
||||||
|
|
||||||
|
- simple game data migration system
|
||||||
- high score issues
|
- high score issues
|
||||||
|
|
||||||
## 29059721.
|
## 29059721.
|
||||||
|
|
|
@ -3,7 +3,19 @@ plugins {
|
||||||
alias(libs.plugins.jetbrainsKotlinAndroid)
|
alias(libs.plugins.jetbrainsKotlinAndroid)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||||
|
def keystoreProperties = new Properties()
|
||||||
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
signingConfigs {
|
||||||
|
config {
|
||||||
|
keyAlias keystoreProperties['keyAlias']
|
||||||
|
keyPassword keystoreProperties['keyPassword']
|
||||||
|
storeFile file(keystoreProperties['storeFile'])
|
||||||
|
storePassword keystoreProperties['storePassword']
|
||||||
|
}
|
||||||
|
}
|
||||||
namespace = "me.lecaro.breakout"
|
namespace = "me.lecaro.breakout"
|
||||||
compileSdk = 34
|
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