Android Question after update to b4a 13.3 : key algorithm not compatible with signature algorithm

kohle

Active Member
Licensed User
Longtime User
Iget this message when I create the app bundle : key algorithm not compatible with signature algorithm
What do I miss ?

B4A 13.30
C:\java\jdk-19.0.2\bin\javac.exe
C:\android\platforms\android-34\android.jar

Manifest:
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34"/>
 

teddybear

Well-Known Member
Licensed User
Explicitly set the SignKeyAlgorithm
B4X:
 #SignKeyAlgorithm: -digestalg SHA1 -sigalg SHA384withRSA
 
Upvote 0
Top