Wish [SOLVED] IDE Save PrivateSignKey - Settings

Air

Member
Licensed User
Longtime User
Is it possible to integrate a Function in the B4A IDE, that saves the keyfile(path to keyfile) and the password from the current project?

I have many different Projects and every one has its own keyfile / password.

If i switch from one to another project, i allways have to load the keyfile and set the password.
 

DonManfred

Expert
Licensed User
Longtime User
Already possible (not with a setting in the ide but using different keystores.)

B4X:
#If BuildForCustomer
#SignKeyFile: abcd.keystore
#SignKeyPassword: 1234
#Else
#SignKeyFile: abc.keystore
#SignKeyPassword: 123
#End If
 

Air

Member
Licensed User
Longtime User
Wow, thx

Must the keyfile be in the project folder, or can I use a parent folder?

I have these folder structures
D: \ B4A_APPS \ Project_one

The Keyfile is saved in Project_One
In Project_One are subfolders for each version of Project_one

D: \ B4A_APPS \ Project_one \ v_0.01
D: \ B4A_APPS \ Project_one \ v_0.02
 

Air

Member
Licensed User
Longtime User
A minute ago i found it

Anyway... Big Thx for your Help.
 
Top