refactor(amended release signing options)

Co-authored-by: Sebastian Palmqvist <PalmN72@users.noreply.github.com>
This commit is contained in:
Lee 2023-10-26 15:11:02 +02:00
parent 71ef6af5ac
commit b55fe52aef
2 changed files with 7 additions and 1 deletions

View File

@ -88,6 +88,12 @@ android {
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
storeFile file('release.keystore')
storePassword 'leeandseb'
keyAlias 'upload'
keyPassword 'leeandseb'
}
}
buildTypes {
debug {

View File

@ -37,7 +37,7 @@ platform :android do
# Dir.pwd when running through Fastlane is app/android/fastlane
releaseFilePath = File.join(Dir.pwd, '..', 'app', "my-upload-key.keystore")
releaseFilePath = File.join(Dir.pwd, '..', 'app', "release.keystore")
mappingFilePath = File.join(
Dir.pwd,
"..",