Is there a secure way to upload AAB file without sharing keystore on Indus Appstore?


I am generating an AAB android app bundle for all the app versions. In order to upload it on the indus appstore they require a keystore file and password.

Generating an apk file is one of the options but don’t want to degrade the user experience by forcing them to download a larger file size. Is there any way I can upload the latest version on indus appstore without impacting the user download size?

1
Feb 27 at 4:13 PM
User AvatarAishwarya
#android#web-applications

Accepted Answer

Indus app store supports upload APK, AAB or APKS. If you don't want to share the signing key with Indus you have to sign the APK file(s) locally, thus APK or APKS format have to be used. If you want tom minimize the installation size APKS would be the preferred format as it contains the signed split APK files. The store then provides only the necessary split APK files to the users.

User AvatarRobert
Mar 1 at 10:56 AM
0