Wish SignKeyAlias attribute for project specfic keystore

stanmiller

Active Member
Licensed User
Longtime User
We use unique keystores for each customer. Today we can specify the key file and password in the project but still have to edit SignKeyAlias in b4xV5.ini when switching between projects.

The wish is for a SignKeyAlias attribute like this:

B4X:
' Customer keystore
#SignKeyAlias: hammonds
#SignKeyFile: ..\Keystore\hammonds.keystore
#SignKeyPassword: 94x8oe
 

DonManfred

Expert
Licensed User
Longtime User
For what do you need the Alias?

#SignKeyFile / SignKeyPassword attributes. Allow using a different signing key based on the build configuration.

you only need these two.

Maybe i just don´t get what you are trying to archieve
 

stanmiller

Active Member
Licensed User
Longtime User
The keystore attributes are unique for each customer including the alias. For some accounts, we include the project sources as a deliverable and like to keep all aspects unique to them.

B4X:
' Customer keystore
#SignKeyAlias: hammonds
#SignKeyFile: ..\Keystore\hammonds.keystore
#SignKeyPassword: 94x8oe

B4X:
' Customer keystore
#SignKeyAlias: siemens
#SignKeyFile: ..\Keystore\siemens.keystore
#SignKeyPassword: 409erhd

B4X:
' Customer keystore
#SignKeyAlias: nissan
#SignKeyFile: ..\Keystore\nissan.keystore
#SignKeyPassword: gtrx930
 
Top