Steps to sign, update and publish your application in Google Play Store, Api 30 Android 11
Thanks to these wonderful tutorials I was able to sign android.keystore,
Apk transform to ABB, sign ABB with our android.keystore
awarded by kodular
thanks to those who made it possible
Method solved by
Author SimpleDimple
Tutorial
Edit or Modify the AAB file - change API 29 to 30 android 11
How to add asset and sign aab file
Method solved by
Author PuntoTomer Shami
Tutorial
Tutorial for signing an aab file
Sign android.keystore
Path to sign our application
Route to sign new version of our application
java -jar C:\ --keystore=C:\ --alias=androidkey --output=C:\ --include-cert --encryptionkey=
Path to update the signature of our application
java -jar C:\ --keystore=C:\ --alias=androidkey --output=C:\ --encryptionkey=
How to get it --encryptionkey =
Select this option
“Exporting and uploading a key from a Java keystore”
1 instale OpenJDK11U-jdk_x64_windows_hotspot_11.0.12_7
2 Download Pepk.jar from the Google Play Store console
3 Download android.keystore from the kodular console
Path Pepk.jar
java -jar C:\Users\Belsoft\pepk.jar --keystore=C:\Users\Belsoft\android.keystore --alias=androidkey --output=C:\Users\Belsoft\FirmaApp\Apptutorial.zip --include-cert --encryptionkey=
We add to our Google Play console the signature generated in this path C:\Users\ Belsoft\FirmaApp\ Apptutorial.zip
° C:\Users\ Belsoft\FirmaApp\ are folders selected through Powershell or CMD
° I suggest you install java in the default path
° java -jar C:\Users\Belsoft\pepk.jar
is the path where the pepk.jar file that we download in the Google play console is hosted or here
Download Pepk.jar from the Google Play Store console
Edit AndroidManifest API 29 to API 30 transform Apk into AAB
If I already install java, it is not necessary to do it again
Tools
° install required python3.6 +
(“CMD o Powershell”)
pip install -r requirements.txt
° edit apk
APK Editor Studio
Author
simple125345
APK_TO_AAB download
APK_TO_AAB
*python run.py -i test.apk -o test.aab
*python run.py -h // show this help message and exit
inserter, to Powershell or Cmd
git clone https://github.com/simple125345/APK_TO_AAB
To check java and python is installed or not
type these command
python --version
java -version
Path APK_TO_AAB
C:\Users\Belsoft\APK_TO_AAB>python run.py -i C:\Users\Belsoft\APK_TO_AAB\LogInTutorial.apk -o C:\Users\Belsoft\APK_TO_AAB\o\LogInTutorial.aab
Sign ABB exported by APK_TO_AAB
This step is explained in the video
Download AABSigner
Tips and possible faults
Write error in Powershell or CMD terminal file paths
[BT: 1.6.1] Error: The file ‘temp_20210901174513\modules\base.zip’ was not found.
Check the bar symbols that do not contain spaces you are typing the path of
temp_20210901174513\modules\base.zip “Right”
temp_20210901174513 \ modules \ base.zip “incorrect”
wrong Try this path
C:\Users\Belsoft\APK_TO_AAB>python run.py -i C:\Users\Belsoft\APK_TO_AAB\LogInTutorial.apk
–o C:\Users\Belsoft\APK_TO_AAB\o\LogInTutorial.aab
Remember when writing a path in the CMD terminal you have to respect the blank spaces,
commas and writing symbols
This solution applies to both when writing a Java or Python terminal, it is a very common error that can discourage you or think that your Java or Python console is broken.