T TeraBite93 New Member Licensed User Jun 4, 2019 #1 Hello, I wanted to know if I could use the .jks I had made with Android Studio. I've tried with B4A but needs .keystore How can I solve it? Is there any possibility already having an app on the playstore?
Hello, I wanted to know if I could use the .jks I had made with Android Studio. I've tried with B4A but needs .keystore How can I solve it? Is there any possibility already having an app on the playstore?
Erel B4X founder Staff member Licensed User Longtime User Jun 4, 2019 #2 1. Make a copy of the keystore file. 2. Rename it to <file>.keystore and load it with Tools - Private Sign Key. 3. Set the alias with the SignKeyAlias in the main activity: B4X: #SignKeyAlias: YourAlias Two other relevant attributes: #SignKeyPassword and #SignKeyFile. Upvote 0
1. Make a copy of the keystore file. 2. Rename it to <file>.keystore and load it with Tools - Private Sign Key. 3. Set the alias with the SignKeyAlias in the main activity: B4X: #SignKeyAlias: YourAlias Two other relevant attributes: #SignKeyPassword and #SignKeyFile.
T TeraBite93 New Member Licensed User Jun 4, 2019 #3 i have this error " error: java.security.SignatureException: private key algorithm is not compatible with signature algorithm " my code is: #SignKeyAlias: Alias ( Name file ) #SignKeyFile:C:\Users\****\Desktop\nameapp.keystore #SignKeyPassword: password Upvote 0
i have this error " error: java.security.SignatureException: private key algorithm is not compatible with signature algorithm " my code is: #SignKeyAlias: Alias ( Name file ) #SignKeyFile:C:\Users\****\Desktop\nameapp.keystore #SignKeyPassword: password
Erel B4X founder Staff member Licensed User Longtime User Jun 5, 2019 #4 In that case you will need to use a different approach. Develop your app with the debug key. When you are ready to distribute it, compile it with the command line tool and add -NoSign: https://www.b4x.com/android/forum/t...ilder-command-line-compilation.50154/#content You will then need to sign the APK yourself with jarsigner. You can create a simple bat file that will do all of this. Upvote 0
In that case you will need to use a different approach. Develop your app with the debug key. When you are ready to distribute it, compile it with the command line tool and add -NoSign: https://www.b4x.com/android/forum/t...ilder-command-line-compilation.50154/#content You will then need to sign the APK yourself with jarsigner. You can create a simple bat file that will do all of this.